]> gitweb.hamatoma.de Git - snakeboxx.git/commitdiff
Initial commit main
authorHamatoma <author@hamatoma.de>
Mon, 19 Feb 2024 21:15:47 +0000 (22:15 +0100)
committerHamatoma <author@hamatoma.de>
Mon, 19 Feb 2024 21:15:47 +0000 (22:15 +0100)
87 files changed:
INSTALL.md [new file with mode: 0644]
LICENSE [new file with mode: 0644]
PyLint [new file with mode: 0755]
README.md [new file with mode: 0644]
app/BaseApp.py [new file with mode: 0644]
app/DbApp.py [new file with mode: 0755]
app/DirApp.py [new file with mode: 0755]
app/EMailApp.py [new file with mode: 0755]
app/OperatingSystemApp.py [new file with mode: 0755]
app/SatelliteApp.py [new file with mode: 0755]
app/SpecialApp.py [new file with mode: 0755]
app/SunMonitor.py [new file with mode: 0644]
app/TextApp.py [new file with mode: 0755]
app/__init__.py [new file with mode: 0644]
base/BaseLogger.py [new file with mode: 0644]
base/BaseRandom.py [new file with mode: 0644]
base/Const.py [new file with mode: 0644]
base/CryptoEngine.py [new file with mode: 0644]
base/CsvProcessor.py [new file with mode: 0644]
base/DirTraverser.py [new file with mode: 0644]
base/FileHelper.py [new file with mode: 0644]
base/JavaConfig.py [new file with mode: 0644]
base/JobController.py [new file with mode: 0644]
base/LinuxUtils.py [new file with mode: 0644]
base/Logger.py [new file with mode: 0644]
base/MemoryLogger.py [new file with mode: 0644]
base/PortableRandom.py [new file with mode: 0644]
base/ProcessHelper.py [new file with mode: 0644]
base/Scheduler.py [new file with mode: 0644]
base/SearchRule.py [new file with mode: 0644]
base/SearchRuleList.py [new file with mode: 0644]
base/StringUtils.py [new file with mode: 0644]
base/TextProcessor.py [new file with mode: 0644]
base/UsageInfo.py [new file with mode: 0644]
base/__init__.py [new file with mode: 0644]
data/.gitignore [new file with mode: 0644]
data/config/pylint3.conf [new file with mode: 0644]
data/private.template.conf [new file with mode: 0644]
db/DbDriver.py [new file with mode: 0644]
db/MySqlDriver.py [new file with mode: 0644]
db/PgDriver.py [new file with mode: 0644]
net/EMail.py [new file with mode: 0644]
net/HttpClient.py [new file with mode: 0644]
net/RestServer.py [new file with mode: 0644]
net/SimpleRestServer.py [new file with mode: 0644]
net/__init__.py [new file with mode: 0644]
snake_install.sh [new file with mode: 0755]
tools/PrepUTest.sh [new file with mode: 0755]
unittest/UnitTestCase.py [new file with mode: 0644]
unittest/UnitTestSuite.py [new file with mode: 0644]
unittest/__init__.py [new file with mode: 0644]
unittest/app/DbAppTest.py [new file with mode: 0644]
unittest/app/DirAppTest.py [new file with mode: 0644]
unittest/app/EMailAppTest.py [new file with mode: 0644]
unittest/app/OperatingsSystemAppTest.py [new file with mode: 0644]
unittest/app/SatelliteAppTest.py [new file with mode: 0644]
unittest/app/TextAppTest.py [new file with mode: 0644]
unittest/base/BaseRandomTest.py [new file with mode: 0644]
unittest/base/CryptoEngineTest.py [new file with mode: 0644]
unittest/base/CsvProcessorTest.py [new file with mode: 0644]
unittest/base/DirTraverserTest.py [new file with mode: 0644]
unittest/base/FileHelperTest.py [new file with mode: 0644]
unittest/base/JavaConfigTest.py [new file with mode: 0644]
unittest/base/JobControllerTest.py [new file with mode: 0644]
unittest/base/LinuxUtilsTest.py [new file with mode: 0644]
unittest/base/LoggerTest.py [new file with mode: 0644]
unittest/base/MemoryLoggerTest.py [new file with mode: 0644]
unittest/base/PortableRandomTest.py [new file with mode: 0644]
unittest/base/ProcessHelperTest.py [new file with mode: 0644]
unittest/base/SchedulerTest.py [new file with mode: 0644]
unittest/base/StringUtilsTest.py [new file with mode: 0644]
unittest/base/TextProcessorTest.py [new file with mode: 0644]
unittest/base/UsageInfoTest.py [new file with mode: 0644]
unittest/data/etc.tgz [new file with mode: 0644]
unittest/data/etc.work.tgz [new file with mode: 0644]
unittest/data/example.html [new file with mode: 0644]
unittest/data/example.sh [new file with mode: 0644]
unittest/data/example.tar [new file with mode: 0644]
unittest/data/example.tbz [new file with mode: 0644]
unittest/data/example.tgz [new file with mode: 0644]
unittest/data/example.txt [new file with mode: 0644]
unittest/data/example.zip [new file with mode: 0644]
unittest/data/examples2.tgz [new file with mode: 0644]
unittest/data/monitor/localhost.dump.txt [new file with mode: 0644]
unittest/net/EMailTest.py [new file with mode: 0644]
unittest/net/HttpClientTest.py [new file with mode: 0644]
wirnoi.sql [new file with mode: 0644]

diff --git a/INSTALL.md b/INSTALL.md
new file mode 100644 (file)
index 0000000..e24b3d3
--- /dev/null
@@ -0,0 +1,27 @@
+# Creation of a Script for Cloning and Update
+
+Be root and copy the following text into a terminal. This will create the script SnakeBoxx which inititializes and/or updates the package.
+~~~
+FN=/usr/local/bin/SnakeBoxx
+cat <<'EOS' >$FN
+URL=https://github.com/hamatoma/snakeboxx.git
+BASE=/usr/share
+if [ $(id -u) != 0 ]; then
+  echo "be root!"
+else
+  cd $BASE
+  if [ -d snakeboxx ]; then
+    cd snakeboxx
+    git pull $URL
+  else
+    git clone $URL
+    cd snakeboxx
+    bash snake_install.sh DirApp
+    bash snake_install.sh TextApp
+    bash snake_install.sh OperatingSystemApp
+  fi
+fi
+EOS
+chmod uog+rwx $FN
+$FN
+~~~
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644 (file)
index 0000000..0e259d4
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,121 @@
+Creative Commons Legal Code
+
+CC0 1.0 Universal
+
+    CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
+    LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
+    ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
+    INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
+    REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
+    PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
+    THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
+    HEREUNDER.
+
+Statement of Purpose
+
+The laws of most jurisdictions throughout the world automatically confer
+exclusive Copyright and Related Rights (defined below) upon the creator
+and subsequent owner(s) (each and all, an "owner") of an original work of
+authorship and/or a database (each, a "Work").
+
+Certain owners wish to permanently relinquish those rights to a Work for
+the purpose of contributing to a commons of creative, cultural and
+scientific works ("Commons") that the public can reliably and without fear
+of later claims of infringement build upon, modify, incorporate in other
+works, reuse and redistribute as freely as possible in any form whatsoever
+and for any purposes, including without limitation commercial purposes.
+These owners may contribute to the Commons to promote the ideal of a free
+culture and the further production of creative, cultural and scientific
+works, or to gain reputation or greater distribution for their Work in
+part through the use and efforts of others.
+
+For these and/or other purposes and motivations, and without any
+expectation of additional consideration or compensation, the person
+associating CC0 with a Work (the "Affirmer"), to the extent that he or she
+is an owner of Copyright and Related Rights in the Work, voluntarily
+elects to apply CC0 to the Work and publicly distribute the Work under its
+terms, with knowledge of his or her Copyright and Related Rights in the
+Work and the meaning and intended legal effect of CC0 on those rights.
+
+1. Copyright and Related Rights. A Work made available under CC0 may be
+protected by copyright and related or neighboring rights ("Copyright and
+Related Rights"). Copyright and Related Rights include, but are not
+limited to, the following:
+
+  i. the right to reproduce, adapt, distribute, perform, display,
+     communicate, and translate a Work;
+ ii. moral rights retained by the original author(s) and/or performer(s);
+iii. publicity and privacy rights pertaining to a person's image or
+     likeness depicted in a Work;
+ iv. rights protecting against unfair competition in regards to a Work,
+     subject to the limitations in paragraph 4(a), below;
+  v. rights protecting the extraction, dissemination, use and reuse of data
+     in a Work;
+ vi. database rights (such as those arising under Directive 96/9/EC of the
+     European Parliament and of the Council of 11 March 1996 on the legal
+     protection of databases, and under any national implementation
+     thereof, including any amended or successor version of such
+     directive); and
+vii. other similar, equivalent or corresponding rights throughout the
+     world based on applicable law or treaty, and any national
+     implementations thereof.
+
+2. Waiver. To the greatest extent permitted by, but not in contravention
+of, applicable law, Affirmer hereby overtly, fully, permanently,
+irrevocably and unconditionally waives, abandons, and surrenders all of
+Affirmer's Copyright and Related Rights and associated claims and causes
+of action, whether now known or unknown (including existing as well as
+future claims and causes of action), in the Work (i) in all territories
+worldwide, (ii) for the maximum duration provided by applicable law or
+treaty (including future time extensions), (iii) in any current or future
+medium and for any number of copies, and (iv) for any purpose whatsoever,
+including without limitation commercial, advertising or promotional
+purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
+member of the public at large and to the detriment of Affirmer's heirs and
+successors, fully intending that such Waiver shall not be subject to
+revocation, rescission, cancellation, termination, or any other legal or
+equitable action to disrupt the quiet enjoyment of the Work by the public
+as contemplated by Affirmer's express Statement of Purpose.
+
+3. Public License Fallback. Should any part of the Waiver for any reason
+be judged legally invalid or ineffective under applicable law, then the
+Waiver shall be preserved to the maximum extent permitted taking into
+account Affirmer's express Statement of Purpose. In addition, to the
+extent the Waiver is so judged Affirmer hereby grants to each affected
+person a royalty-free, non transferable, non sublicensable, non exclusive,
+irrevocable and unconditional license to exercise Affirmer's Copyright and
+Related Rights in the Work (i) in all territories worldwide, (ii) for the
+maximum duration provided by applicable law or treaty (including future
+time extensions), (iii) in any current or future medium and for any number
+of copies, and (iv) for any purpose whatsoever, including without
+limitation commercial, advertising or promotional purposes (the
+"License"). The License shall be deemed effective as of the date CC0 was
+applied by Affirmer to the Work. Should any part of the License for any
+reason be judged legally invalid or ineffective under applicable law, such
+partial invalidity or ineffectiveness shall not invalidate the remainder
+of the License, and in such case Affirmer hereby affirms that he or she
+will not (i) exercise any of his or her remaining Copyright and Related
+Rights in the Work or (ii) assert any associated claims and causes of
+action with respect to the Work, in either case contrary to Affirmer's
+express Statement of Purpose.
+
+4. Limitations and Disclaimers.
+
+ a. No trademark or patent rights held by Affirmer are waived, abandoned,
+    surrendered, licensed or otherwise affected by this document.
+ b. Affirmer offers the Work as-is and makes no representations or
+    warranties of any kind concerning the Work, express, implied,
+    statutory or otherwise, including without limitation warranties of
+    title, merchantability, fitness for a particular purpose, non
+    infringement, or the absence of latent or other defects, accuracy, or
+    the present or absence of errors, whether or not discoverable, all to
+    the greatest extent permissible under applicable law.
+ c. Affirmer disclaims responsibility for clearing rights of other persons
+    that may apply to the Work or any use thereof, including without
+    limitation any person's Copyright and Related Rights in the Work.
+    Further, Affirmer disclaims responsibility for obtaining any necessary
+    consents, permissions or other rights required for any use of the
+    Work.
+ d. Affirmer understands and acknowledges that Creative Commons is not a
+    party to this document and has no duty or obligation with respect to
+    this CC0 or use of the Work.
diff --git a/PyLint b/PyLint
new file mode 100755 (executable)
index 0000000..a8f7b75
--- /dev/null
+++ b/PyLint
@@ -0,0 +1,2 @@
+#! /bin/bash
+pylint3 --rcfile=data/config/pylint3.conf app | less
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..31f083c
--- /dev/null
+++ b/README.md
@@ -0,0 +1,2 @@
+# snakeboxx
+A collection of useful Python modules and applications
diff --git a/app/BaseApp.py b/app/BaseApp.py
new file mode 100644 (file)
index 0000000..2c1bbad
--- /dev/null
@@ -0,0 +1,596 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import time
+import os.path
+import posix
+import pwd
+import tempfile
+import traceback
+
+import base.Const
+import base.Logger
+import base.StringUtils
+import base.FileHelper
+import base.UsageInfo
+import base.ProcessHelper
+
+VERSION = '2022.10.07.00'
+
+
+class BaseApp:
+    '''The base class of all applications.
+    '''
+    __appLatestInstance = None
+    __underTest = False
+
+    def __init__(self, mainClass, args, isService=False, progName=None):
+        '''Constructor.
+        @param mainClass the application name, e.g. dbtool
+        @param args: the program arguments
+        @param isService: True: the application offers a systemd service
+        @param progName: name of the binary None: built from the mainClass
+        '''
+        BaseApp.__appLatestInstance = self
+        self._mainClass = mainClass
+        self._appName = (
+            mainClass[0:-3] if mainClass.endswith('App') else mainClass).lower()
+        self._programName = self._appName + 'boxx' if progName is None else progName
+        self._args = args
+        self._logger = base.MemoryLogger.MemoryLogger(1)
+        base.FileHelper.setLogger(self._logger)
+        self._appBaseDirectory = '/usr/share/snakeboxx'
+        self._programArguments = []
+        self._programOptions = []
+        self._start = time.process_time()
+        self._startReal = time.time()
+        self._doExit = True
+        self._usageInfo = None
+        self._configDirectory = '/etc/snakeboxx'
+        self._mainMode = None
+        self._processHelper = None
+        self._resultText = None
+        self._resultLines = None
+        self._configuration = None
+        self._start = time.process_time()
+        self._startReal = time.time()
+        self._userId = posix.getuid()
+        self._isRoot = self._userId == 0
+        self._usageInfo = base.UsageInfo.UsageInfo(self._logger)
+        self._serviceName = None
+        self._isService = isService
+        self._baseTestDir = None
+        self._daemonSteps = 0x100000000 if not BaseApp.__underTest else 1
+        self._optionProcessor = None
+
+    def abort(self, message):
+        '''Displays a message and stops the programm.
+        @param message: the error message
+        '''
+        self._logger.error(message)
+        if self._doExit:
+            exit(1)
+
+    def argumentError(self, message):
+        '''Handles a severe error with program exit.
+        @param message: the error message
+        '''
+        print('Tip: try "{} help [pattern [pattern2]]"'.format(
+            self._programName))
+        self.abort(message)
+
+    def buildConfig(self):
+        '''Dummy method.
+        '''
+        base.StringUtils.avoidWarning(self)
+        raise Exception('BaseApp.buildConfig() is not overridden')
+
+    def buildStandardConfig(self, content):
+        '''Writes a useful configuration into the application specific configuration file.
+        @param content: the configuration content
+        '''
+        fn = f'{self._configDirectory}{os.sep}{self._appName}.conf'
+        if os.path.exists(fn):
+            fn = fn.replace('.conf', '.example')
+        self._logger.log('creating {} ...'.format(fn),
+                         base.Const.LEVEL_SUMMARY)
+        base.StringUtils.toFile(fn, content)
+
+    def buildUsage(self):
+        '''Builds the usage message.
+        '''
+        raise NotImplementedError('buildUsage() not implemented by sub class')
+
+    def buildUsageOptions(self, mode=None, subMode=None):
+        '''Adds the options for a given mode.
+        @param mode: None or the mode for witch the option is added
+        @param subMode: None or the submode for witch the option is added
+        '''
+        raise NotImplementedError(
+            'buildUsageOptions() not implemented by sub class')
+
+    def buildUsageCommon(self, isService=False):
+        '''Appends usage info common for all applications.
+        @param isService: True: the application is already used as service
+        '''
+        self._usageInfo.addMode(
+            'install', 'install\n Installs the application.', 'APP-NAME install')
+        self._usageInfo.addMode('uninstall',
+                                'uninstall [--service=<servicename>]\n Removes the application.',
+                                'APP-NAME uninstall --service=emailboxx')
+        self._usageInfo.addMode(
+            'build-config', 'build-config\n Creates a useful configuration file.', 'APP-NAME build-config')
+        self._usageInfo.addMode(
+            'version', 'version\n Prints the version number.', 'APP-NAME version')
+        if isService:
+            self._usageInfo.addMode(
+                'daemon', 'daemon <servicename>\n start the service daemon')
+            self._usageInfo.addMode(
+                'reload', 'reload <servicename>\n requests to reload configuration data')
+        self._usageInfo.addMode('help', r'''help [<pattern-mode> [<pattern-submode>]]
+ Prints a description of the application
+ <pattern-mode>
+  if given: each mode is listed if the pattern matches
+ <pattern-submode>:
+  if given: only submodes are listed if this pattern matches
+''', 'APP-NAME help\nAPP-NAME help help sub')
+
+    def checkGlobalOptions(self):
+        '''Checks the validity of the global options.
+        Can be overridden.
+        '''
+        pass
+    
+    def createPath(self, directory, node=None):
+        '''Returns a full name of a file or directory depending on normal or unittest environment.
+        In normal environment the result is [directory] or [directory]/[node].
+        If the the global parameter --dir-unittest exists: this option defines the base directory.
+        In this base directory will be created a subdirectory with the last node of the parameter directory.
+        For unit tests the result is taken from the global options (_testTargetDir)
+        @param directory: the original directory's name, e.g. '/etc/nginx'
+        @param node: None or the filename without path, e.g. 'nginx.conf'
+        @return: the directory name (node is None) or the filename (directory + os.sep + node)
+        '''
+        if self._baseTestDir is None:
+            rc = directory
+        else:
+            rc = self._baseTestDir + os.sep
+            rc += 'root' if directory == '/' else os.path.basename(directory)
+            base.FileHelper.ensureDirectory(rc)
+        if node is not None:
+            if rc.endswith(os.sep):
+                rc += node
+            else:
+                rc += os.sep + node
+        return rc
+
+    def createSystemDScript(self, serviceName, starter, user, group, description):
+        '''Creates the file controlling a systemd service.
+        @param serviceName: used for syslog and environment file
+        @param starter: name of the starter script without path, e.g. 'pymonitor'
+        @param user: the service is started with this user
+        @param group: the service is started with this group
+        @param description: this string is showed when the status is requestes.
+        '''
+        systemDPath = self.createPath('/etc/systemd/system', None)
+        systemdFile = f'{systemDPath}{os.sep}{serviceName}.service'
+        script = '''[Unit]
+Description={}.
+After=syslog.target
+[Service]
+Type=simple
+User={}
+Group={}
+WorkingDirectory=/etc/snakeboxx
+#EnvironmentFile=-/etc/snakeboxx/{}.env
+ExecStart=/usr/local/bin/{} daemon {} {}
+ExecReload=/usr/local/bin/{} reload {} {}
+SyslogIdentifier={}
+#StandardOutput=syslog
+#StandardError=syslog
+Restart=always
+RestartSec=3
+[Install]
+WantedBy=multi-user.target
+'''.format(description, user, group, serviceName, starter, serviceName, user, starter, serviceName, user, serviceName)
+        with open(systemdFile, 'w') as fp:
+            fp.write(script)
+        print('systemd script created: ' + systemdFile)
+        uid = None
+        try:
+            uid = pwd.getpwnam(user)
+            self._logger.log('user {} ({}) already exists'.format(
+                user, uid), base.Const.LEVEL_DETAIL)
+        except KeyError:
+            if self._isRoot:
+                self._logger.log('creating user {} ...'.format(
+                    user), base.Const.LEVEL_SUMMARY)
+                self._processHelper.execute(['/usr/sbin/useradd', user], True)
+
+    def defaultConfigurationFile(self):
+        '''Returns the name of the file for the configuration example.
+        '''
+        rc = f'{self._configDirectory}{os.sep}{self._appName}.conf'
+        if os.path.exists(rc):
+            rc = rc[0:-4] + 'example'
+        return rc
+
+    def daemon(self):
+        '''Waits for jobs and executes them
+        '''
+        serviceName = self._programArguments[0] if len(
+            self._programArguments) >= 1 else self._appName
+        self._logger.log('starting {} with version {}'.format(
+            serviceName, VERSION), base.Const.LEVEL_SUMMARY)
+        fileReloadRequest = self.reloadRequestFile(serviceName)
+        if self._daemonSteps is None:
+            self._daemonSteps = 0x7fffffffffff
+        while self._daemonSteps > 0:
+            self._daemonSteps -= 1
+            hasRequest = fileReloadRequest is not None and os.path.exists(
+                fileReloadRequest)
+            if hasRequest:
+                if not self.handleReloadRequest(fileReloadRequest):
+                    fileReloadRequest = None
+            self.daemonAction(hasRequest)
+            interval = self._configuration.getInt('daemon.interval', 3)
+            time.sleep(interval)
+
+    def daemonAction(self, reloadRequest):
+        '''Does the real thing in the daemon (= service).
+        @param reloadRequest: True: a reload request has been done
+        '''
+        base.StringUtils.avoidWarning(self)
+        base.StringUtils.avoidWarning(reloadRequest)
+        raise Exception('BaseApp.daemonAction() is not overridden')
+
+    def enableAndStartService(self, serviceName):
+        '''Enables (makeing "autostart") and starts a service given by name.
+        '''
+        if not self._isRoot:
+            self._logger.log(f'+ not root: ignoring enable and start service {serviceName}')
+        else:
+            self._processHelper.execute(['/bin/systemctl', 'enable', serviceName], True)
+            self._processHelper.execute(['/bin/systemctl', 'start', serviceName], True)
+            self._processHelper.execute(['/bin/systemctl', 'status', serviceName], True)
+
+    def getSubMode(self):
+        '''Returns the sub mode of the program: this is the first argument.
+        @returns: None: error occurred Otherwise: the submode
+        '''
+        rc = self.shiftProgramArgument()
+        if rc is None:
+            self.abort('missing <sub-mode>')
+        else:
+            self._usageInfo._activeMode = self._mainMode
+            self.buildUsage()
+            self._usageInfo._activeMode = None
+            info = self._usageInfo._nested[self._mainMode]
+            names = []
+            for item in info._descriptions:
+                if base.UsageInfo.UsageInfo.matches(rc, item):
+                    names.append(item)
+            if len(names) == 0:
+                self.abort(f'unknown <sub-mode>={rc} for <mode>={self._mainMode}')
+                rc = None
+            elif len(names) > 1:
+                self.abort(f'{rc} is ambigious: {" ".join(names)}')
+                rc = None
+            else:
+                rc = names[0]
+            self._usageInfo = base.UsageInfo.UsageInfo(self._logger)
+        return rc
+
+    def handleCommonModes(self):
+        '''Handles the modes common to all application like 'install'
+        @return: True: mode is a common mode and already handled
+        '''
+        rc = True
+        if self._mainMode is None:
+            self.help()
+        else:
+            if self._mainMode == 'install':
+                self.install()
+            elif self._mainMode == 'uninstall':
+                self.uninstall()
+            elif self._mainMode == 'build-config':
+                self.buildConfig()
+            elif self._mainMode == 'help':
+                self.help()
+            elif self._mainMode == 'reload':
+                self.requestReload()
+            elif self._mainMode == 'version':
+                print('version: ' + VERSION)
+            else:
+                rc = False
+        return rc
+
+    def handleReloadRequest(self, fileReloadRequest):
+        '''Handles a request for reloading configuration inside the daemon.
+        @param fileReloadRequest: the name of the file defining a request
+        @return: True: success False: the file could not be deleted/modified
+        '''
+        rc = True
+        try:
+            os.unlink(fileReloadRequest)
+        except OSError:
+            base.StringUtils.toFile(fileReloadRequest, 'found')
+        self._configuration.readConfig(self._configuration._filename)
+        if os.path.exists(fileReloadRequest) and os.path.getsize(fileReloadRequest) == 0:
+            self._logger.error(
+                'cannot delete/rewrite reload request file: ' + fileReloadRequest)
+            rc = False
+        return rc
+
+    def handleGlobalOptions(self):
+        '''Search for the global options and handles it.
+        Divides the rest of arguments into _programArguments and _programOptions
+        '''
+        mode = '<global-option>'
+        self._usageInfo.addMode(mode,
+                                r'''<global-options>: this options can be used for all modes and must positioned in front of the mode.
+''', '')
+        option = base.UsageInfo.Option('config-directory', 'c', 'the directory containing the configuration file',
+                                       'string', self._configDirectory)
+        self._usageInfo.addModeOption(mode, option)
+        option = base.UsageInfo.Option('runtime', 'r', 'the runtime will be displayed at the end of the program',
+                                       'bool')
+        self._usageInfo.addModeOption(mode, option)
+        option = base.UsageInfo.Option(
+            'dir-unittest', None, 'a directory used for unit tests')
+        self._usageInfo.addModeOption(mode, option)
+        option = base.UsageInfo.Option(
+            'log-file', None, 'the file for logging messages. If empty the MemoryLogger will be used', mayBeEmpty=True)
+        self._usageInfo.addModeOption(mode, option)
+        option = base.UsageInfo.Option('verbose-level', 'v', 'sets the amount of logs: only log messages with a level <= <level> will be displayed',
+                                       'int', base.Const.LEVEL_SUMMARY)
+        self._usageInfo.addModeOption(mode, option)
+        opts = []
+        while self._args and self._args[0].startswith('-'):
+            opts.append(self._args[0])
+            self._args = self._args[1:]
+        optionProcessor = self._usageInfo.currentOptionProcessor(mode)
+        if not optionProcessor.scan(opts):
+            self.abort('error on global options')
+        else:
+            self._configDirectory = optionProcessor.valueOf('config-directory')
+            self._baseTestDir = optionProcessor.valueOf('dir-unittest')
+            if self._args:
+                self._mainMode = self._args[0]
+                self._args = self._args[1:]
+            for arg in self._args:
+                if arg.startswith('-'):
+                    self._programOptions.append(arg)
+                else:
+                    self._programArguments.append(arg)
+            # === configuration
+            fn = None
+            if self._mainMode not in ['install', 'uninstall', 'help']:
+                fn = f'{self._configDirectory}{os.sep}{self._appName}.conf'
+                if not os.path.exists(fn):
+                    self.buildConfig()
+                if not os.path.exists(fn):
+                    fn = None
+            self._configuration = base.JavaConfig.JavaConfig(fn, self._logger)
+            # === logger
+            logFile = optionProcessor.valueOf('log-file')
+            if (self._appName == '!unittest' or self.__underTest) and logFile is not None:
+                self._logger._verboseLevel = base.Const.LEVEL_FINE
+            else:
+                if logFile is None:
+                    logFile = self._configuration.getString('logfile')
+                if logFile is None:
+                    logFile = f'/var/log/local/{self._programName}.log'
+                # '' or '-' means memory logger
+                if logFile != '' or logFile == '-':
+                    oldLogger = self._logger
+                    self._logger = base.Logger.Logger(
+                        logFile, optionProcessor.valueOf('verbose-level'))
+                    oldLogger.derive(self._logger)
+            base.FileHelper.setLogger(self._logger)
+            base.StringUtils.setLogger(self._logger)
+            self._processHelper = base.ProcessHelper.ProcessHelper(
+                self._logger)
+            if not optionProcessor.valueOf('runtime'):
+                self._start = None
+
+    def handleOptions(self, subMode=None):
+        '''Compares the current options with the specified options.
+        @return: True: success
+        '''
+        self.buildUsageOptions(None, subMode)
+        self._optionProcessor = processor = self._usageInfo.currentOptionProcessor(
+            self._mainMode, subMode)
+        rc = processor.scan(self._programOptions)
+        self.checkGlobalOptions()
+        return rc
+
+    def help(self):
+        '''Prints the usage message.
+        '''
+        self.buildUsageCommon(self._isService)
+        self.buildUsage()
+        for mode in self._usageInfo._descriptions:
+            self.buildUsageOptions(mode)
+            self._usageInfo.extendUsageInfoWithOptions(mode)
+        self._usageInfo.replaceMacro('APP-NAME', self._programName)
+        pattern = '' if not self._programArguments else self._programArguments[0]
+        pattern2 = '' if len(
+            self._programArguments) < 2 else self._programArguments[1]
+        info = self._usageInfo.asString(pattern, 0, pattern2)
+        self._resultText = info
+        print(info)
+
+    def install(self):
+        '''Installs the program.
+        '''
+        if not self._isRoot and not self.__underTest:
+            self.argumentError('be root!')
+        else:
+            configDir = self._configDirectory
+            base.FileHelper.ensureDirectory(configDir)
+            self.buildConfig()
+            app = self.createPath('/usr/local/bin', self._programName)
+            source = f'{self._appBaseDirectory}{os.sep}app{os.sep}{self._mainClass}.py'
+            if os.path.exists(app):
+                base.FileHelper.ensureFileDoesNotExist(app)
+            self._logger.log(
+                f'creating starter {app} -> {source}', base.Const.LEVEL_SUMMARY)
+            os.symlink(source, app)
+            fn = '/usr/lib/python3/dist-packages/snakeboxx.py'
+            if not os.path.exists(fn):
+                self._logger.log('creating {} ...'.format(fn))
+                base.StringUtils.toFile(fn, """'''Prepare for usage of snakeboxx modules.
+'''
+import sys
+
+if '/usr/share/snakeboxx' not in sys.path:
+    sys.path.insert(0, '/usr/share/snakeboxx')
+
+def startApplication():
+    '''Starts the application.
+    In this version: do nothing
+    '''
+""")
+
+    @staticmethod
+    def isUnderTest():
+        '''Returns wether the application runs as unittest.
+        @return: True: application is under test
+        '''
+        return BaseApp.__underTest
+
+    def installAsService(self, service, startAtOnce=False):
+        '''Enables the service and start it (if wanted):
+        @param service: name of the service
+        @param startAtOnce: True: the service will be started False: do not start the service
+        '''
+        if self._isRoot:
+            self._processHelper.execute(
+                ['/usr/bin/systemctl', 'enable', service], True)
+            if startAtOnce:
+                self._processHelper.execute(
+                    ['/usr/bin/systemctl', 'start', service], True)
+                self._processHelper.execute(
+                    ['/usr/bin/systemctl', 'status', service], True)
+            else:
+                print(
+                    'please inspect the configuration and then execute "/usr/bin/systemctl start {}"'.format(service))
+
+    @staticmethod
+    def lastInstance():
+        '''Returns the last instantiated instance of BaseApp.
+        @returns: the last instantiated instance of BaseApp
+        '''
+        return BaseApp.__appLatestInstance
+
+    def main(self):
+        '''The main function: handles the complete application process.
+        '''
+        try:
+            self.handleGlobalOptions()
+            if not self.handleCommonModes():
+                if self._mainMode is None:
+                    self.help()
+                else:
+                    # Marks that onyl modes will be assembled
+                    self._usageInfo._modeNames = []
+                    self.buildUsage()
+                    self._mainMode = self._usageInfo.findMode(self._mainMode)
+                    self._usageInfo = base.UsageInfo.UsageInfo(self._logger)
+                    self.run()
+            if self._start is not None:
+                real = base.StringUtils.secondsToString(
+                    int(time.time() - self._startReal))
+                cpu = base.StringUtils.secondsToString(
+                    int(time.process_time() - self._start))
+                self._logger.log(
+                    'runtime (real/process): {}/{}'.format(real, cpu), base.Const.LEVEL_SUMMARY)
+        except Exception as exc:
+            self._logger.error(f'{type(exc)}: {exc}')
+            traceback.print_exc()
+
+    def reloadRequestFile(self, serviceName):
+        '''Return the name of the file for request a reload.
+        @param serviceName: name of the service
+        @return the filename
+        '''
+        base.StringUtils.avoidWarning(self)
+        rc = '{}/{}/reload.request'.format(tempfile.gettempdir(), serviceName)
+        return rc
+
+    def requestReload(self):
+        '''Requests a reading of the configuration data.
+        '''
+        service = self.shiftProgramArgument(self._programName)
+        fn = self.reloadRequestFile(service)
+        base.FileHelper.ensureDirectory(os.path.dirname(fn), 0o777)
+        self._logger.log('reload requested', base.Const.LEVEL_SUMMARY)
+        base.StringUtils.toFile(fn, '')
+        os.chmod(fn, 0o666)
+        if not self._isRoot:
+            count = 10 if not self.__underTest else 1
+            self._logger.log(
+                f'waiting for answer (max {count} sec)', base.Const.LEVEL_SUMMARY)
+            for ix in range(count):
+                if not os.path.exists(fn):
+                    self._logger.log(f'{ix+1}: request not processed',
+                                     base.Const.LEVEL_SUMMARY)
+                    break
+                time.sleep(1)
+            if ix <= 0:
+                self._logger.error('reload request was not processed')
+            base.FileHelper.ensureFileDoesNotExist(fn)
+
+    def run(self):
+        '''Starts the application specific work.
+        Note: must be overwritten by the sub class.
+        '''
+        raise NotImplementedError('BaseApp.run() is not overridden')
+
+    @staticmethod
+    def setUnderTest(status=True):
+        ''' Marks the application to run under a unittest.
+        @param status: True: set test status False: release test status
+        '''
+        BaseApp.__underTest = status
+
+    def shiftProgramArgument(self, defaultValue=None):
+        '''Returns the next program argument.
+        @param defaultValue: the return value if no program argument is available
+        @return None: no more arguments otherwise: the next program argument which is already removed from _programArguments
+        '''
+        rc = defaultValue
+        if self._programArguments:
+            rc = self._programArguments[0]
+            del self._programArguments[0]
+        return rc
+
+    def uninstall(self):
+        '''Uninstalls the program.
+        '''
+        if not self._isRoot and not self.__underTest:
+            self.argumentError('be root!')
+        else:
+            app = self.createPath('/usr/local/bin', self._programName)
+            if os.path.exists(app):
+                self._logger.log(
+                    f'removing starter {app} ...', base.Const.LEVEL_SUMMARY)
+                base.FileHelper.ensureFileDoesNotExist(app)
+            if self._programOptions and self._programOptions[0].startswith('--service='):
+                serviceName = self._programOptions[0][10:]
+                serviceFile = self.createPath(
+                    '/etc/systemctl/system', f'{serviceName}.service')
+                if os.path.exists(serviceFile):
+                    self._logger.log('removing service file {} ...'.format(
+                        serviceFile), base.Const.LEVEL_SUMMARY)
+                    os.unlink(serviceFile)
+                else:
+                    self._logger.log('not found: ' + serviceFile,
+                                     base.Const.LEVEL_SUMMARY)
+
+    def unknownMode(self):
+        '''Handles the error "unknown mode".
+        '''
diff --git a/app/DbApp.py b/app/DbApp.py
new file mode 100755 (executable)
index 0000000..7f858e5
--- /dev/null
@@ -0,0 +1,611 @@
+#! /usr/bin/python3
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import sys
+import os.path
+import datetime
+# see snake_install.sh
+import snakeboxx
+
+import base.UsageInfo
+import app.BaseApp
+from db.MySqlDriver import MySqlDriver
+from db.PgDriver import PgDriver
+from db.DbDriver import DbDriver
+from typing import List
+
+
+class DbApp(app.BaseApp.BaseApp):
+    '''Performs some tasks with mysql databases: creation, import, export...
+    '''
+
+    def __init__(self, args: list[str]):
+        '''Constructor.
+        @param args: the program arguments, e.g. ['test', 'a@bc.de']
+        '''
+        app.BaseApp.BaseApp.__init__(self, 'DbApp', args, None, 'dbboxx')
+        self._processTool = base.ProcessHelper.ProcessHelper(self._logger)
+        self._driverName = 'mysql'
+
+    def _getDriver(self) -> DbDriver:
+        '''Returns the driver given by the global option "driver".
+        '''
+        name = self._driverName;
+        if name == 'postgresql':
+            rc = PgDriver(self)
+        else:
+            rc = MySqlDriver(self)
+        return rc
+
+    def _getFileNameWebappConfig(self, domain: str) -> str:
+        '''Returns the name of the web application configuration file.
+        @param domain the domain of the application
+        @return the filename
+        '''
+        fnConfig = self.createPath(f'/etc/snakeboxx/webapps.d', domain)
+        return fnConfig
+
+    def _getWebAppConfiguration(self, domain: str) -> base.JavaConfig.JavaConfig:
+        '''Returns the configuration of a web application as a JavaConfig instance.
+        @param domain the domain of the application
+        @return: the JavaConfig instance
+        '''
+        fn = self._getFileNameWebappConfig(domain)
+        rc = base.JavaConfig.JavaConfig(fn, self._logger)
+        return rc
+
+    def allDbs(self):
+        '''Lists the databases.
+        '''
+        if self.handleOptions():
+            driver = self._getDriver()
+            rc = self._resultLines = driver.allDbs()
+            print('\n'.join(rc))
+
+    def buildConfig(self):
+        '''Creates an useful configuration example.
+        '''
+        content = '''# created by DbApp
+logfile=/var/log/local/dbboxx.log
+mysql.host=localhost
+mysql.port=3306
+mysql.admin.user=dbadm
+mysql.admin.code=TopSecret
+postgresql.host=localhost
+postgresql.port=5432
+postgresql.admin.user=dbadm
+postgresql.admin.code=TopSecret
+postgresql.os.user=postgres
+webapp.base=/srv/www
+'''
+        self.buildStandardConfig(content)
+
+    def buildArgvMysql(self, command: str, needsAdmin=False):
+        '''Builds an argument vector for a mysql relevant command (mysql or mysqldump...).
+        @param command: 'mysql' or 'mysqldump'
+        @param needsAdmin: True: the operation needs administrator rights
+        '''
+        rc = None
+        user = self._optionProcessor.valueOf(
+            'adm-name' if needsAdmin else 'user-name')
+        if user is not None:
+            code = self._optionProcessor.valueOf(
+                'adm-password' if needsAdmin else 'user-password')
+        else:
+            user = self._configuration.getString('mysql.admin.user')
+            code = self._configuration.getString('mysql.admin.code')
+        if user is None:
+            self.abort('missing user (option or configuration file)')
+        elif code is None:
+            self.abort('missing password (option or configuration file)')
+        else:
+            rc = [command]
+            rc.append(f'-u{user}')
+            if code != '':
+                rc.append(f'-p{code}')
+        return rc
+
+    def buildUsage(self):
+        '''Builds the usage message.
+        '''
+        self._usageInfo.appendDescription('''APP-NAME <global-opts> <mode> [<options>]
+ Info and manipulation of mysql databases.
+''')
+        self._usageInfo.addMode('all-dbs', '''all-dbs <opts>
+ Lists all databases.
+ ''', '''APP-NAME all-dbs
+APP-NAME all-dbs --admin=jonny --adm-password=ForgetNever
+''')
+        self._usageInfo.addMode('create-admin', '''APP-NAME create-admin <name> <password> [<options>]
+ Create a database user with admin rights.
+ ''', '''APP-NAME create-admin dbadm TopSecret
+APP-NAME create-admin dbadmin MoreSecret --admin=root --adm-password=ForgetNever
+''')
+        self._usageInfo.addMode('create-db-and-user', '''APP-NAME create-db-and-user <db> [<user> <password>] [<options>]
+ Create a database and a user with rights to modify this db.
+ ''', '''APP-NAME create-db-and-user dbcompany
+APP-NAME create-db-and-user dbcompany dbadmin MoreSecret --adm-name=root --adm-password=ForgetNever
+''')
+        self._usageInfo.addMode('create-webapp', '''APP-NAME create-webapp <domain> [<db> <user> <password> [<home>]] [<options>]
+ Create a web application with db, user, password and the base directory <home>.
+ If missing <user>..<password> the data will be taken from configuration.
+ Default <home>: /srv/www/<domain>
+ ''', '''APP-NAME create-webapp example.com dbexample example TopSecret
+APP-NAME create-webapp example.com dbexample example TopSecret --no-dir
+APP-NAME create-webapp example.com --no-dir
+''')
+        self._usageInfo.addMode('delete-db', '''APP-NAME delete-db <db> [<backup-file>] [<options>]
+ Deletes a database (with or without a confirmation and/or a backup).
+  <db>: name of the database
+  <backup-file>: before deleting the database is dumped to this file. Should end with '.sql' or '.sql.gz'
+   if ending with '.gz' the dump will be compressed via gzip. Default: <temp>/<db>.sql.gz
+ ''', '''APP-NAME delete-db dbcompany ../db/dbcompany.sql.gz
+APP-NAME delete-db dbcompany --no-backup --force --user-name=root --user-password=ForgetNever
+''')
+        self._usageInfo.addMode('delete-user', '''APP-NAME delete-user <user> <options>
+ Deletes a database user with/without confirmation.
+  <db>: name of the database
+''', '''APP-NAME delete-user jonny
+APP-NAME delete-user eve --force --user-name=root --user-password=ForgetNever
+''')
+        self._usageInfo.addMode('export-db', '''APP-NAME export-db <db> <file> [<options>]
+ Exports a database into a file.
+  <db>: name of the database
+  <file>: the content is dumped to this file. If ending with '.gz' the content will be compressed with gzip
+''', '''APP-NAME export-db dbcompany dbc.sql.gz
+APP-NAME export-db dbcompany /data/version3.sql --force --user-name=root --user-password=ForgetNever
+''')
+        self._usageInfo.addMode('export-webapp', '''APP-NAME export-webapp <domain> [<file>] [<options>]
+ Exports a database into a file.
+  <domain>: the domain of the web application, e.g. 'example.com'
+  <file>: the content is dumped to this file. If ending with '.gz' the content will be compressed with gzip
+   if not given: it will be created in the tempororary directory with the name <domain>.sql.gz
+''', '''APP-NAME export-webapp example.com
+APP-NAME export-webapp example.com /data/version9.sql --force --user-name=root --user-password=ForgetNever
+''')
+        self._usageInfo.addMode('import-db', '''APP-NAME import-db <db> <file> [<options>]
+ Imports a file into a database.
+  <db>: name of the database
+  <file>: the new content as SQL statements. If ending with '.gz' the content is compressed with gzip
+''', '''APP-NAME export-db dbcompany dbc.sql.gz
+APP-NAME import-db dbcompany company_update1.sql --user-name=root --user-password=ForgetNever
+''')
+        self._usageInfo.addMode('import-webapp', '''APP-NAME import-webapp <domain> <file> [<options>]
+ Imports a file into a database of a web application.
+  <domain>: domain of the web application, e.g. 'example.com'
+  <file>: the new content as SQL statements. If ending with '.gz' the content is compressed with gzip
+''', '''APP-NAME import-webapp www.example.com dbc.sql.gz
+''')
+        self._usageInfo.addMode('restore-webapps', '''APP-NAME restore-webapps [<directory>] [<options>]
+ Restores all web applications defined by given database dumps in <directory>. DB, user and password will be created.
+ Note: the db dumps needs the filename <domain>.sql.gz
+ Note: the webapp description must exist: /etc/snakeboxx/webapp.d/<domain>.conf
+  <domain>: domain of the web application, e.g. 'example.com'
+  <file>: the new content as SQL statements. If ending with '.gz' the content is compressed with gzip
+''', '''APP-NAME import-webapp www.example.com dbc.sql.gz
+''')
+
+    def buildUsageOptions(self, mode: str=None, subMode: str=None):
+        '''Adds the options for a given mode.
+        @param mode: None or the mode for which the option is added
+        @param subMode: None or the submode for which the option is added
+        '''
+        def add(mode: str, opt: str):
+            self._usageInfo.addModeOption(mode, opt)
+
+        def addAdminOpts(mode: str):
+            add(mode, base.UsageInfo.Option('adm-name',
+                                            'N', 'name of a db user with admin rights'))
+            add(mode, base.UsageInfo.Option(
+                'adm-password', 'P', 'password of the admin'))
+            add(mode, base.UsageInfo.Option(
+                'adm-group', 'g', 'group of the administrators'))
+
+        def addDriver(mode: str):
+            add(mode, base.UsageInfo.Option('driver', 'D',
+                                            'database driver: mysql or pg', 'string', defaultValue='mysql'))
+
+        def addForce(mode: str):
+            add(mode, base.UsageInfo.Option('force', 'f',
+                                            'delete without confirmation', 'bool'))
+
+        def addNoBackup(mode: str):
+            add(mode, base.UsageInfo.Option(
+                'no-backup', 'n', 'no backup export is done', 'bool'))
+
+        def addUserOpts(mode: str):
+            add(mode, base.UsageInfo.Option('user-name', 'n',
+                                            'name of a db user with rights for the related db'))
+            add(mode, base.UsageInfo.Option(
+                'user-password', 'P', 'password of the user'))
+
+        base.StringUtils.avoidWarning(subMode)
+        if mode is None:
+            mode = self._mainMode
+        if mode not in ['<global-option>', 'install', 'uninstall', 'build-config', 'version', 'help']:
+            addDriver(mode)
+        if mode == 'all-dbs':
+            addAdminOpts(mode)
+            add(mode, base.UsageInfo.Option('internal-too', 'i',
+                                            'the internal databases will be listed too', 'bool'))
+        elif mode == 'create-admin':
+            addAdminOpts(mode)
+            add(mode, base.UsageInfo.Option('readonly', 'r',
+                                            'the admin gets only read rights (e.g. for backup)', 'bool'))
+        elif mode == 'create-db-and-user':
+            addAdminOpts(mode)
+        elif mode == 'delete-db':
+            addUserOpts(mode)
+            addForce(mode)
+            addNoBackup(mode)
+        elif mode == 'delete-user':
+            addAdminOpts(mode)
+            addForce(mode)
+        elif mode == 'export-db':
+            addUserOpts(mode)
+        elif mode == 'export-webapp':
+            self._usageInfo.addModeOption(mode, None)
+        elif mode == 'import-db':
+            addUserOpts(mode)
+            addForce(mode)
+            addNoBackup(mode)
+        elif mode == 'import-webapp':
+            addForce(mode)
+            addNoBackup(mode)
+        elif mode == 'create-webapp':
+            add(mode, base.UsageInfo.Option('no-dir', 'n',
+                                            'the directory will not created', 'bool'))
+        elif mode == 'restore-webapps':
+            addAdminOpts(mode)
+
+    def checkGlobalOptions(self):
+        '''Checks the validity of the global options.
+        Can be overridden.
+        '''
+        driverName = self._optionProcessor.valueOf('driver')
+        if 'mysql'.startswith(driverName):
+            self._driverName = 'mysql'
+        elif 'pg'.startswith(driverName) or 'postgresql'.startswith(driverName):
+            self._driverName = 'postgresql'
+        else:
+            self.abort('unknown driver name: {driverName} known: "mysql" "pg"')
+
+    def confirm(self, message: str, expected: str) -> bool:
+        '''Confirms a critical action.
+        @param message: the message of confirmation
+        @param expected: this value must be typed by the user
+        @return: True: confirmation successful
+        '''
+        answer = input(message + ': ')
+        rc = answer.strip() == expected
+        if not rc:
+            self.abort('confirmation failed')
+        return rc
+
+    def createAdmin(self):
+        '''Creates an user able to process all databases
+        '''
+        user = self.shiftProgramArgument()
+        code = self.shiftProgramArgument()
+        if code is None:
+            self.abort('too few arguments')
+        else:
+            if self.handleOptions():
+                readOnly = self._optionProcessor.valueOf('readonly')
+                driver = self._getDriver()
+                driver.createAdmin(user, code, readOnly)
+
+    def createDbAndUser(self):
+        '''Creates a database and a user with rights to modify this db.
+        '''
+        db = self.shiftProgramArgument()
+        user = self.shiftProgramArgument()
+        code = self.shiftProgramArgument()
+        if db is None:
+            self.abort('too few arguments')
+        elif user is not None and code is None:
+            self.abort('missing password')
+        elif code is not None and code.find("'") >= 0:
+            self.abort('password must not contain "\'"')
+        elif self.handleOptions():
+            driver = self._getDriver()
+            driver.createDbAndUser(db, user, code)
+
+    def createWebApp(self):
+        '''Creates a database and a user with rights to modify this db.
+        '''
+        domain = self.shiftProgramArgument()
+        db = self.shiftProgramArgument()
+        user = self.shiftProgramArgument()
+        code = self.shiftProgramArgument()
+        home = self.shiftProgramArgument()
+        testConfig = True
+        if home is None and domain is not None:
+            home = f'/srv/www/{domain}'
+        fnConfig = self._getFileNameWebappConfig(domain)
+        if db is None and os.path.exists(fnConfig):
+            config = self.webApp(domain)
+            db = config.getString('db')
+            user = config.getString('user')
+            code = config.getString('password')
+            home = config.getString('directory')
+            driver = 'mysql'
+            testConfig = False
+        if code is None:
+            self.abort(f'too few arguments or {config} does not exist')
+        elif testConfig and os.path.exists(fnConfig):
+            self.abort(f'webapp {domain} already exist: {fnConfig}')
+        elif os.path.exists(fnConfig + '.conf'):
+            self.abort(f'webapp {domain} already exist: {fnConfig}.conf')
+        elif self.handleOptions():
+            self._logger.log(
+                f'creating {fnConfig} ...', base.Const.LEVEL_SUMMARY)
+            if testConfig:
+                driver = self.driverName()
+                base.StringUtils.toFile(fnConfig, f'''db={db}
+user={user}
+password={code}
+sql.file={domain}-{db}
+directory={home}
+excluded=
+driver={driver}
+''')
+            sql = f'''GRANT ALL ON {db}.* TO '{user}'@'localhost' IDENTIFIED BY '{code}';
+flush privileges;
+create database if not exists {db};'''
+            self._logger.log(
+                f'creating db {db}...', base.Const.LEVEL_SUMMARY)
+            self._logger.log(sql, base.Const.LEVEL_FINE)
+            argv = self.buildArgvMysql('mysql', True)
+            self._processTool.executeInput(
+                argv, self._logger._verboseLevel >= base.Const.LEVEL_DETAIL, sql)
+            if not self._optionProcessor.valueOf('no-dir') and not os.path.exists(home):
+                base.FileHelper.ensureDirectory(home)
+
+    def deleteDb(self):
+        '''Creates a database and a user with rights to modify this db.
+        '''
+        db = self.shiftProgramArgument()
+        backupFile = self.shiftProgramArgument()
+        if db is None:
+            self.abort('too few arguments')
+        elif self.handleOptions():
+            force = self._optionProcessor.valueOf('force')
+            if not self._optionProcessor.valueOf('no-backup'):
+                self.export(db, backupFile)
+            if force or self.confirm('If you want to delete you must type the name of the db', db):
+                driver = self._getDriver()
+                driver.deleteDb(db)
+
+    def deleteUser(self):
+        '''Deletes a database user.
+        '''
+        user = self.shiftProgramArgument()
+        if user is None:
+            self.abort('too few arguments')
+        else:
+            if self.handleOptions():
+                force = self._optionProcessor.valueOf('force')
+                if force or self.confirm('If you want to delete you must type the name of the user', user):
+                    sql = f'''DROP user {user}@localhost;
+flush privileges;
+'''
+                    self._logger.log(
+                        f'deleting user {user}...', base.Const.LEVEL_SUMMARY)
+                    self._logger.log(sql, base.Const.LEVEL_FINE)
+                    argv = self.buildArgvMysql('mysql', True)
+                    argv.append('mysql')
+                    self._processTool.executeInput(
+                        argv, self._logger._verboseLevel >= base.Const.LEVEL_DETAIL, sql)
+
+    def driverName(self):
+        '''Returns the name of the current driver, e.g. "mysql
+        '''
+        return self._driverName
+
+    def export(self, db: str, target: str, user: str=None, code: str=None):
+        '''Exports a database into a file.
+        @param db: the name of the database
+        @param target: the file to export. None: a file in the temp directory will be written
+        @param user: None: will be got from options or configuration. Otherwise: a user with read rights for db
+        @param code: None: will be got from options or configuration. Otherwise: the password of user
+        '''
+        if target is None:
+            now = datetime.datetime.now().strftime('%y.%m.%d-%H_%M')
+            target = base.FileHelper.tempFile(f'{db}.{now}.sql.gz')
+        if user is None:
+            user = self._optionProcessor.valueOf('user-name')
+            if user is not None:
+                code = self._optionProcessor.valueOf('user-password')
+            else:
+                user = self._configuration.getString('mysql.admin.user')
+                code = self._configuration.getString('mysql.admin.code')
+        self._logger.log(f'exporting {db} to {target}')
+        if target.endswith('.gz'):
+            self._processHelper.executeScript(f'''#! /bin/bash
+/usr/bin/mysqldump --default-character-set=utf8mb4 --single-transaction -u{user} '-p{code}' {db} | gzip -c > {target}
+''')
+        else:
+            contents = f'''#! /bin/bash
+/usr/bin/mysqldump --default-character-set=utf8mb4 --single-transaction -u{user} '-p{code}' {db} > {target}
+'''
+            self._processHelper.executeScript(contents)
+
+    def exportDb(self):
+        '''Exports a database into a file.
+        '''
+        db = self.shiftProgramArgument()
+        file = self.shiftProgramArgument()
+        if db is None:
+            self.abort('too few arguments')
+        else:
+            if self.handleOptions():
+                self.export(db, file)
+
+    def exportWebApp(self):
+        '''Exports a database into a file.
+        '''
+        domain = self.shiftProgramArgument()
+        file = self.shiftProgramArgument()
+        if domain is None:
+            self.abort('too few arguments')
+        else:
+            if self.handleOptions():
+                config = self.webApp(domain)
+                if config is None:
+                    self.abort(f'missing configuration for {domain}')
+                else:
+                    self.export(config.getString('db'), file, config.getString(
+                        'user'), config.getString('password'))
+
+    def importDb(self):
+        '''Imports a file into a database.
+        '''
+        db = self.shiftProgramArgument()
+        file = self.shiftProgramArgument()
+        if file is None:
+            self.abort('too few arguments')
+        else:
+            if self.handleOptions():
+                force = self._optionProcessor.valueOf('force')
+                if not self._optionProcessor.valueOf('no-backup'):
+                    self.export(db, None)
+                if force or self.confirm('If you want to import you must type the name of the db', db):
+                    self.importSql(db, file)
+
+    def importSql(self, db: str, source: str, user: str=None, code: str=None):
+        '''Exports a database into a file.
+        @param db: the name of the database
+        @param source: the file to import
+        @param user: None: will be got from options or configuration. Otherwise: a user with read rights for db
+        @param code: None: will be got from options or configuration. Otherwise: the password of user
+        '''
+        if user is None:
+            user = self._optionProcessor.valueOf('user-name')
+            if user is not None:
+                code = self._optionProcessor.valueOf('user-password')
+            else:
+                user = self._configuration.getString('mysql.admin.user')
+                code = self._configuration.getString('mysql.admin.code')
+        self._logger.log(f'import {db} from {source}')
+        if source.endswith('.gz'):
+            self._processHelper.executeScript(f'''#! /bin/bash
+/usr/bin/zcat {source} | /usr/bin/mysql -u{user} '-p{code}' {db}
+''')
+        else:
+            self._processHelper.executeScript(f'''#! /bin/bash
+/usr/bin/mysql -u{user} '-p{code}' {db} < {source}
+''')
+
+    def importWebApp(self):
+        '''Imports a file into a database.
+        '''
+        domain = self.shiftProgramArgument()
+        file = self.shiftProgramArgument()
+        if file is None:
+            self.abort('too few arguments')
+        else:
+            if self.handleOptions():
+                config = self.webApp(domain)
+                if config is None:
+                    self.abort('missing configuration for {domain}')
+                else:
+                    db = config.getString('db')
+                    force = self._optionProcessor.valueOf('force')
+                    if not self._optionProcessor.valueOf('no-backup'):
+                        self.export(db, None)
+                    if force or self.confirm('If you want to import you must type the name of the db', db):
+                        self.importSql(db, file, config.getString(
+                            'user'), config.getString('password'))
+
+    def restoreWebApps(self):
+        '''Restore many webapps by creating DB, user and password.
+        '''
+        dirDumps = self.shiftProgramArgument('.')
+        if dirDumps != '.' and not os.path.isdir(dirDumps):
+            self.abort(f'not a directory: {dirDumps}')
+        elif self.handleOptions():
+            for fnDump in os.listdir(dirDumps):
+                if fnDump.endswith('.sql.gz'):
+                    full = os.path.join(dirDumps, fnDump)
+                    domain = fnDump[0:-7]
+                    fnConfig = self._getFileNameWebappConfig(domain)
+                    if not os.path.exists(fnConfig):
+                        self._logger.error(
+                            f'missing configuration file {fnConfig}')
+                    else:
+                        self._logger.log('= restoring {domain}...')
+                        config = self.webApp(domain)
+                        db = config.getString('db')
+                        user = config.getString('user')
+                        code = config.getString('password')
+                        if db is None or user is None or code is None:
+                            self._logger.error(
+                                f'incomplete configuration in {fnConfig}: db: {db} user: {user} pw: {code}')
+                        else:
+                            self.createDbAndUser2(db, user, code)
+                            self.importSql(db, full, user, code)
+
+    def run(self):
+        '''Implements the tasks of the application.
+        '''
+        if self._mainMode == 'all-dbs':
+            self.allDbs()
+        elif self._mainMode == 'create-admin':
+            self.createAdmin()
+        elif self._mainMode == 'create-db-and-user':
+            self.createDbAndUser()
+        elif self._mainMode == 'create-webapp':
+            self.createWebApp()
+        elif self._mainMode == 'delete-db':
+            self.deleteDb()
+        elif self._mainMode == 'delete-user':
+            self.deleteUser()
+        elif self._mainMode == 'export-db':
+            self.exportDb()
+        elif self._mainMode == 'export-webapp':
+            self.exportWebApp()
+        elif self._mainMode == 'import-db':
+            self.importDb()
+        elif self._mainMode == 'import-webapp':
+            self.importWebApp()
+        elif self._mainMode == 'restore-webapps':
+            self.restoreWebApps()
+        else:
+            self.abort('unknown mode: ' + self._mainMode)
+
+    def webApp(self, domain: str) -> base.JavaConfig.JavaConfig:
+        '''Returns the web application configuration.
+        @param domain: the domain of the web application
+        @return: None: not found Otherwise: the JavaConfig instance
+        '''
+        rc = None
+        fnConfig = self._getFileNameWebappConfig(domain)
+        if not os.path.exists(fnConfig):
+            fnConfig += '.conf'
+        if os.path.exists(fnConfig):
+            rc = base.JavaConfig.JavaConfig(fnConfig, self._logger)
+            config = base.JavaConfig.JavaConfig(fnConfig, self._logger)
+            db = config.getString('db')
+            user = config.getString('user')
+            code = config.getString('password')
+            if db is None or user is None or code is None:
+                self._logger.error(f'incomplete data in {fnConfig}')
+                rc = None
+        return rc
+
+
+def main(args: List[str]):
+    '''Main function.
+    @param args: the program arguments
+    '''
+    snakeboxx.startApplication()
+    application = DbApp(args)
+    application.main()
+
+
+if __name__ == '__main__':
+    main(sys.argv[1:])
diff --git a/app/DirApp.py b/app/DirApp.py
new file mode 100755 (executable)
index 0000000..c6bd9d2
--- /dev/null
@@ -0,0 +1,308 @@
+#! /usr/bin/python3
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import sys
+import os.path
+import time
+import fnmatch
+# see snake_install.sh
+import snakeboxx
+
+
+import base.DirTraverser
+import base.FileHelper
+import app.BaseApp
+
+
+class MetaData:
+    '''Stores the meta data of a file.
+    '''
+
+    def __init__(self, name, statInfo, value):
+        '''Adds a file to the list if it is a extremum.
+        @param name: the filename
+        @param statInfo: the meta data of the file
+        @param value: the value of the sort criterion
+        '''
+        self._name = name
+        self._stat = statInfo
+        self._value = value
+
+
+class ExtremaList:
+    '''Stores a list of files sorted by a given criteria.
+    '''
+
+    def __init__(self, size, criterion, descending):
+        '''Constructor.
+        @param size: maximal length of the internal list
+        @param criterion: t(ime), s(ize)
+        @param descending: True:
+        '''
+        self._list = []
+        self._size = size
+        self._criterion = criterion
+        self._descending = descending
+        self._limit = None
+        self._factor = -1 if self._descending else 1
+        self._minLength = 0
+
+    def merge(self, name, statInfo):
+        '''Adds a file to the list if it is a extremum.
+        @param name: the filename
+        @param statInfo: the meta data of the file
+        '''
+        sortIt = False
+        if len(self._list) < self._size:
+            value = self._factor * \
+                (statInfo.st_mtime if self._criterion == 't' else statInfo.st_size)
+            self._list.append(MetaData(name, statInfo, value))
+            sortIt = True
+        else:
+            value = self._factor * \
+                (statInfo.st_mtime if self._criterion == 't' else statInfo.st_size)
+            if value > self._limit:
+                sortIt = True
+                # replace the "smallest" element:
+                self._list[0] = MetaData(name, statInfo, value)
+        if sortIt:
+            self._list.sort(key=lambda info: info._value)
+            self._limit = self._list[0]._value
+
+    def show(self, title, lines):
+        '''Shows the list of files
+        @param title: the text above the file list
+        @param lines: IN/OUT: the info is stored there
+        '''
+        lines.append('== ' + title)
+        self._list.reverse()
+        for item in self._list:
+            info = base.FileHelper.listFile(
+                item._stat, item._name, self._criterion == 't', True)
+            lines.append(info)
+
+
+class DirApp(app.BaseApp.BaseApp):
+    '''Performs some tasks with text files: searching, modification...
+    '''
+
+    def __init__(self, args):
+        '''Constructor.
+        @param args: the program arguments, e.g. ['test', 'a@bc.de']
+        '''
+        app.BaseApp.BaseApp.__init__(self, 'DirApp', args, None, 'dirboxx')
+        self._traverser = None
+        self._processor = None
+        self._hostname = None
+
+    def adjust(self):
+        '''Adjusts the file modifcation datetime in a given directory.
+        '''
+        self._resultLines = []
+        source = self.shiftProgramArgument()
+        target = self.shiftProgramArgument()
+        if target is None:
+            self.abort('too few arguments')
+        elif not os.path.isdir(source):
+            self.abort(f'not a directory: {source}')
+        elif not os.path.isdir(target):
+            self.abort(f'not a directory: {target}')
+        if self.handleOptions():
+            pattern = self._optionProcessor.valueOf('pattern')
+            self.adjustDir(pattern, source, target)
+
+    def adjustDir(self, pattern, source, target):
+        '''For all files in target: if a file exists in source the modification time is transfered from source to target.
+        @param source: the directory with files having the needed modification time
+        @param target: the directory with the files to change
+        @param pattern: a shell pattern for the files to process, e.g. "*.jpg"
+        '''
+        info = f'= {target}:'
+        self._resultLines.append(info)
+        self._logger.log(info, base.Const.LEVEL_DETAIL)
+        dirs = []
+        for file in os.listdir(target):
+            full = os.path.join(target, file)
+            if os.path.isdir(full):
+                if self._optionProcessor.valueOf('recursive'):
+                    dirs.append(file)
+            elif not fnmatch.fnmatch(file, pattern):
+                info = f'{file} ignored'
+                self._resultLines.append(info)
+                self._logger.log(info, base.Const.LEVEL_FINE)
+            else:
+                src = os.path.join(source, file)
+                if os.path.exists(src):
+                    timeSrc = os.stat(src).st_mtime
+                    timeTrg = os.stat(full).st_mtime
+                    base.FileHelper.setModified(full, timeSrc)
+                    info = f'{file}: {time.strftime("%Y.%m.%d-%H:%M:%S", time.localtime(timeTrg))} -> {time.strftime("%Y.%m.%d-%H:%M:%S", time.localtime(timeSrc))}'
+                    self._resultLines.append(info)
+                    self._logger.log(info, base.Const.LEVEL_LOOP)
+        for item in dirs:
+            self.adjustDir(pattern, os.path.join(source, item), os.path.join(target, item))
+
+    def buildConfig(self):
+        '''Creates an useful configuration example.
+        '''
+        content = '''# created by DirApp
+logfile=/var/log/local/dirboxx.log
+'''
+        self.buildStandardConfig(content)
+
+    def buildUsage(self):
+        '''Builds the usage message.
+        '''
+        self._usageInfo.appendDescription('''APP-NAME <global-opts> <mode> [<options>]
+ Searching and modifying in text files.
+''')
+        self._usageInfo.addMode('describe-rules', '''
+ Describes the syntax and the meaning of the rules
+ ''', '''APP-NAME describe-rules
+''')
+        self._usageInfo.addMode('extrema', '''extrema [<what> [<directory>]] [<options>]
+ Find the oldest, youngest, largest, smallest files.
+ <what>: 'all' or a comma separated list of requests: o or oldest, y or youngest, l or largest, s or smallest
+ <directory>: the base directory for searching. Default: the current directory
+ ''', '''APP-NAME extrema o,y,l
+APP-NAME extrema oldest,largest /home --exclude-dir=.git
+''')
+
+        self._usageInfo.addMode('list', '''list [<pattern>] [<options>]
+ Displays the metadata (size, date/time...) of the specified dirs/files.
+ <pattern>: defines the files/dirs to display. Default: the current directory
+ ''', '''APP-NAME list
+APP-NAME list *.txt --exclude-dirs=.git --file-type=fl --min-size=20k --younger-than=2020.01.30-05:00:00
+''')
+        self._usageInfo.addMode('adjust', '''adjust <source-dir> <target-dir> [<options>]
+ Search for each file in <target-dir> a file with the same name in <source-dir> and sets the modification datetime of the 2nd file to the first. 
+ <source-dir>: the modifiction datetime is taken from the file in this directory 
+ <target-dir>: files in this directory will be changed (modifiction datetime) 
+ ''', '''APP-NAME list
+APP-NAME adjust Bilder Bilder/fullsize
+APP-NAME adjust /tmp/pic/eastern /home/pictures/eastern/fullhd
+''')
+
+    def buildUsageOptions(self, mode=None, subMode=None):
+        '''Adds the options for a given mode.
+        @param mode: None or the mode for which the option is added
+        @param subMode: None or the submode for which the option is added
+        '''
+        def add(mode, opt):
+            self._usageInfo.addModeOption(mode, opt)
+
+        base.StringUtils.avoidWarning(subMode)
+        if mode is None:
+            mode = self._mainMode
+        if mode == 'describe-rules':
+            pass
+        elif mode == 'extrema':
+            base.DirTraverser.addOptions(mode, self._usageInfo)
+            add(mode, base.UsageInfo.Option('count', None,
+                                            'max. count of elements in the extrema list', 'int', 5))
+            add(mode, base.UsageInfo.Option('min-length', None,
+                                            'relevant for "smallest": only file larger than <size> will be inspected', 'int', 0))
+        elif mode == 'list':
+            base.DirTraverser.addOptions(mode, self._usageInfo)
+        elif mode == 'adjust':
+            add(mode, base.UsageInfo.Option('pattern', 'p',
+                                            'specifies the filenames to change, with shell wildcards: "*": any string "?": one char...', 'string', '*'))
+            add(mode, base.UsageInfo.Option('recursive', 'r',
+                                            'files will be processed in subdirectories', 'bool'))
+
+    def extrema(self):
+        '''Searches the "extremest" (youngest, oldest, ...) files.
+        '''
+        what = self.shiftProgramArgument('o,y,l,s')
+        if what == 'all':
+            what = 'o,y,l,s'
+        directory = self.shiftProgramArgument('.')
+        what1 = ''
+        for item in what.split(','):
+            if item in ('o', 'y', 'l', 's', 'oldest', 'youngest', 'largest', 'smallest'):
+                what1 += item[0]
+            else:
+                self.argumentError(
+                    'unknown item in <what>: {} use oldest, youngest, largest or smallest'.format(item))
+        if self.handleOptions():
+            self._traverser = base.DirTraverser.buildFromOptions(
+                directory, self._usageInfo, 'extrema')
+            count = self._optionProcessor.valueOf('count')
+            oldest = ExtremaList(count, 't', True) if what1.find(
+                'o') >= 0 else None
+            youngest = ExtremaList(
+                count, 't', False) if what1.find('y') >= 0 else None
+            largest = ExtremaList(count, 's', False) if what1.find(
+                'l') >= 0 else None
+            smallest = ExtremaList(count, 's', True)
+            smallest._minLength = self._optionProcessor.valueOf('min-length')
+            for filename in self._traverser.next(self._traverser._directory, 0):
+                if oldest is not None:
+                    oldest.merge(filename, self._traverser._statInfo)
+                if youngest is not None:
+                    youngest.merge(filename, self._traverser._statInfo)
+                if not self._traverser._isDir:
+                    if largest is not None:
+                        largest.merge(filename, self._traverser._statInfo)
+                    if smallest is not None and (
+                            smallest._minLength is None
+                            or self._traverser._statInfo.st_size >= smallest._minLength):
+                        smallest.merge(filename, self._traverser._statInfo)
+            summary = self._traverser.summary()
+            self._logger.log(summary, base.Const.LEVEL_SUMMARY)
+            self._resultLines = summary.split('\n')
+            if oldest is not None:
+                oldest.show('the oldest files:', self._resultLines)
+            if smallest is not None:
+                smallest.show('the smallest files:', self._resultLines)
+            if youngest is not None:
+                youngest.show('the youngest files:', self._resultLines)
+            if largest is not None:
+                largest.show('the largest files:', self._resultLines)
+            print('\n'.join(self._resultLines))
+
+    def list(self):
+        '''Displays the meta data of the specified files/dirs.
+        '''
+        self._resultLines = []
+        directory = self.shiftProgramArgument('.')
+        if self.handleOptions():
+            self._traverser = base.DirTraverser.buildFromOptions(
+                directory, self._usageInfo, 'list')
+            for filename in self._traverser.next(self._traverser._directory, 0):
+                info = base.FileHelper.listFile(
+                    self._traverser._statInfo, filename, orderDateSize=True, humanReadable=True)
+                self._resultLines.append(info)
+                print(info)
+            summary = self._traverser.summary()
+            self._logger.log(summary, base.Const.LEVEL_SUMMARY)
+            self._resultLines += summary.split('\n')
+
+    def run(self):
+        '''Implements the tasks of the application.
+        '''
+        self._hostname = self._configuration.getString('hostname', '<host>')
+        if self._mainMode == 'adjust':
+            self.adjust()
+        elif self._mainMode == 'extrema':
+            self.extrema()
+        elif self._mainMode == 'list':
+            self.list()
+        else:
+            self.abort('unknown mode: ' + self._mainMode)
+
+
+def main(args):
+    '''Main function.
+    @param args: the program arguments
+    '''
+    snakeboxx.startApplication()
+    application = DirApp(args)
+    application.main()
+
+
+if __name__ == '__main__':
+    main(sys.argv[1:])
diff --git a/app/EMailApp.py b/app/EMailApp.py
new file mode 100755 (executable)
index 0000000..079a84d
--- /dev/null
@@ -0,0 +1,236 @@
+#! /usr/bin/python3
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import sys
+import os
+import snakeboxx
+
+import base.StringUtils
+import base.JobController
+import net.EMail
+import app.BaseApp
+
+
+class EmailJobController(base.JobController.JobController):
+    '''Executes email tasks.
+    '''
+
+    def __init__(self, emailApp, jobDirectory, cleanInterval):
+        '''Constructor.
+        @param emailApp: the parent process
+        @param jobDirectory: the directory hosting the job files
+        @param cleanInterval: files older than this amount of seconds will be deleted
+        '''
+        base.JobController.JobController.__init__(
+            self, jobDirectory, cleanInterval, emailApp._logger)
+        self._emailApp = emailApp
+
+    def process(self, name, args):
+        '''Processes a job found in a job file.
+        @param name: the job name, e.g. 'send'
+        @param args: the job arguments, e.g. ['a@bc.de', 'subject', 'body']
+        @return: True: success
+        '''
+        rc = self._emailApp.process(name, args)
+        return rc
+
+
+class EMailApp(app.BaseApp.BaseApp):
+    '''Sends an email.
+    '''
+
+    def __init__(self, args):
+        '''Constructor.
+        @param args: the program arguments, e.g. ['test', 'a@bc.de']
+        '''
+        app.BaseApp.BaseApp.__init__(self, 'EMailApp', args, True)
+        self._daemonJobController = None
+
+    def buildConfig(self):
+        '''Creates an useful configuration example.
+        '''
+        content = '''# created by EMailApp
+smtp.host=smtp.gmx.de
+smtp.port=587
+smtp.user=hm.neutral@gmx.de
+smtp.code=TopSecret
+smtp.with.tls=True
+sender=hm.neutral@gmx.de
+# jobs should be written to this dir:
+job.directory=/tmp/emailboxx/jobs
+# files older than this amount of seconds will be deleted (in job.directory):
+job.clean.interval=3600
+'''
+        self.buildStandardConfig(content)
+
+    def buildUsage(self):
+        '''Builds the usage message.
+        '''
+        self._usageInfo.appendDescription('''APP-NAME <global-opts> <mode> [<opts>]
+ Offers email services.
+''')
+        self._usageInfo.addMode('send', '''send [<opts>] <recipient <subject> <body>
+ <recipent>: the email address of the receipient. Separate more than one with '+'
+ <subject>: the text of the subject field
+ <body>: the body of the email or (if preceeded by '@' a filename with the body.
+''', '''APP-NAME send --carbon-copy=jonny@x.de eva@x.com+adam@x.fr "Greetings" "Hi guys"
+APP-NAME send --blind-carbon-copy=jonny@x.de+joe@x.de eva@x.com+adam@x.fr "Greetings" @birthday.html
+''')
+
+    def buildUsageOptions(self, mode=None, subMode=None):
+        '''Adds the options for a given mode.
+        @param mode: None or the mode for which the option is added
+        @param subMode: None or the submode for which the option is added
+        '''
+        def add(mode, opt):
+            self._usageInfo.addModeOption(mode, opt)
+
+        base.StringUtils.avoidWarning(subMode)
+        if mode is None:
+            mode = self._mainMode
+        if mode == 'send':
+            add(mode, base.UsageInfo.Option('carbon-copy', 'c',
+                                            'additional recipient(s) seen by all recipients. Separate more than one with "+"'))
+            add(mode, base.UsageInfo.Option('blind-carbon-copy', 'b',
+                                            'additional recipient(s) not seen by all recipients. Separate more than one with "+"'))
+
+    def daemonAction(self, reloadRequest):
+        '''Does the real thing in the daemon (= service).
+        @param reloadRequest: True: a reload request has been done
+        '''
+        if reloadRequest or self._daemonJobController is None:
+            jobDir = self._configuration.getString('job.directory')
+            cleanInterval = self._configuration.getInt('job.clean.interval')
+            self._daemonJobController = EmailJobController(
+                self, jobDir, cleanInterval)
+        self._daemonJobController.check()
+
+    def install(self):
+        '''Installs the application and the related service.
+        '''
+        app.BaseApp.BaseApp.install(self)
+        self.createSystemDScript(
+            'emailboxx', 'emailboxx', 'emailboxx', 'emailboxx', 'Offers an email send service')
+        self.installAsService('emailboxx', True)
+
+    def process(self, name, args):
+        '''Processes a job found in a job file.
+        @param name: the job name, e.g. 'send'
+        @param args: the job arguments, e.g. ['a@bc.de', 'subject', 'body']
+        @return: True: success
+        '''
+        rc = False
+        if name == 'send':
+            args2 = []
+            options = []
+            for arg in args:
+                if arg.startwith('-'):
+                    options.append(arg)
+                else:
+                    args2.append(arg)
+            self.send(args2, options)
+            rc = True
+        elif name == 'test':
+            recipient = 'test@hamatoma.de' if not args else args[0]
+            self._logger.log('job "test" recogniced: ' +
+                             ' '.join(args), base.Const.LEVEL_SUMMARY)
+            host = self._configuration.getString('smtp.host')
+            sender = self._configuration.getString('smtp.sender')
+            port = self._configuration.getInt('smtp.port')
+            user = self._configuration.getString('smtp.user')
+            sender = self._configuration.getString('smtp.sender', user)
+            code = self._configuration.getString('smtp.code')
+            withTls = self._configuration.getBool('smtp.with.tls')
+            net.EMail.sendSimpleEMail(recipient, 'Test EMailApp Daemon', 'it works', sender, host,
+                                      port, user, code, withTls, self._logger)
+            rc = True
+        else:
+            self._logger.error()
+        return rc
+
+    def run(self):
+        '''Implements the tasks of the application
+        '''
+        if self._mainMode == 'send':
+            self.send()
+        elif self._mainMode == 'daemon':
+            self.daemon()
+        else:
+            self.abort('unknown mode: ' + self._mainMode)
+
+    def send(self, args=None, options=None):
+        '''Sends an email.
+        '''
+        cc = []
+        bcc = []
+        if args is None:
+            args = self._programArguments
+        if options is None:
+            options = self._programOptions
+        stopped = False
+        for opt in options:
+            if opt.startswith('--cc='):
+                cc.append(opt[5:])
+            elif opt.startswith('-c'):
+                cc.append(opt[2:])
+            elif opt.startswith('--bcc='):
+                bcc.append(opt[6:])
+            elif opt.startswith('-b'):
+                bcc.append(opt[2:])
+            else:
+                self.abort('unknown option: ' + opt)
+                stopped = True
+                break
+        cc = None if not cc else '+'.join(cc)
+        bcc = None if not bcc else '+'.join(bcc)
+        if not stopped:
+            if len(args) < 3:
+                self.abort('too few arguments')
+            else:
+                receipient = args[0]
+                subject = args[1]
+                body = args[2]
+                if body.startswith('@'):
+                    fn = body[1:]
+                    if not os.path.exists(fn):
+                        self.abort('body file not found: ' + fn)
+                        stopped = True
+                    else:
+                        body = base.StringUtils.fromFile(body)
+                if not stopped:
+                    isHtml = body.startswith('<')
+                    if isHtml:
+                        text = None
+                        html = body
+                    else:
+                        text = body
+                        html = None
+                    email = net.EMail.EMail(subject, text, html)
+                    host = self._configuration.getString('smtp.host')
+                    port = self._configuration.getInt('smtp.port')
+                    username = self._configuration.getString('smtp.user')
+                    code = self._configuration.getString('smtp.code')
+                    withTls = self._configuration.getBool('smtp.with.tls')
+                    sender = self._configuration.getString('sender', username)
+                    if host is None or port is None or username is None or code is None:
+                        self.abort('missing email configuration')
+                    else:
+                        email.setSmtpLogin(
+                            host, port, username, code, withTls, sender)
+                        email.sendTo(receipient, cc, bcc, self._logger)
+
+
+def main(args):
+    '''Main function.
+    @param args: the program arguments
+    '''
+    snakeboxx.startApplication()
+    application = EMailApp(args)
+    application.main()
+
+
+if __name__ == '__main__':
+    main(sys.argv[1:])
diff --git a/app/OperatingSystemApp.py b/app/OperatingSystemApp.py
new file mode 100755 (executable)
index 0000000..dbbeab7
--- /dev/null
@@ -0,0 +1,628 @@
+#! /usr/bin/python3
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import sys
+import os.path
+import re
+import time
+import datetime
+# see snake_install.sh
+import snakeboxx
+
+
+import base.Const
+import base.FileHelper
+import base.TextProcessor
+import app.BaseApp
+from base import TextProcessor
+
+
+class OperatingSystemApp(app.BaseApp.BaseApp):
+    '''Services for operating systems.
+    '''
+
+    def __init__(self, args):
+        '''Constructor.
+        @param args: the program arguments, e.g. ['test', 'a@bc.de']
+        '''
+        app.BaseApp.BaseApp.__init__(
+            self, 'OperatingSystemApp', args, progName='osboxx')
+        self._textProcessor = base.TextProcessor.TextProcessor(self._logger)
+        self._textProcessor.readFile('/etc/os-release')
+        self._osName = self._textProcessor.searchByGroup(r'ID=\W*([a-z]+)', 1)
+        self._osCodeName = self._textProcessor.searchByGroup(
+            r'VERSION_CODENAME=\W*([a-z]+)', 1)
+        self._ubuntuVersion = None
+        self._debianVersion = None
+        version = int(self._textProcessor.searchByGroup(
+            r'VERSION_ID=\D*(\d+)', 1))
+        if self._osName == 'ubuntu':
+            self._ubuntuVersion = version
+        elif self._osName == 'debian':
+            self._debianVersion = version
+
+    def authKeys(self):
+        '''Handles the command authKeys: put public keys into a 'authorized-keys' file.
+        '''
+        def makeMap(lines, regExpr):
+            rc = {}
+            for line in lines:
+                matcher = regExpr.search(line)
+                if matcher is not None:
+                    groupNo = len(matcher.groups())
+                    key = matcher.group(groupNo)
+                    rc[key] = line
+            return rc
+        user = self.shiftProgramArgument()
+        fnKeys = self.shiftProgramArgument('/tmp/public.keys')
+        home = '' if user is None else self.createPath('/home', user)
+        if user is None:
+            self.argumentError('missing <user>')
+        elif not os.path.exists(fnKeys):
+            self.argumentError('<private-key-file> not found: ' + fnKeys)
+        elif not os.path.isdir(home):
+            self.argumentError(f'missing home: {home}')
+        elif self.handleOptions():
+            regFilter = self._optionProcessor.valueOf('filter')
+            publicLines = base.StringUtils.fromFile(fnKeys, '\n')
+            baseSSH = home + '/.ssh'
+            base.FileHelper.ensureDirectory(baseSSH, 0o700, base.LinuxUtils.userId(user, -1),
+                                            base.LinuxUtils.groupId(user, -1))
+            fnAuth = baseSSH + '/authorized_keys'
+            authLines = [] if not os.path.exists(
+                fnAuth) else base.StringUtils.fromFile(fnAuth, '\n')
+            regExprKey = re.compile(r'ssh-rsa (\S+) ')
+            mapAuthKeys = makeMap(authLines, regExprKey)
+            filterLines = publicLines if regFilter is None else [
+                x for x in makeMap(publicLines, regFilter).values()]
+            filterKeys = makeMap(filterLines, regExprKey)
+            regExprLabel = re.compile(r' \S+@\S+')
+            for key in filterKeys:
+                if key not in mapAuthKeys:
+                    line = filterKeys[key]
+                    label = (regExprLabel.search(line).group(0)
+                             if regExprLabel.search(line) is not None else key[1:8] + '...' + key[-12:])
+                    self._logger.log('adding ' + label,
+                                     base.Const.LEVEL_SUMMARY)
+                    authLines.append(line)
+            base.StringUtils.toFile(fnAuth, authLines, '\n', fileMode=0o700,
+                                    user=base.LinuxUtils.userId(user, -1), group=base.LinuxUtils.groupId(user, -1))
+
+    def buildConfig(self):
+        '''Creates an useful configuration example.
+        '''
+        content = '''# created by OperatingSystemApp
+logfile=/var/log/local/{}.log
+php.upload_max_filesize=1G
+php.max_file_uploads=102
+php.post_max_size=512M
+php.max_execution_time=900
+php.max_input_time=630
+'''.format(self._programName)
+        self.buildStandardConfig(content)
+
+    def buildUsage(self):
+        '''Builds the usage message.
+        '''
+        def installOne(mode, subMode, description):
+            self._usageInfo.addSubMode(mode, subMode, f'''{mode} {subMode}
+ {description}
+''', '''APP_NAME {mode} {subMode}
+''')
+
+        self._usageInfo.appendDescription('''APP-NAME <global-opts> <mode> [<opts>]
+ Offers service round about the operating system.
+''')
+        self._usageInfo.addMode('auth-keys', '''auth-keys <user> [<private-key-file>] <options>
+ put some public keys taken from a file into the .ssh/authorized-keys.
+ <user>: the username: for that user the auth-keys will be modified
+ <private-key-file>: a text file with the known public keys. Default: /tmp/public.keys
+''', '''APP-NAME -v3 auth-keys bupsupply /home/data/my.public.keys -f(^ext|@caribou)
+APP-NAME -v3 auth-keys bupsrv --pattern=@caribou
+''')
+        self._usageInfo.addMode('create-user', '''create-user <user-name>
+ creates one or more standard user (for administration).
+ <user-name>: bupsrv bupsupply bupwiki extbup extcave extcloud extdata exttmp extcmd
+ std: does the job for bupsupply extbup and exttmp
+''', '''APP-NAME create-user exttmp
+APP-NAME create-user std
+''')
+
+        self._usageInfo.addMode('php-reconfigure', '''php-reconfigure [<version>]
+ Sets some values in the configuration file php.ini.
+ <version>: the PHP version to reconfigure e.g. "7.3". Default: all installed versions
+''', '''APP-NAME create-user exttmp
+APP-NAME create-user std
+''')
+        mode = 'init'
+        self._usageInfo.initializeSubModes(mode, '''init <what>
+ Initializes a "sub system" defined as <what>
+''')
+        installOne(
+            mode, 'cms', 'installs packages relevant for content management systems: imagemagick redis-server...')
+        installOne(
+            mode, 'etc', 'prepares configuration data in /etc for usage as linuxserver')
+        installOne(mode, 'dirs', 'creates needed directories')
+        installOne(mode, 'linuxserver',
+                   'prepares the system to be a standard linux server')
+        installOne(mode, 'local-bin',
+                   'initializes the directory /usr/local/bin with standard scripts')
+        self._usageInfo.addSubMode(mode, 'php', '''init php [<version>]
+ initializes the PHP programming environment
+''', '''APP_INFO init php 7.4
+''')
+        installOne(mode, 'nginx', 'initializes the NGINX webserver')
+        installOne(mode, 'mariadb', 'initializes the mariadb database engine')
+
+    def buildUsageOptions(self, mode=None, subMode=None):
+        '''Adds the options for a given mode.
+        @param mode: None or the mode for which the option is added
+        @param subMode: None or the submode for which the option is added
+        '''
+        def add(mode, opt):
+            self._usageInfo.addModeOption(mode, opt)
+
+        def add2(mode, subMode, opt):
+            self._usageInfo.addSubModeOption(mode, subMode, opt)
+
+        if mode is None:
+            mode = self._mainMode
+        if mode == 'auth-keys':
+            add(mode, base.UsageInfo.Option('filter', 'f',
+                                            ''''only lines with a label in <private-key-file>'''
+                                            + ''' matching this regular expression will be respected
+the label of the line is the last part with the form <user>@<host>''', 'regexpr'))
+        elif mode == 'create-user':
+            self._usageInfo.addModeOption(mode)
+        elif mode == 'init':
+            if subMode == 'cms':
+                add2(mode, subMode, None)
+            elif subMode == 'apache':
+                add2(mode, subMode, base.UsageInfo.Option('ports', 'p',
+                                                          '''the ports for listening. Default: 80,443
+''', 'string', '80,443'))
+
+    def createUser(self):
+        '''Create a special os user.
+        '''
+        user = self.shiftProgramArgument()
+        uid = None if user is None else base.LinuxUtils.userId(user)
+        if not self._isRoot and not app.BaseApp.BaseApp.__underTest:
+            self.abort('be root!')
+        elif user is None:
+            self.argumentError('too few arguments: ')
+        elif uid is not None:
+            self._logger.log('user {} already exists: uid={}'.format(
+                user, uid), base.Const.LEVEL_SUMMARY)
+        elif self.handleOptions():
+            users = [user]
+            if user == 'std':
+                users = ['bupsupply', 'extbup', 'exttmp']
+            elif not re.match(r'bupsrv|bupsupply|bupwiki|extbup|extcave|extcloud|extdata|exttmp', user):
+                self.argumentError('unknown <user-name>')
+            else:
+                ids = {'bupsrv': 201, 'bupsupply': 203, 'bupwiki': 205, 'extbup': 211, 'extcave': 212,
+                       'extcloud': 213, 'extdata': 214, 'exttmp': 215, 'extcmd': 216 }
+                for user in users:
+                    uid = str(ids[user])
+                    gid = uid
+                    self._logger.log('creating user...',
+                                     base.Const.LEVEL_SUMMARY)
+                    self._processHelper.execute(
+                        ['/usr/sbin/groupadd', '-g', gid, user], True)
+                    self._logger.log('creating user...',
+                                     base.Const.LEVEL_SUMMARY)
+                    self._processHelper.execute(['/usr/sbin/useradd', '-s', '/usr/sbin/nologin',
+                                                 '-d', '/home/' + user, '-u', uid, '-g', gid, user], True)
+                    base.FileHelper.ensureDirectory('/home/' + user, 0o750)
+                    base.FileHelper.ensureDirectory(
+                        '/home/{}/.ssh'.format(user), 0o700)
+                    if user.startswith('ext'):
+                        self._logger.log(
+                            'Please leave the password empty...', base.Const.LEVEL_SUMMARY)
+                        self._processHelper.execute(['/usr/bin/ssh-keygen', '-t', 'rsa', '-b', '4096',
+                                                     '-f', '/home/{}/.ssh/id_rsa'.format(user), '-N', ''], True)
+                    self._processHelper.execute(
+                        ['/usr/bin/chown', '-R', '{}.{}'.format(user, user), '/home/' + user], True)
+
+    def init(self, what=None):
+        '''Handles the mode 'init'.
+        @param what: None: use sub mode Otherwise: the sub mode
+        '''
+        if what is None:
+            what = self.getSubMode()
+        if what == 'etc':
+            self._logger.log('setting vm.swappiness...')
+            fn = self.createPath('/etc', 'sysctl.conf')
+            self._textProcessor.simpleInsertOrReplace(
+                fn, '^vm.swappiness', 'vm.swappiness = 20', 'swappiness')
+        elif what == 'dirs':
+            base.FileHelper.ensureDirectory(self.createPath('/media', 'tmp'))
+            base.FileHelper.ensureDirectory(self.createPath('/media', 'trg'))
+            base.FileHelper.ensureDirectory(self.createPath('/media', 'src'))
+            base.FileHelper.ensureDirectory(
+                self.createPath('/var/log', 'local'))
+            base.FileHelper.ensureDirectory(
+                self.createPath('/var/cache', 'local'))
+        elif what == 'linuxserver':
+            self.initLinuxServer()
+        elif what == 'local-bin':
+            self.initLocalBin()
+        elif what == 'apache':
+            self.initApache()
+        elif what == 'nginx':
+            self.initNginx()
+        elif what == 'php':
+            self.initPhp()
+        elif what == 'mariadb':
+            self.initMariaDb()
+        elif what == 'cms':
+            self.updatePackages(
+                'imagemagick php-redis redis-tools redis-server')
+        elif what == 'letsencrypt':
+            self.initLetsencrypt()
+        elif what == 'grub':
+            self.initGrub()
+        else:
+            self.abort(f'unknown <what>: {what}')
+
+    def initApache(self):
+        '''Initializes the OS for usage of the Apache webserver.'
+        '''
+        raise NotImplementedError('init apache')
+#         ports = self._optionProcessor.valueOf('ports')
+#         if re.match(r'^\d+,\d+$', ports) is None:
+#             self.abort(f'not 2 comma separated ports in: {ports}')
+#         else:
+#             parts = ports.split(',')
+#             ports = [int(parts[0]), int(parts[1])]
+#             if self._isRoot:
+#                 self.updatePackages('apache2 libapache2-mod-php libapache2-mod-php5.6 libapache2-mod-php7.0 libapache2-mod-php7.1 libapache2-mod-php7.2 libapache2-mod-php7.3')
+#             service = 'apache2'
+#             fn = self.createPath('/etc/apache2', 'ports.conf')
+#             self._textProcessor.readFile(fn, True)
+#             (start, end) = self._textProcessor.findRegion('^', True, '^<', False)
+#             if start >= 0:
+#                 self._textProcessor.currentReplace(
+#                     r'Listen\s', 'Listen {}'.format(ports[0]), None, False, start, end)
+#             (start, end) = self._textProcessor.findRegion(
+#                 '<IfModule ssl_module>', True, '</IfModule', True)
+#             if start >= 0:
+#                 self._textProcessor.currentReplace(
+#                     r'\s*Listen\s', '\tListen {}'.format(ports[1]), None, False, start, end)
+#             (start, end) = self._textProcessor.findRegion(
+#                 '<IfModule mod_gnutls.c>', True, '</IfModule', True)
+#             if start >= 0:
+#                 self._textProcessor.currentReplace(
+#                     r'\s*Listen\s', '\tListen {}'.format(ports[1]), None, False, start, end)
+#             self._textProcessor.writeFile()
+#             if self._isRoot:
+#                 self._processHelper.execute(['a2enmod', 'rewrite', service], True)
+#                 self._processHelper.execute(['systemctl', 'enable', service], True)
+#                 self._processHelper.execute(['systemctl', 'start', service], True)
+#                 self._processHelper.execute(['systemctl', 'status', service], True)
+
+    def initGrub(self):
+        '''Initializes the OS for usage of the grub boot system.'
+        '''
+        raise NotImplementedError('init grub')
+
+    def initLetsencrypt(self):
+        '''Initializes the OS for usage of some services.'
+        '''
+        raise NotImplementedError('init letsencrypt')
+
+    def initLinuxServer(self):
+        '''Initializes the OS for usage of some typical services.'
+        '''
+        self.init('etc')
+        self.init('dirs')
+        self.updatePackages('htop iotop curl tmux git etckeeper bzip2 zip unzip nfs-common nfs-kernel-server'
+                            + ' nmap rsync sudo net-tools ntp btrfs-compsize wget')
+        self.createSystemDScript('bootboxx', 'bootboxx', 'root', 'root',
+                                 'Starts shell scripts from /etc/snakeboxx/boot.d at boot time.')
+        bootDir = self.createPath('/etc/snakeboxx', 'boot.d')
+        base.FileHelper.ensureDirectory(bootDir)
+        script = self.createPath('/usr/local/bin', 'bootboxx')
+        base.StringUtils.toFile(script, f'''#! /bin/bash
+DIR={bootDir}
+LOG=/var/log/local/boot.log
+export PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
+cd $DIR
+for script in *.sh; do
+  if [ "$script" != "*.sh" ]; then
+    date "+%Y.%m.%d-%H:%M:%S $script" >>$LOG
+    ./$script $*
+  fi
+done
+date "+%Y.%m.%d-%H:%M:%S" >>$LOG
+systemctl stop bootboxx
+exit 0
+''', fileMode=0o755)
+        self.enableAndStartService('bootboxx')
+        currentZone = base.StringUtils.fromFile('/etc/timezone').strip()
+        if currentZone != 'Europe/Berlin':
+            self._logger.log(
+                f'=== Curious timezone: {currentZone} Please execute: dpkg-reconfigure tzdata', base.Const.LEVEL_SUMMARY)
+
+    def initLocalBin(self):
+        '''Initializes /usr/local/bin directory.'
+        '''
+        tarNode = 'local_bin.tgz'
+        tar = '/tmp/' + tarNode
+        url = self._configuration.getString(
+            'url.download', 'https://public.hamatoma.de')
+        self._processHelper.execute(
+            ['/usr/bin/wget', '-O', tar, url + '/' + tarNode], True)
+        self.restoreDirectoryByTar(
+            tar, '/usr/local/bin', None, True, None, False)
+
+    def initNginx(self):
+        '''Initializes the OS for usage of the NGINX webserver.'
+        '''
+        # if opt.startswith('--well-known='):
+        self.updatePackages('nginx-full ssl-cert ca-certificates')
+        fn = self.createPath('/etc/conf.d', 'gzip.conf')
+        if os.path.exists(fn):
+            self._logger.log(f'already exists: {fn}')
+        else:
+            base.StringUtils.toFile(fn, '''http {
+  gzip on;
+  gzip_disable "msie6";
+  gzip_vary on;
+  gzip_proxied any;
+  gzip_comp_level 6;
+  gzip_min_length 256;
+  gzip_http_version 1.1;
+  gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
+}
+''')
+        fn = self.createPath('/etc/snippets', 'letsencrypt.conf')
+        if os.path.exists(fn):
+            self._logger.log(f'already exists: {fn}')
+        else:
+            base.StringUtils.toFile(fn, '''location ^~ /.well-known/acme-challenge {
+    default_type "text/plain";
+    # Do NOT use alias, use root! Target directory is located here:
+    # /var/www/common/letsencrypt/.well-known/acme-challenge/
+    root  /var/www/letsencrypt;
+}
+# Hide /acme-challenge subdirectory and return 404 on all requests.
+# It is somewhat more secure than letting Nginx return 403.
+# Ending slash is important!
+location = /.well-known/acme-challenge/ {
+    return 404;
+}
+''')
+        self.enableAndStartService('nginx')
+
+    def initMariaDb(self):
+        '''Initializes the OS for usage of the mariadb database.'
+        '''
+        self.updatePackages('mariadb-common mariadb-server mariadb-client')
+        baseDir = '/var/lib/mysql'
+        if not os.path.isdir(baseDir):
+            self._logger.log(f'is not a directory: {baseDir}')
+        else:
+            mountDir, fsType = base.FileHelper.mountPointOf(baseDir)
+            self._logger.log(
+                f'mountpoint/type of {baseDir}: {mountDir}/{fsType}', base.Const.LEVEL_DETAIL)
+            if fsType == 'btrfs':
+                self._processHelper.execute(
+                    ['/bin/systemctl', 'stop', 'mysqld'], True)
+                if base.FileHelper.extendedAttributesOf(baseDir).find('C') >= 0:
+                    self._logger.log(f'already no copy on write: {baseDir}')
+                else:
+                    self._logger.log(
+                        f'changing to no copy on write: {baseDir}...')
+                    dir2 = f'{baseDir}.nowcow.{time.time()}'
+                    base.FileHelper.ensureDirectory(
+                        dir2, 0o755, 'mysql', 'mysql')
+                    base.FileHelper.changeExtendedAttributes(
+                        dir2, toAdd='C', toDelete='c')
+                    base.FileHelper.copyDirectory(baseDir, dir2)
+                    dir3 = f'{baseDir}.org.{time.time()}'
+                    self._logger.log(
+                        f'renaming {baseDir} -> {dir3}', base.Const.LEVEL_DETAIL)
+                    os.rename(baseDir, dir3)
+                    self._logger.log(
+                        f'renaming {dir2} -> {baseDir}', base.Const.LEVEL_DETAIL)
+                    os.rename(dir2, baseDir)
+        self.enableAndStartService('mysql')
+
+    def initPhp(self):
+        '''Initializes the OS for usage of a PHP server.'
+        '''
+        phpVersion = self.shiftProgramArgument()
+        packets = 'php-fpm php-cli php-json php-curl php-imap php-gd php-mysql php-xml php-zip php-intl php-imagick '
+        packets += 'php-mbstring php-memcached memcached php-xdebug php-igbinary php-msgpack php-dom php-readline php-sqlite3'
+        if phpVersion != None:
+            if self._ubuntuVersion is not None:
+                self._processHelper.execute(
+                    ['add-apt-repository', '-y', 'ppa:ondrej/php'], True)
+                self.updateApt(True)
+            elif self._debianVersion is not None:
+                if not os.path.exists('/etc/apt/sources.list.d/php.list'):
+                    self._processHelper.executeScript(f'''#! /bin/bash
+wget -q https://packages.sury.org/php/apt.gpg -O- | sudo apt-key add -
+echo "deb https://packages.sury.org/php/ {self._osCodeName} main" | sudo tee /etc/apt/sources.list.d/php.list
+''')
+                    self.updateApt(True)
+            else:
+                self._logger.error(
+                    f'not DEBIAN, not Ubuntu. I am confused: {self._osCodeName}')
+                return
+            packets = packets.replace('-', str(phpVersion) + '-')
+            if phpVersion == '5.6':
+                packets += ' php5.6-mcrypt php5.6-opcache php5.6-sqlite3'
+        args = ['/usr/bin/apt-get', '-y', 'install'] + packets.split(' ')
+        self._processHelper.execute(args, True)
+        service = 'php{}-fpm'.format('' if phpVersion == None else phpVersion)
+        self.enableAndStartService(service)
+
+    def logFile(self, filename, messagePattern, start):
+        '''Writes metadata file size and runtime into the log.
+        @param filename: file to log
+        @param messagePattern: log message with makros %f (filename) %s (filesize) %t (filetime) and %r (runtime)
+        @param start: None or the start of the operation (for calculating runtime)
+        @return: the message (already written to log)
+        '''
+        stat = os.stat(filename)
+        size = base.StringUtils.formatSize(stat.st_size)
+        fdate = datetime.datetime.fromtimestamp(stat.st_mtime)
+        dateString = fdate.strftime("%Y.%m.%d %H:%M:%S")
+        runtime = '?' if start == None else '{:d} sec'.format(
+            int(time.time() - start))
+        msg = messagePattern.replace('%f', filename).replace(
+            '%s', size).replace('%t', dateString).replace('%r', runtime)
+        self._logger.log(msg)
+        return msg
+
+    def phpReconfigure(self):
+        '''Reconfigures PHP configuration.
+        Sets some values in the php.ini.
+        '''
+        version = self.shiftProgramArgument()
+        if not self._isRoot and not app.BaseApp.BaseApp.__underTest:
+            self.abort('be root!')
+        else:
+            source = '/etc/php/{}/php.ini'.format(version)
+            textProcessor = TextProcessor(self._logger)
+            textProcessor.readFile(source)
+            variables = self._textTool.findVariables('php.', self._configuration)
+            if version == None or version == 'all':
+                versions = os.listdir('/etc/php')
+                versions.sort()
+                for version in versions:
+                    self.phpReconfigureOne(version)
+            else:
+                if not re.match(r'^\d+\.\d+$', version):
+                    self.usage('invalid version: ' + version)
+                else:
+                    self.phpReconfigureOne(version)
+
+    def phpReconfigureOne(self, version):
+            fnConfig = '/etc/php/{}/fpm/php.ini'.format(version)
+            if not os.path.exists(fnConfig):
+                self.usage('missing {}: is version {} installed?'.format(fnConfig, version))
+            else:
+                nodes = os.listdir('/etc/php/{}'.format(version))
+                for node in nodes:
+                    fnConfig = '/etc/php/{}/{}/php.ini'.format(version, node)
+                    if os.path.exists(fnConfig):
+                        missingDebug = False
+                        configuration = base.StringUtils.fromFile(fnConfig).split('\n')
+                        if not base.StringUtils.arrayContains(configuration, 'xdebug.remote_enabled'):
+                            missingDebug = True
+                            configuration += '''
+; Ist normalerweise in xdebug-spezifischer Konfiguration, z.B. mods.d/20-xdebug
+;zend_extension="/usr/lib/php/20160303/xdebug.so"
+xdebug.remote_port=9000
+xdebug.remote_enable=Off
+xdebug.remote_handler=dbgp
+xdebug.remote_host=127.0.0.1
+;xdebug.remote_connect_back=On
+;xdebug.remote_log=/var/log/xdebug.log
+xdebug.remote_autostart=1
+'''.split('\n')
+                        content = '\n'.join(self._textTool.adaptVariables(variables, configuration))
+                        if missingDebug or self._textTool._hits > 0:
+                            self.createBackup(fnConfig)
+                            base.StringUtils.toFile(fnConfig, content)
+                            if self._verboseLevel >= 2:
+                                self._logger.log('{}: {} variable(s) changed{}'.format(
+                                    fnConfig, self._textTool._hits,
+                                    '' if not missingDebug else '\nxdebug setup added'))
+
+    def restoreDirectoryByTar(self, archive, target, opts=None, tempDir=False, subdir=None, clearTarget=True):
+        '''Restores a directory from a tar archive.
+        @param archive: archive name
+        @param target: target directory
+        @param opt: None or an array of options like '-exclude=<pattern>'
+        @param tempDir: True: usage of a temporary directory
+        @param subdir: None or a subdirectory in the TAR archive
+        @param clearTarget: True: the target directory will be cleared before extracting
+        '''
+        if not os.path.exists(archive):
+            self._logger.error('missing tar archive {}'.format(archive))
+        elif not os.path.exists(target):
+            self._logger.error('missing target dir: ' + target)
+        elif not os.path.isdir(target):
+            self._logger.error('not a directory: ' + target)
+        else:
+            start = time.time()
+            baseDir = '/tmp/restoretool'
+            tempBase = base.FileHelper.ensureDirectory(baseDir)
+            if clearTarget:
+                self.clearDirectory(target)
+            trg = target if not tempBase else os.path.join(baseDir, 'trg')
+            if tempDir:
+                base.FileHelper.ensureDirectory(trg)
+            argv = ['/bin/tar', 'xzf', archive, '--directory=' + trg]
+            if subdir != None:
+                argv.append('./' + subdir)
+            if opts != None:
+                argv += opts
+            self._processHelper.execute(
+                argv, self._logger._verboseLevel >= base.Const.LEVEL_LOOP)
+            # os.chdir(oldDir)
+            if tempDir:
+                if subdir != None:
+                    trg += os.sep + subdir
+                self._processHelper.execute(
+                    ['/usr/bin/rsync', '-a', trg + '/', target], self._logger._verboseLevel >= base.Const.LEVEL_LOOP)
+            self.logFile(archive, '%f: %s %t restored in %r', start)
+
+    def run(self):
+        '''Implements the tasks of the application
+        '''
+        if self._mainMode == 'create-user':
+            self.createUser()
+        elif self._mainMode == 'auth-keys':
+            self.authKeys()
+        elif self._mainMode == 'php-reconfigure':
+            self.phpReconfigure()
+        elif self._mainMode == 'init':
+            self.init()
+        else:
+            self.abort(
+                f'unknown mode: {self._mainMode}' if self._mainMode is not None else 'missing mode')
+
+    def updateApt(self, force=False):
+        '''Tests whether the last "apt update" command is younger than one day.
+        If not the command is executed.
+        @param force: True: the marker file will be removed: apt-get update is executed always 
+        '''
+        fnLastUpdate = base.FileHelper.tempFile('.last.apt.update')
+        if force or not os.path.exists(fnLastUpdate) or os.stat(fnLastUpdate).st_mtime < time.time() - 86400:
+            base.StringUtils.toFile(fnLastUpdate, '')
+            self._processHelper.execute(
+                ['/usr/bin/apt-get', 'update'], True)
+
+    def updatePackages(self, packages):
+        '''Installs or updates debian packages.
+        @param packages: a blank separated list of package names, e.g. 'nginx apache2'
+        '''
+        if not self._isRoot:
+            self._logger.log(f'+++ not root: ignoring update of {packages}')
+        else:
+            self.updateApt()
+            packets = packages.split(' ')
+            self._processHelper.execute(
+                ['/usr/bin/apt-get', '-y', 'install'] + packets, True)
+
+
+def main(args):
+    '''Main function.
+    @param args: the program arguments
+    '''
+    snakeboxx.startApplication()
+    application = OperatingSystemApp(args)
+    application.main()
+
+
+if __name__ == '__main__':
+    main(sys.argv[1:])
diff --git a/app/SatelliteApp.py b/app/SatelliteApp.py
new file mode 100755 (executable)
index 0000000..e0c417e
--- /dev/null
@@ -0,0 +1,534 @@
+#! /usr/bin/python3
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import sys
+import time
+import os.path
+import re
+# see snake_install.sh
+import snakeboxx
+
+import base.Const
+import base.Scheduler
+import base.FileHelper
+import net.HttpClient
+import app.BaseApp
+
+
+class CloudTaskInfo(base.Scheduler.TaskInfo):
+    '''Executes a task for the satellite.
+    '''
+
+    def __init__(self, cloud, application):
+        '''Constructor.
+        @param cloud: the full path of the cloud
+        @param application: the calling parent
+        '''
+        self._application = application
+        self._cloud = cloud
+
+    def process(self, sliceInfo):
+        '''Executes the task.
+        @param sliceInfo: the entry of the scheduler list
+        @return True: success
+        '''
+        base.StringUtils.avoidWarning(sliceInfo)
+        self._application.sendCloudInfo(self._cloud)
+
+
+class FilesystemTaskInfo(base.Scheduler.TaskInfo):
+    '''Executes a task for the satellite.
+    '''
+
+    def __init__(self, filesystem, application):
+        '''Constructor.
+        @param filesystem: the mount path of the filesystem
+        @param application: the calling parent
+        '''
+        self._application = application
+        self._filesystem = filesystem
+
+    def process(self, sliceInfo):
+        '''Executes the task.
+        @param sliceInfo: the entry of the scheduler list
+        @return True: success
+        '''
+        base.StringUtils.avoidWarning(sliceInfo)
+        self._application.sendFilesystemInfo(self._filesystem)
+
+
+class SatelliteApp(app.BaseApp.BaseApp):
+    '''REST client for WebDashFiller.
+    '''
+
+    def __init__(self, args):
+        '''Constructor.
+        @param args: the program arguments, e.g. ['test', 'a@bc.de']
+        '''
+        app.BaseApp.BaseApp.__init__(
+            self, 'SatelliteApp', args, isService=True, progName='satboxx')
+        self._clouds = None
+        self._client = None
+        self._scheduler = None
+        self._webDashServer = None
+        self._countClouds = 0
+        self._filesystems = None
+        self._countFilesystems = 0
+        self._mapFilesystems = None
+        self._rexprExcludedFilesystem = None
+        self._rexprExcludedClouds = None
+        self._stopAtOnce = False
+        self._hostname = None
+
+    def buildConfig(self):
+        '''Creates an useful configuration example.
+        '''
+        content = '''# created by SatelliteApp
+logfile=/var/log/local/satboxx.log
+wdfiller.active=true
+wdfiller.url=http://localhost:8080
+# separator ' ': possible modes cloud filesystem stress
+wdfiller.kinds=cloud
+# interval between 2 send actions in seconds
+wdfiller.cloud.interval=600
+wdfiller.cloud.data.directory=/opt/clouds
+wdfiller.cloud.main.directory=/opt/clouds
+wdfiller.cloud.excluded=cloud.test|cloud.huber.de
+wdfiller.filesystem.interval=600
+wdfiller.filesystem.excluded=/mnt/|/media/usb
+#wdfiller.filesystem.map=/:root,/tmp/fs.system:fs.system
+#wdfiller.filesystem.map=
+wdfiller.stress.interval=120
+hostname=caribou
+'''
+        self.buildStandardConfig(content)
+
+    def buildUsage(self):
+        '''Builds the usage message.
+        '''
+        self._usageInfo.appendDescription('''APP-NAME <global-opts> <mode> [<opts>]
+ Sends data via REST to some servers. Possible servers are WebDashFiller and Monitor.
+''')
+        self._usageInfo.addMode('test', '''test <kind> [<count> [<interval>]]
+ <kind>: 'cloud', 'filesystem' or 'stress'
+ <count>: number of send actions, default: 1
+ <interval>: time between two send actions in seconds, default: 1
+''', '''APP-NAME test cloud 3 5
+''')
+        del self._usageInfo._descriptions['daemon']
+        self._usageInfo.addMode('daemon', '''daemon <servicename> [<options>]
+ <servicename>: the name of the SystemD service
+''', '''APP-NAME daemon satbutt --count=1 --interval=2
+''')
+
+    def buildUsageOptions(self, mode=None, subMode=None):
+        '''Adds the options for a given mode.
+        @param mode: None or the mode for which the option is added
+        '''
+        def add(mode, opt):
+            self._usageInfo.addModeOption(mode, opt)
+
+        base.StringUtils.avoidWarning(subMode)
+        if mode is None:
+            mode = self._mainMode
+        if mode == 'test':
+            self._usageInfo.addModeOption(mode)
+        elif mode == 'daemon':
+            add(mode, base.UsageInfo.Option('count', 'c',
+                                            'number of rounds: in one round all cloud state infos will be sent default: forever', 'int'))
+            add(mode, base.UsageInfo.Option('interval', 'i',
+                                            'time (seconds) between two send rounds: default: see configuration file', 'int'))
+
+    def cloudInit(self, startAtOnce=False, count=None, interval=None):
+        '''Initializes the cloud sending actions.
+        For each cloud: an task to send the cloud info will be inserted into the scheduler list.
+        @param startAtOnce: True: the cloud infos will be sent at once too
+        @param count: None or the number of rounds
+        @param interval: the time of a round in seconds
+        '''
+        self.prepareClouds()
+        interval = self._configuration.getInt(
+            'wdfiller.cloud.interval', 600) if interval is None else interval
+        self._logger.log('cloudInit: interval: {}'.format(
+            interval), base.Const.LEVEL_SUMMARY)
+        no = 0
+        while True:
+            no += 1
+            cloud = self.nextCloud()
+            if cloud is None:
+                break
+            taskInfo = CloudTaskInfo(cloud, self)
+            sliceInfo = base.Scheduler.SliceInfo(
+                taskInfo, self._scheduler, count, interval, 0.1)
+            self._scheduler.insertSlice(sliceInfo, int(
+                interval * no / self._countClouds), 0.0)
+            if startAtOnce:
+                taskInfo.process(sliceInfo)
+            timestamp = time.strftime(
+                '%H:%M:%S', time.localtime(sliceInfo._nextCall))
+            self._logger.log('cloud: {} start: {}'.format(
+                cloud, timestamp), base.Const.LEVEL_LOOP)
+
+    def filesystemInit(self, startAtOnce=False, count=None, interval=None):
+        '''Initializes the filesystem sending actions.
+        For each cloud: an task to send the cloud info will be inserted into the scheduler list.
+        @param startAtOnce: True: the cloud infos will be sent at once too
+        @param count: None or the number of rounds
+        @param interval: the time of a round in seconds
+        '''
+        self.prepareFilesystems()
+        interval = self._configuration.getInt(
+            'wdfiller.filesystem.interval', 600) if interval is None else interval
+        self._logger.log('filesystemInit: interval: {}'.format(
+            interval), base.Const.LEVEL_SUMMARY)
+        no = 0
+        while True:
+            no += 1
+            fs = self.nextFilesystem()
+            if fs is None:
+                break
+            taskInfo = FilesystemTaskInfo(fs, self)
+            sliceInfo = base.Scheduler.SliceInfo(
+                taskInfo, self._scheduler, count, interval, 0.1)
+            self._scheduler.insertSlice(sliceInfo, int(
+                interval * no / self._countFilesystems), 0.0)
+            if startAtOnce:
+                taskInfo.process(sliceInfo)
+            timestamp = time.strftime(
+                '%H:%M:%S', time.localtime(sliceInfo._nextCall))
+            self._logger.log('filesystem: {} start: {}'.format(
+                fs, timestamp), base.Const.LEVEL_LOOP)
+
+    def daemon(self):
+        '''Runs the service, a never ending loop, processing the time controlled scheduler.
+        '''
+        serviceName = self.shiftProgramArgument()
+        if serviceName is None:
+            self.abort('missing <servicename>')
+        elif self.handleOptions():
+            base.FileHelper.ensureDirectory(
+                os.path.dirname(self.reloadRequestFile(serviceName)))
+            self._scheduler = base.Scheduler.Scheduler(self._logger)
+            self._webDashServer = self._configuration.getString(
+                'wdfiller.url', 'http://localhost')
+            self._client = net.HttpClient.HttpClient(self._logger)
+            count = self._optionProcessor.valueOf('count')
+            interval = self._optionProcessor.valueOf('interval')
+            kinds = self._configuration.getString('wdfiller.kinds', '')
+            if kinds.find('cloud') >= 0:
+                self.cloudInit(True, count, interval)
+            if kinds.find('filesystem') >= 0:
+                self.filesystemInit(True, count, interval)
+            self._stopAtOnce = False
+            fileReloadRequest = self.reloadRequestFile(serviceName)
+            while not self._stopAtOnce:
+                hasRequest = fileReloadRequest is not None and os.path.exists(
+                    fileReloadRequest)
+                if hasRequest:
+                    if not self.handleReloadRequest(fileReloadRequest):
+                        fileReloadRequest = None
+                self._scheduler.checkAndProcess()
+                if not self._scheduler._slices:
+                    self._logger.log(
+                        'daemon: empty list: stopped', base.Const.LEVEL_SUMMARY)
+                    self._stopAtOnce = True
+                time.sleep(1)
+            self._logger.log('daemon regulary stopped',
+                             base.Const.LEVEL_SUMMARY)
+
+    def infoOfCloud(self, path):
+        '''Collects the state data of a cloud given by the path.
+        @param path: the base directory of the cloud
+        @return: the state info as a JSON map
+        '''
+        curDir = os.curdir
+        os.chdir(path)
+        nodes = os.listdir('data')
+        users = ''
+        count = 0
+        for node in nodes:
+            if (os.path.isdir('data/' + node) and not node.startswith('appdata_')
+                    and not node.startswith('updater.') and not node.startswith('updater-')
+                    and node != 'files_external'):
+                users += ' ' + node
+                count += 1
+        logs = ''
+        fnLog = 'data/nextcloud.log'
+        if os.path.exists(fnLog):
+            lines = []
+            maxCount = 5
+            with open(fnLog, 'r') as fp:
+                lineNo = 0
+                for line in fp:
+                    lineNo += 1
+                    if len(lines) >= maxCount:
+                        del lines[0]
+                    lines.append(line)
+            for ix in range(len(lines)):
+                line = lines[len(lines) - ix - 1].strip().replace('"', "'")
+                logs += '{}: '.format(lineNo - ix) + line + '\\n\\n'
+        users = '[{}]:'.format(count) + users
+        self._processHelper.execute(
+            ['hmdu', '.', 'data', 'files_trashbin'], False, True)
+        duInfo = self._processHelper._output
+        # = files: 100 / 6 with 0.002999 MB / 0.000234 MB dirs: 25 / 3 ignored: 0/0 in cloud_1
+        # = youngest: 2020.04.01-00:16:45 cloud_1/data/admin/dir_1/file1.txt
+        # = oldest:   2020.04.01-00:11:27 cloud_1/data/nextcloud.log
+        # = largest:  0.000068 MB cloud_1/data/nextcloud.log
+        # = trash:
+        # = youngest: 2020.04.01-00:14:35 cloud_1/data/admin/files_trashbin/f2.txt
+        # = oldest:   2020.04.01-00:14:28 cloud_1/data/admin/files_trashbin/f1.txt
+        # = largest:  0.000039 MB cloud_1/data/admin/files_trashbin/f1.txt
+        info = '\\n'.join(duInfo)
+        date = time.strftime('%Y-%m-%dT%H:%M:%S', time.localtime(time.time()))
+        content = base.StringUtils.fromFile(path + os.sep + '.fs.size')
+        total = int('64' if content == '' else content.strip()
+                    [0:-1]) * 1024 * 1024 * 1024
+        # ............................1...1...2...2......3......3......4......4..........5...5...6...6
+        matcher = re.match(
+            r'= files: (\d+) / (\d+) with ([\d.]+) MB / ([\d.]+) MB dirs: (\d+) / (\d+)', duInfo[0])
+        used = int(float(matcher.group(3)) * 1E6)
+        free = int(float(matcher.group(4)) * 1E6)
+        fnConfig = (self._configuration.getString('wdfiller.cloud.main.directory') + os.sep
+                    + os.path.basename(path) + '/config/config.php')
+        version = ''
+        if os.path.exists(fnConfig):
+            version1 = base.StringUtils.grepInFile(fnConfig, re.compile(
+                re.compile(r"^\s*'version'\s*=>\s*'([\d.]+)")), 1, 1)
+            if version1:
+                version = version1[0]
+        rc = '''{}
+"host": "{}",
+"name": "{}",
+"date": "{}",
+"total": {},
+"used": {},
+"free": {},
+"trash": {},
+"trashDirs": {},
+"trashFiles": {},
+"users": "{}",
+"info": "{}",
+"log": "{}",
+"version": "{}"
+{}
+'''.format('{', self._hostname, os.path.basename(path), date, total, used, total - used, free,
+           int(matcher.group(6)), int(matcher.group(2)), users, info, logs, version, '}')
+        os.chdir(curDir)
+        return rc
+
+    def infoOfFilesystem(self, path):
+        '''Collects the state data of a filesystem given by the path.
+        @param path: the base directory of the cloud
+        @return: the state info as a JSON map
+        '''
+        info = base.LinuxUtils.diskInfo(path)
+        if info is None:
+            rc = None
+        else:
+            name = info[0]
+            if path in self._mapFilesystems:
+                name = self._mapFilesystems[path] if self._mapFilesystems[path] != '' else name
+            elif path.startswith('/media/'):
+                name = path[7:]
+            elif path == '/':
+                name = 'root'
+            # info:..path, total, free, available
+            total, available = info[1], info[3]
+            used = total - available
+            rc = '{} "date": "{}", "host": "{}", "name": "{}", "total": {}, "used": {}, "free": {} {}'.format(
+                '{', time.strftime('%Y-%m-%dT%H:%M:%S',
+                                   time.localtime(time.time())),
+                self._hostname, name, total, used, available, '}')
+        return rc
+
+    def install(self):
+        '''Installs the application and the related service.
+        '''
+        app.BaseApp.BaseApp.install(self)
+        self.createSystemDScript('satboxx', 'satboxx', 'satboxx',
+                                 'satboxx', 'satboxx: sends data via REST to servers')
+        self.installAsService('satboxx', True)
+
+    def nextCloud(self):
+        '''Returns the info of the next cloud.
+        @return: None: no cloud available otherwise: the info about the next cloud
+        '''
+        if self._clouds is None:
+            base1 = self._configuration.getString(
+                'wdfiller.cloud.data.directory')
+            self._clouds = []
+            if base1 is not None:
+                nodes = os.listdir(base1)
+                for node in nodes:
+                    full = base1 + os.sep + node
+                    if os.path.isdir(full) and (self._rexprExcludedClouds is None or not self._rexprExcludedClouds.search(node)):
+                        self._clouds.append(full)
+            self._countClouds = len(self._clouds)
+        rc = None
+        if self._clouds:
+            rc = self._clouds[0]
+            del self._clouds[0]
+        return rc
+
+    def nextFilesystem(self):
+        '''Returns the info of the next filesystem.
+        @return: None: no forther filesystem is available otherwise: the info about the filesystem
+        '''
+        if self._filesystems is None:
+            self._filesystems = []
+            fsList = base.LinuxUtils.disksMounted(self._logger)
+            for fsInfo in fsList:
+                mount = fsInfo
+                if self._rexprExcludedFilesystem is None or self._rexprExcludedFilesystem.search(mount):
+                    continue
+                self._filesystems.append(fsInfo)
+            self._countFilesystems = len(self._filesystems)
+        rc = None
+        if self._filesystems:
+            rc = self._filesystems[0]
+            del self._filesystems[0]
+        return rc
+
+    def prepareClouds(self):
+        '''Prepares some data taken from the configuration file.
+        '''
+        excluded = self._configuration.getString('wdfiller.cloud.excluded')
+        if excluded is not None and excluded != '':
+            try:
+                self._logger.log('clouds: excluded: ' +
+                                 excluded, base.Const.LEVEL_LOOP)
+                self._rexprExcludedClouds = re.compile(excluded)
+            except Exception as exc:
+                self._logger.error('wrong regular expr in "wdfiller.cloud.excluded": {} [{}]'.format(
+                    str(exc), str(type(exc))))
+
+    def prepareFilesystems(self):
+        '''Prepares some data taken from the configuration file.
+        '''
+        self._mapFilesystems = {}
+        value = self._configuration.getString('wdfiller.filesystem.map', '')
+        if value != '':
+            fsMapping = value.split(',')
+            for item in fsMapping:
+                parts = item.split(':')
+                if len(parts) == 2:
+                    self._mapFilesystems[parts[0]] = parts[1]
+                else:
+                    self._logger.error(
+                        'wdfiller.filesystem.map has wrong syntax: ' + value)
+        excluded = self._configuration.getString(
+            'wdfiller.filesystem.excluded')
+        if excluded is not None and excluded != '':
+            try:
+                self._logger.log('filesystems: excluded: ' +
+                                 excluded, base.Const.LEVEL_LOOP)
+                self._rexprExcludedFilesystem = re.compile(excluded)
+            except Exception as exc:
+                self._logger.error('wrong regular expr in "wdfiller.filesystem.excluded": {} [{}]'.format(
+                    str(exc), str(type(exc))))
+
+    def run(self):
+        '''Implements the tasks of the application
+        '''
+        self._hostname = self._configuration.getString('hostname', '<host>')
+        if self._mainMode == 'test':
+            self.test()
+        elif self._mainMode == 'daemon':
+            self.daemon()
+        else:
+            self.abort('unknown mode: ' + self._mainMode)
+
+    def sendCloudInfo(self, pathCloud):
+        '''Sends the cloud state info to the REST server.
+        @param pathCloud: the full path of the cloud directory
+        '''
+        self._logger.log('sending cloud info to ' +
+                         self._webDashServer, base.Const.LEVEL_LOOP)
+        self._client.putSimpleRest(
+            self._webDashServer, 'cloud', 'db', self.infoOfCloud(pathCloud))
+
+    def sendFilesystemInfo(self, pathFilesystem):
+        '''Sends the cloud state info to the REST server.
+        @param pathFilesystem: the mount path of the filesystem
+        '''
+        self._logger.log('sending fs info to ' +
+                         self._webDashServer, base.Const.LEVEL_LOOP)
+        info = self.infoOfFilesystem(pathFilesystem)
+        if info is None:
+            self._logger.log('info not available: ' +
+                             pathFilesystem, base.Const.LEVEL_LOOP)
+        else:
+            self._client.putSimpleRest(self._webDashServer, 'fs', 'db', info)
+
+    def test(self):
+        '''Tests a function.
+        '''
+        kind = self.shiftProgramArgument()
+        count = base.StringUtils.asInt(self.shiftProgramArgument('1'))
+        interval = base.StringUtils.asInt(self.shiftProgramArgument('1'))
+        if kind is None:
+            self.abort('missing kind')
+        elif count is None:
+            self.abort('<count> is not an integer')
+        elif interval is None:
+            self.abort('<interval> is not an integer')
+        elif self.handleOptions():
+            for ix in range(count):
+                if kind == 'cloud':
+                    self.testCloud(count, interval)
+                elif kind in ('filesystem', 'fs'):
+                    self.testFilesystems(count, interval)
+                else:
+                    self.abort('unknown kind: ' + kind)
+                    break
+                time.sleep(interval)
+            base.StringUtils.avoidWarning(ix)
+
+    def testCloud(self, count, interval):
+        '''Sends a limited count of cloud infos for test purposes.
+        '''
+        self.prepareClouds()
+        self._webDashServer = self._configuration.getString(
+            'wdfiller.url', 'http://localhost')
+        self._client = net.HttpClient.HttpClient(self._logger)
+        for ix in range(count):
+            cloud = self.nextCloud()
+            if cloud is None:
+                continue
+            else:
+                self.sendCloudInfo(cloud)
+            time.sleep(interval)
+        base.StringUtils.avoidWarning(ix)
+
+    def testFilesystems(self, count, interval):
+        '''Sends a limited count of cloud infos for test purposes.
+        '''
+        self.prepareFilesystems()
+        self._webDashServer = self._configuration.getString(
+            'wdfiller.url', 'http://localhost')
+        self._client = net.HttpClient.HttpClient(self._logger)
+        for ix in range(count):
+            fs = self.nextFilesystem()
+            if fs is None:
+                continue
+            else:
+                self.sendFilesystemInfo(fs)
+            time.sleep(interval)
+        base.StringUtils.avoidWarning(ix)
+
+
+def main(args):
+    '''Main function.
+    @param args: the program arguments
+    '''
+    snakeboxx.startApplication()
+    application = SatelliteApp(args)
+    application.main()
+
+
+if __name__ == '__main__':
+    main(sys.argv[1:])
diff --git a/app/SpecialApp.py b/app/SpecialApp.py
new file mode 100755 (executable)
index 0000000..56d6991
--- /dev/null
@@ -0,0 +1,369 @@
+#! /usr/bin/python3
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import sys
+import time
+import shutil
+import os.path
+# see snake_install.sh
+import snakeboxx
+
+import base.FileHelper
+import app.BaseApp
+
+
+class GeoAtBuilder:
+    '''Builds the import file for the table geo with Austrian data.
+    Glossar:
+    NUTS: Nomenclature des unités territoriales statistiques
+        Hierarchical structure of "political regions" with 3 Levels
+    '''
+
+    def __init__(self, logger):
+        '''Constructor.
+        @param logger: for logging
+        '''
+        self._logger = logger
+        #
+        self._fnGemeinden = 'gemliste_knz.csv'
+        self._fnLaender = 'nuts_3.csv'
+        self._fnPolitischeBezirke = 'polbezirke.csv'
+        # id -> name, e.g. "1" -> "Burgenland"
+        self._mapLand = {}
+        # id => name, e.g. "101" -> "Eisenstadt(Stadt)"
+        self._mapPolitischerBezirk = {}
+        # gemeindenr (ags) => name, e.g. 10512 => 'Südburgenland'
+        self._mapTeilland = {}
+        # name => NUTS-3, e.g. "Nordburgenland" => "AT112"
+        self._mapNutsTeilland = {}
+        # ags => name, e.g. 10512 => 'Mühlgraben'
+        self._mapGemeinde = {}
+
+    def readNuts(self):
+        '''Creates the maps _mapLand and _mapPolitischerBezierk from _fnPolitischeBezirke and _mapTeilland from _fnLaender
+        '''
+        with open(self._fnLaender, 'r') as fp:
+            lineNo = 0
+            expected = 'NUTS 3-Code;NUTS 3- Name;LAU 2 - Code Gemeinde- kennziffer'
+            for line in fp:
+                lineNo += 1
+                if lineNo == 3 and not line.startswith(expected):
+                    msg = 'wrong file format:\n{}\nexpected:\n{}'.format(
+                        line, expected)
+                    self._logger.error(msg)
+                    raise ValueError(msg)
+                if lineNo < 4:
+                    continue
+                if line.startswith(';;;') or line.startswith('Q: STATISTIK AUSTRIA'):
+                    continue
+                # NUTS 3-Code;NUTS 3-
+                # Name;Gemeindekennziffer;Gemeindename;Fläche;Bevölkerungszahl
+                cols = line.strip().split(';')
+                if len(cols) < 5:
+                    self._logger.error('unknown input: ' + line)
+                    continue
+                ags = int(cols[2])
+                self._mapTeilland[ags] = cols[1]
+                self._mapGemeinde[ags] = cols[3]
+                self._mapNutsTeilland[cols[1]] = cols[0]
+        with open(self._fnPolitischeBezirke, 'r') as fp:
+            lineNo = 0
+            expected = 'Bundeslandkennziffer;Bundesland;Kennziffer pol. Bezirk'
+            for line in fp:
+                lineNo += 1
+                if lineNo == 3 and not line.startswith(expected):
+                    msg = 'wrong file format:\n{}\nexpected:\n{}'.format(
+                        line, expected)
+                    self._logger.error(msg)
+                    raise ValueError(msg)
+                if lineNo < 4:
+                    continue
+                cols = line.strip().split(';')
+                if len(cols) < 5:
+                    if not line.startswith('Quelle: STATISTIK AUSTRIA'):
+                        self._logger.error('unknown input: ' + line)
+                else:
+                    idPolitischerBezirk = int(cols[4])
+                    self._mapPolitischerBezirk[idPolitischerBezirk] = cols[3]
+                    if cols[2] != cols[4]:
+                        self._logger.log('different codes: {} {} {}'.format(
+                            cols[2], cols[4], cols[3]))
+            self._logger.log(
+                'Land: {} Teilland: {} Pol. Bezirk: {}'.format(len(self._mapLand.keys()),
+                                                               len(self._mapTeilland.keys(
+                                                               )),
+                                                               len(self._mapPolitischerBezirk.keys())))
+
+    def createGeoAt(self):
+        '''Creates the geo_at.csv from _fnGemeinden
+        '''
+        with open('geo_at.sql', 'w') as fpOut, open(self._fnGemeinden, 'r') as fpIn:
+            fpOut.write('''insert into geo (geo_id,geo_staat,geo_land,geo_landnuts,geo_bezirk,geo_bezirknuts,geo_kreis,
+  geo_kreisnuts,geo_gemeinde,geo_ort,geo_gemeindeags,geo_plz) VALUES
+''')
+            lineNo = 0
+            written = 0
+            for line in fpIn:
+                lineNo += 1
+                if lineNo == 3 and not line.startswith('Gemeindekennziffer;Gemeindename;'):
+                    self._logger.error(
+                        'missing Gemeindekennziffer;Gemeindename: ' + line)
+                    raise ValueError(
+                        'wrong file format: ' + self._fnGemeinden)
+                if lineNo < 4:
+                    continue
+                # Gemeindekennziffer;Gemeindename;Gemeindecode;Status;PLZ
+                # desGem.Amtes;weitere Postleitzahlen
+                cols = line.strip().split(';')
+                if len(cols) < 6:
+                    if not line.startswith('Quelle: STATISTIK AUSTRIA'):
+                        self._logger.error('unknown input: ' + line)
+                else:
+                    ags = int(cols[2])
+                    # NUTS level 2: "Bundesland"
+                    idLand = ags // 10000
+                    id2Land = 1200 + idLand
+                    # NUTS level 3: Teilland"
+                    teillandName = self._mapTeilland[ags] if ags in self._mapTeilland else ''
+                    if teillandName == '':
+                        if ags in [61060, 61061]:
+                            teillandName = self._mapTeilland[61059]
+                        elif ags >= 90001:
+                            teillandName = self._mapTeilland[90001]
+                        else:
+                            self._logger.error(
+                                f'missing teilland in map: {ags}')
+                    nutsTeilland = self._mapNutsTeilland[teillandName] if teillandName in self._mapNutsTeilland else ''
+                    # Kreis: politischer Bezirk
+                    idPolitischerBezirk = ags // 100
+                    namePolitischerBezirk = (self._mapPolitischerBezirk[idPolitischerBezirk]
+                                             if idPolitischerBezirk in self._mapPolitischerBezirk else '')
+                    if namePolitischerBezirk == '':
+                        self._logger.error(
+                            f'missing PolitischerBezirk for {idPolitischerBezirk}')
+                    info1 = (f",'at',{id2Land},'AT{idLand}','{teillandName}','{nutsTeilland}',"
+                             + f"'{namePolitischerBezirk}','{idPolitischerBezirk}','{cols[1]}','{cols[1]}',{ags},")
+                    info = info1 + f'{cols[4]})'
+                    primary = 20000001 + ags * 100
+                    written += 1
+                    if written > 1:
+                        fpOut.write(',\n')
+                    fpOut.write('(' + str(primary) + info)
+                    for aZip in cols[5].split(' '):
+                        if aZip == '':
+                            continue
+                        primary += 1
+                        written += 1
+                        fpOut.write(',\n(' + str(primary) + info1 + aZip + ')')
+            fpOut.write('\n;')
+            self._logger.log(f'written: geo_at.sql: {written} recs')
+        fn = 'ImportGeo.sh'
+        base.StringUtils.toFile(fn, '''#! /bin/bash
+if [ "$3" = "" ]; then
+  echo "Usage: ImportGeo.sh DB USER DB
+  echo "Example: ImportGeo.sh appcovidmars covidmars TopSecret"
+else
+  test geo.csf && rm geo.csv
+  ln -s geo_at.csv geo.csv
+  mysqlimport --ignore-lines=1 --fields-terminated-by=, --local \
+  --columns=geo_id,geo_staat,geo_land,geo_bezirk,geo_kreis,geo_gemeindeags,geo_gemeinde,geo_plz \
+  -u $2 "-p$3" $1  geo.csv
+fi
+''', fileMode=0o777)
+        self._logger.log('written: {} usage: {} DB USER PW'.format(fn, fn))
+
+    def check(self):
+        '''Checks the preconditions.
+        @return: True: success
+        '''
+        rc = True
+        if not os.path.exists(self._fnGemeinden):
+            rc = self._logger.error('missing file ' + self._fnGemeinden)
+        if not os.path.exists(self._fnLaender):
+            rc = self._logger.error('missing file ' + self._fnLaender)
+        if not os.path.exists(self._fnPolitischeBezirke):
+            rc = self._logger.error(
+                'missing file ' + self._fnPolitischeBezirke)
+        return rc
+
+    def buildImport(self):
+        '''Builds the CSV file for importing the geo data.
+        '''
+        if self.check():
+            self.readNuts()
+            self.createGeoAt()
+
+
+class SpecialApp(app.BaseApp.BaseApp):
+    '''Special task solver.
+    '''
+
+    def __init__(self, args):
+        '''Constructor.
+        @param args: the program arguments, e.g. ['test', 'a@bc.de']
+        '''
+        app.BaseApp.BaseApp.__init__(
+            self, 'SpecialApp', args, None, 'specboxx')
+        self._hostname = None
+
+    def buildConfig(self):
+        '''Creates an useful configuration example.
+        '''
+        content = '''# created by SpecialApp
+logfile=/var/log/local/specboxx.log
+'''
+        self.buildStandardConfig(content)
+
+    def buildUsage(self):
+        '''Builds the usage message.
+        '''
+        self._usageInfo.appendDescription('''APP-NAME <global-opts> <mode> [<opts>]
+ Convert file(s) into other.
+''')
+        self._usageInfo.addMode('init-project', '''init-project <project> [<base-project>]
+ Initializes a PHP project using "skeleton".
+ <project>: the project name
+ <base-project>: the base project. Default: skeleton
+ ''', '''APP-NAME init-project webmonitor
+''')
+        self._usageInfo.addMode('geo-at', '''geo-at
+ Builds the geodb data of Austria.
+ ''', '''APP-NAME geo-at
+''')
+        self._usageInfo.addMode('copy-firefox', '''copy-firefox <source> <target>
+ Copies the secrets and favorites of a firefox profile into another profile.
+  <source> the source profile (a directory)
+  <target> the target profile (a directory)
+ ''', '''APP-NAME copy-firefox /media/backup/.mozilla/firefox/yw98aaen.default-release x6ytqd3w.default-release-2
+''')
+
+    def buildUsageOptions(self, mode=None, subMode=None):
+        '''Adds the options for a given mode.
+        @param mode: None or the mode for which the option is added
+        @param subMode: None or the submode for which the option is added
+        '''
+        # def add(mode, opt):
+        #    self._usageInfo.addModeOption(mode, opt)
+
+        base.StringUtils.avoidWarning(subMode)
+        if mode is None:
+            mode = self._mainMode
+        if mode == 'init-project':
+            self._usageInfo.addModeOption(mode)
+        elif mode == 'geo-at':
+            self._usageInfo.addModeOption(mode)
+        elif mode == 'copy-firefox':
+            self._usageInfo.addModeOption(mode)
+
+    def copyFirefox(self):
+        '''Copies secrets and bookmarks from one firefox profile to another.
+        '''
+        def isMissing(names, source):
+            rc = False
+            for item in names:
+                rc2 = not os.path.exists(os.path.join(source, item))
+                if rc2:
+                    rc = False
+                    self._logger.error(f'missing {source}/{item}')
+            return rc
+        def copy(aFile, source, target):
+            src = os.path.join(source, aFile)
+            trg = os.path.join(target, aFile)
+            if os.path.exists(trg):
+                trg2 = trg + f'.{int(time.time())}'
+                self._logger.log(f'saving {trg} as {trg2}...', base.Const.LEVEL_DETAIL)
+                os.rename(trg, trg2)
+            shutil.copy(src, trg)
+        source = self.shiftProgramArgument()
+        target = self.shiftProgramArgument()
+        names = 'key4.db places.sqlite favicons.sqlite logins.json'.split(' ')
+        if self.handleOptions():
+            if target is None:
+                self.abort('missing arguments')
+            elif not os.path.isdir(source):
+                self.abort(f'source is not a directory: {source}')
+            elif not os.path.isdir(source):
+                self.abort(f'target is not a directory: {target}')
+            elif isMissing(names, source):
+                self.abort(f'not a true profile directory: {source}')
+            elif not os.path.exists(os.path.join(target, 'key4.db')):
+                self.abort(f'target {target} is not a profile: missing key4.db')
+            else:
+                for item in names:
+                    copy(item, source, target)
+
+    def geoAt(self):
+        '''Builds an import file for the db table geo with Austrian data.
+        '''
+        if self.handleOptions():
+            builder = GeoAtBuilder(self._logger)
+            builder.buildImport()
+
+    def initProject(self):
+        '''Initializes a PHP project using "skeleton".
+        '''
+        projName = self.shiftProgramArgument()
+        baseProject = self.shiftProgramArgument('skeleton')
+        if projName is None:
+            self.argumentError('missing <project>')
+        elif not os.path.isdir(baseProject):
+            self.argumentError(
+                'project "{}" must be in the current directory'.format(baseProject))
+        elif os.path.isdir(projName):
+            self.argumentError('project "{}" already exists'.format(projName))
+        elif self.handleOptions():
+            fnFileStructure = '{}/tools/templates/project.structure.txt'.format(baseProject)
+            if not os.path.exists(fnFileStructure):
+                self.abort('missing ' + fnFileStructure)
+            base.FileHelper.setLogger(self._logger)
+            structure = base.StringUtils.fromFile(
+                fnFileStructure).replace('${proj}', projName).split('\n')
+            base.FileHelper.copyByRules(structure, baseProject, projName)
+            msg = '''# run as root:
+cat <<EOS >/etc/snakeboxx/webapps.d/PROJ.dev
+db=appPROJ
+user=PROJ
+password=PROJ4PROJ
+sql.file=PROJ_appPROJ
+directory=/home/ws/php/PROJ
+excluded=
+EOS
+#
+dbboxx create-db-and-user appPROJ PROJ PROJ4PROJ
+grep PROJ.dev /etc/hosts || echo >>/etc/hosts "127.0.0.10 PROJ.dev"
+FN=/etc/nginx/sites-available/PROJ.dev
+perl -p -e 's/%project%/PROJ/g;' skeleton/tools/templates/nginx.project.dev > $FN
+ln -s "../sites-available/PROJ.dev" /etc/nginx/sites-enabled/PROJ.dev
+head $FN
+dbboxx import-webapp PROJ.dev skeleton/tools/templates/empty_db.sql.gz
+'''.replace('PROJ', projName)
+            print(msg)
+
+    def run(self):
+        '''Implements the tasks of the application
+        '''
+        self._hostname = self._configuration.getString('hostname', '<host>')
+        if self._mainMode == 'init-project':
+            self.initProject()
+        elif self._mainMode == 'geo-at':
+            self.geoAt()
+        elif self._mainMode == 'copy-firefox':
+            self.copyFirefox()
+        else:
+            self.abort('unknown mode: ' + self._mainMode)
+
+
+def main(args):
+    '''Main function.
+    @param args: the program arguments
+    '''
+    snakeboxx.startApplication()
+    application = SpecialApp(args)
+    application.main()
+
+
+if __name__ == '__main__':
+    main(sys.argv[1:])
diff --git a/app/SunMonitor.py b/app/SunMonitor.py
new file mode 100644 (file)
index 0000000..e5c87f0
--- /dev/null
@@ -0,0 +1,78 @@
+'''
+Created on 26.06.2022
+
+@author: wk
+'''
+import sys
+import os.path
+import time
+import fnmatch
+import snakeboxx
+
+
+import base.DirTraverser
+import base.FileHelper
+import net.HttpClient
+import app.BaseApp
+from typing import Sequence
+
+
+class SunMonitorApp(app.BaseApp.BaseApp):
+    def __init__(self, args: Sequence[str]):
+        '''Constructor.
+        @param args: the program arguments, e.g. ['daemon', 'a@bc.de']
+        '''
+        app.BaseApp.BaseApp.__init__(self, 'SunMonitorApp', args, None, 'sunboxx')
+        self._url = None
+        self._
+        
+
+    def buildConfig(self):
+        '''Creates an useful configuration example.
+        '''
+        content = '''# created by EMailApp
+url.sun=http://sun/rpc
+db.name=appsunmonitor
+db.user=Jonny
+db.password=TopSecret
+data.directory=/opt/sunmonitor
+'''
+        self.buildStandardConfig(content)
+
+    def buildUsage(self):
+        '''Builds the usage message.
+        '''
+        self._usageInfo.appendDescription('''APP-NAME <global-opts> <mode> [<options>]
+ Request and store the photovoltaics statistics in a loop (multiple times).
+''')
+        self._usageInfo.addMode('daemon', '''statistic <opts>
+ Assemble the data and store it in files or db.
+ ''', '''APP-NAME daemon
+APP-NAME daemon
+''')
+        self._usageInfo.addMode('status', '''status <opts>
+ Show the current status
+ ''', '''APP-NAME daemon
+APP-NAME status
+''')
+
+    def fetchStatus(self):
+        '''Fetch the status from the Shelly box.
+        '''
+        client = net.HttpClient(self._logger)
+        client.
+    def run(self):
+        '''Implements the tasks of the application.
+        '''
+        if self._mainMode == 'daemon':
+            self.daemon()
+        elif self._mainMode == 'status':
+            self.status()
+        else:
+            self.abort('unknown mode: ' + self._mainMode)
+    def status(self):
+        '''Shows the current status.
+        '''
+        
+if __name__ == '__main__':
+    pass
\ No newline at end of file
diff --git a/app/TextApp.py b/app/TextApp.py
new file mode 100755 (executable)
index 0000000..db8ccac
--- /dev/null
@@ -0,0 +1,693 @@
+#! /usr/bin/python3
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import sys
+import os
+import re
+# see snake_install.sh
+import snakeboxx
+
+import base.CsvProcessor
+import base.TextProcessor
+import base.DirTraverser
+import app.BaseApp
+
+
+class OptionsExecuteRules:
+    '''Options for the mode execute-rules.
+    '''
+
+    def __init__(self):
+        '''Constructor.
+        '''
+        self.maxLoop = 1
+        self.backup = None
+
+
+class OptionsGrep:
+    '''Options for the mode grep
+    '''
+
+    def __init__(self):
+        '''Constructor.
+        '''
+        self.wordOnly = False
+        self.group = None
+        self.lineNumber = False
+        self.ignoreCase = False
+        self.invertMatch = False
+        self.formatFile = None
+        self.formatLine = None
+        self.belowContext = None
+        self.aboveContext = None
+        self.belowChars = None
+        self.aboveChars = None
+
+
+class OptionsInsertOrReplace:
+    '''Options for the mode insert-or-replace
+    '''
+
+    def __init__(self):
+        '''Constructor.
+        '''
+        self.ignoreCase = False
+        self.anchor = None
+        self.above = False
+        self.backup = None
+
+
+class OptionsReplace:
+    '''Options for the mode replace
+    '''
+
+    def __init__(self):
+        '''Constructor.
+        '''
+        self.ignoreCase = False
+        self.backupExtensions = None
+        self.prefixBackref = None
+        self.wordOnly = None
+        self.rawString = False
+        self.escActive = False
+
+
+class TextApp(app.BaseApp.BaseApp):
+    '''Performs some tasks with text files: searching, modification...
+    '''
+
+    def __init__(self, args):
+        '''Constructor.
+        @param args: the program arguments, e.g. ['test', 'a@bc.de']
+        '''
+        app.BaseApp.BaseApp.__init__(self, 'TextApp', args, None, 'textboxx')
+        self._processor = None
+        self._traverser = None
+        self._hostname = None
+
+    def buildConfig(self):
+        '''Creates an useful configuration example.
+        '''
+        content = '''# created by TextApp
+logfile=/var/log/local/textboxx.log
+'''
+        self.buildStandardConfig(content)
+
+    def buildUsage(self):
+        '''Builds the usage message.
+        '''
+        self._usageInfo.appendDescription('''APP-NAME <global-opts> <mode> [<opts>]
+ Searching and modifying in text files.
+''')
+        self._usageInfo.addMode('describe-csv', '''describe-csv
+ Describes the syntax and the usage of the CSV mode.
+ ''', '''APP-NAME describe-csv
+''')
+        self._usageInfo.addMode('describe-rules', '''describe-rules
+ Describes the syntax and the meaning of the rules
+ ''', '''APP-NAME describe-rules
+''')
+        self._usageInfo.addMode('exec-rules', '''exec-rules <rules> <file-pattern> [<opts>]
+ Executes the given <rules> which allows to show some parts of or modify the given the files.
+ <rules>: a string describing the actions to do. call "APP-NAME describe-rules" for more info
+ ''', '''APP-NAME exec-rules ">/hello/" "*.txt" --recursive --min-depth=1 --files-only
+''')
+        self._usageInfo.addMode('csv-execute', '''csv-execute <commands> <file-pattern>
+ Does some operations on a Comma Separated File. More info with csv-describe.
+ <file-pattern>: specifies the file(s) to process.
+''', '''APP-NAME csv-info "address.csv" --sorted --unique --index=3,4 --cols=*name*,*city*
+''')
+        self._usageInfo.addMode('grep', '''grep <reg-expr> <file-pattern> <opts>
+ Searches the regular expression in files.
+ <file-pattern>: specifies the file(s) to process.
+''', r'''APP-NAME grep -n -g1 'Date:\s+(\d{4}\.\d\d\.\d\d)' "*.txt" --exclude-dirs=.git --max-depth=2
+APP-NAME grep "[\w.+-]+@[\w.+-]+" "*.addr" --format-file="=== EMail addresses in file %f:" --format-line=%l:%T%t *.addr
+''')
+
+        self._usageInfo.addMode('insert-or-replace', '''insert-or-replace <key> <line> <file-pattern> <opts>
+ Searches <key>. If found this line is replaced by <line>.
+ If not found and option --anchor is given: <line> is inserted at this position.
+ <key>: the regular expression to identify the line to replace
+ <line>: the line to replace or insert
+ <file-pattern>: specifies the file(s) to process.
+''', r'''APP-NAME insert-or-replace '^\s*memory_limit\s*=' "memory_limit=2048M" "/etc/php/7.3/fmt/php.ini" -aphp.net/memory-limit
+''')
+
+        self._usageInfo.addMode('replace', r'''replace <pattern> <replacement> <file-pattern> <opts>
+ Searches the regular expression in files.
+ <pattern>: the pattern to search, a regular expression only if --not-regexpr
+ <replacement>: the <reg-expr> will be replaced by this string. Can contain backreferences: see --prefix-backref
+ <file-pattern>:
+  file name pattern, with wilcards *, ? [chars] and [!not chars].
+''', r'''APP-NAME replace "version: ([\d+.]+)" "V%1" "*.py" --prefix-backref=% -B.bak
+''')
+
+        self._usageInfo.addMode('many-replacements', r'''many-replacements <data-file> <file-pattern> <opts>
+ Searches the regular expression in <input> and print the processed (replaced) string.
+ This is useful for complex scripts.
+ <data-file>: a text file with lines "<string>TAB<replacement>"
+ <file-pattern>:
+  file name pattern, with wilcards *, ? [chars] and [!not chars].
+''', r'''APP-NAME many-replacements changes.txt *.html --file-type=fl --max-size=100ki
+''')
+
+        self._usageInfo.addMode('string-replacement', r'''string-replacement <pattern> <replacement> <input> <opts>
+ Searches the regular expression in <input> and print the processed (replaced) string.
+ This is useful for complex scripts.
+ <pattern>: the pattern to search, a regular expression only if --not-regexpr
+ <replacement>: the <reg-expr> will be replaced by this string. Can contain backreferences: see --prefix-backref
+ <input>:
+  this string will be processed
+''', r'''APP-NAME string-replacement "(files|dirs): (\d+)" "%2 %1" "files: 4 dirs: 9" --prefix-backref=%
+''')
+
+    def buildUsageOptions(self, mode=None, subMode=None):
+        '''Adds the options for a given mode.
+        @param mode: None or the mode for which the option is added
+        @param subMode: None or the submode for which the option is added
+        '''
+        def add(mode, opt):
+            self._usageInfo.addModeOption(mode, opt)
+
+        def addIgnore(mode):
+            add(mode, base.UsageInfo.Option('ignore-case', 'i',
+                                            'ignore case while searching', 'bool'))
+
+        def addIgnoreAndWord(mode):
+            addIgnore(mode)
+            add(mode, base.UsageInfo.Option('word-regexpr', 'w',
+                                            'only whole words will be found', 'bool'))
+
+        def addBackup(mode):
+            add(mode, base.UsageInfo.Option('backup', 'B',
+                                            '''if <item> is starting with ".": the origin file will be renamed with this extension
+if <item> is a directory: the original file is moved to this directory
+if not given no backup is done: the original file is modified'''))
+
+        def addEsc(mode):
+            add(mode, base.UsageInfo.Option('esc-active', 'e',
+                                            r"esc sequences '\n', '\r', \t', '\xXX', '\uXXXX' and '\Uxxxxxxxx' "
+                                            + 'in replacement will be recognized', 'bool'))
+
+        def addPrefixBackticks(mode):
+            add(mode, base.UsageInfo.Option('prefix-backref', 'b',
+                                            r'''if given <prefix><group> will be replaced by the group
+example: opt: -b% reg-expr: "version: ([\d+.]+)" replacement: "V%1" string: "version: 4.7" result: "V4.7"'''))
+
+        def addRawString(mode):
+            add(mode, base.UsageInfo.Option('raw-string', 'R',
+                                            '<pattern> is a string, not a regular expression', 'bool'))
+
+        def addReplace(mode, changeFile):
+            addIgnoreAndWord(mode)
+            addEsc(mode)
+            addPrefixBackticks(mode)
+            addRawString(mode)
+            if changeFile:
+                addBackup(mode)
+
+        base.StringUtils.avoidWarning(subMode)
+        if mode is None:
+            mode = self._mainMode
+        if mode == 'describe-rules':
+            self._usageInfo.addModeOption(mode)
+        elif mode == 'exec-rules':
+            base.DirTraverser.addOptions(mode, self._usageInfo)
+            addBackup(mode)
+            add(mode, base.UsageInfo.Option('max-loops', 'l',
+                                            'the process is stopped after <max-loop>*<source_lines> statements', 'int', 1))
+        elif mode == 'csv-execute':
+            base.DirTraverser.addOptions(mode, self._usageInfo)
+        elif mode == 'grep':
+            base.DirTraverser.addOptions(mode, self._usageInfo)
+            addIgnoreAndWord(mode)
+            add(mode, base.UsageInfo.Option('above-chars', 'a',
+                                            'displays <int> characters above the hit. Sets implicitly --only-matching', 'int'))
+            add(mode, base.UsageInfo.Option('below-chars', 'b',
+                                            'displays <int> characters below the hit. Sets implicitly --only-matching', 'int'))
+            add(mode, base.UsageInfo.Option('above-context', 'A',
+                                            'displays <int> lines above the hit', 'int'))
+            add(mode, base.UsageInfo.Option('below-context', 'B',
+                                            'displays <int> lines below the hit', 'int'))
+            add(mode, base.UsageInfo.Option('binary-too', None,
+                                            'the search is done in binary files too', 'bool'))
+            add(mode, base.UsageInfo.Option('context', 'C',
+                                            'displays <int> lines above and below the hit', 'int'))
+            add(mode, base.UsageInfo.Option('format-line', 'f',
+                                            '''defines the display format of a hit line.
+Placeholders: %f: full filename %p: path %n: node %# line number
+%t: line text %<N>: group N (N in [0..9] %%: '%' %L: newline %T: tabulator'''))
+            add(mode, base.UsageInfo.Option('format-file', 'F',
+                                            '''defines the display format of the prefix of a file with hits.
+Placeholders: %f: full filename %p: path %n: node %%: '%' %L: newline %T: tabulator'''))
+            add(mode, base.UsageInfo.Option('group', 'g',
+                                            'displays only the <int>-th group of the regular expression', 'int'))
+            add(mode, base.UsageInfo.Option('length-binary-test', None,
+                                            'the test whether the file is binary is done with that number of bytes', 'int', 4096))
+            add(mode, base.UsageInfo.Option('line-number', 'n',
+                                            'the line number will be displayed for each hit', 'bool'))
+            add(mode, base.UsageInfo.Option('only-matching', 'o',
+                                            'only the matching part of the line will be displayed (not the whole line)', 'bool'))
+            add(mode, base.UsageInfo.Option('invert-match', 'v',
+                                            'all lines not containing the search expression is displayed', 'bool'))
+        elif mode == 'insert-or-replace':
+            base.DirTraverser.addOptions(mode, self._usageInfo)
+            addIgnore(mode)
+            add(mode, base.UsageInfo.Option('above', 'A',
+                                            'the insertion point is above the anchor', 'bool'))
+            add(mode, base.UsageInfo.Option('anchor', 'a',
+                                            'defines the insertion position if <key> is not found'))
+            addBackup(mode)
+        elif mode == 'replace':
+            base.DirTraverser.addOptions(mode, self._usageInfo)
+            addReplace(mode, True)
+        elif mode == 'many-replacements':
+            base.DirTraverser.addOptions(mode, self._usageInfo)
+            addReplace(mode, True)
+        elif mode == 'string-replacement':
+            addReplace(mode, False)
+
+    def csvExecute(self):
+        '''Executes a sequence of commands on CSV files.
+        '''
+        commands = self.shiftProgramArgument()
+        pattern = self.shiftProgramArgument()
+        wrong = self.shiftProgramArgument()
+        if wrong is not None:
+            self.abort('too many arguments: ' + wrong)
+        elif pattern is None:
+            self.abort('too few arguments')
+        elif self.handleOptions():
+            self._processor = base.CsvProcessor.CsvProcessor(self._logger)
+            self._traverser = base.DirTraverser.buildFromOptions(
+                pattern, self._usageInfo, 'csv-execute')
+            self._traverser._findFiles = self._traverser._findLinks = True
+            self._traverser._findDirs = False
+            for filename in self._traverser.next(self._traverser._directory, 0):
+                self._processor.readFile(filename)
+                self._processor.execute(commands)
+
+    def describeRules(self):
+        '''Displays the description of the rules.
+        '''
+        item = base.SearchRuleList.SearchRuleList(self._logger)
+        item.describe()
+
+    def execRules(self):
+        '''Executes a sequence of rules on specified files.
+        '''
+        rules = self.shiftProgramArgument()
+        pattern = self.shiftProgramArgument()
+        wrong = self.shiftProgramArgument()
+        if wrong is not None:
+            self.abort('too many arguments')
+        elif pattern is None:
+            self.abort('missing <file-pattern>')
+        elif self.handleOptions():
+            self._processor = base.TextProcessor.TextProcessor(self._logger)
+            options = OptionsExecuteRules()
+            options.backup = self._optionProcessor.valueOf('backup')
+            options.maxLoop = self._optionProcessor.valueOf('max-loops')
+            self._traverser = base.DirTraverser.buildFromOptions(
+                pattern, self._usageInfo, 'exec-rules')
+            self._traverser._findFiles = self._traverser._findLinks = True
+            self._traverser._findDirs = False
+            for filename in self._traverser.next(self._traverser._directory, 0):
+                base.StringUtils.avoidWarning(filename)
+                self.execRulesOneFile(rules, options)
+
+    def execRulesOneFile(self, rules, options):
+        '''Executes rules for one file.
+        @param filename: file to process
+        @param rules: the rules to execute
+        @param options: the program options (instance of OptionsExecuteRules)
+        '''
+        self._processor.readFile(self._traverser._fileFullName)
+        self._processor.executeRules(rules, options.maxLoop)
+        if self._processor._hasChanged:
+            self._processor.writeFile(None, options.backup)
+
+    def grep(self):
+        '''Searches regular expressions in files.
+        '''
+        self._resultLines = []
+        what = self.shiftProgramArgument()
+        pattern = self.shiftProgramArgument()
+        if pattern is None:
+            self.abort('too few arguments')
+        elif self.handleOptions():
+            options = self.grepOptions()
+            if self._optionProcessor.valueOf('max-size') is None:
+                self._optionProcessor.optionByName(
+                    'max-size')._value = 10 * 1000 * 1000
+            if options.wordOnly:
+                what = r'\b' + what + r'\b'
+            regExpr = re.compile(
+                what, base.Const.IGNORE_CASE if options.ignoreCase else 0)
+            self._traverser = base.DirTraverser.buildFromOptions(
+                pattern, self._usageInfo, 'grep')
+            self._traverser._findFiles = self._traverser._findLinks = True
+            self._traverser._findDirs = False
+            for filename in self._traverser.next(self._traverser._directory, 0):
+                if not os.path.isdir(filename):
+                    if not self.grepOneFile(filename, regExpr, options):
+                        break
+
+    @staticmethod
+    def grepFormat(theFormat, filename, text, lineNo, matcher):
+        '''Returns a format with expanded placeholders.
+        @param format: the format string with placeholders, e.g. '%f-%#: %t'
+        @param filename: [full, path, node], e.g. ['/etc/password', '/etc/', 'password']
+        @param text: None or the line text with the hit
+        @param lineNo: None or the line number
+        @param matcher: None or the match object of the hit
+        @return: the format with expanded placeholders, e.g. '/etc/password-12:sync:x:4:65534:sync:/bin:/bin/sync'
+        '''
+        last = 0
+        rc = ''
+        lengthFormat = len(theFormat)
+        while True:
+            position = theFormat.find('%', last)
+            if position > 0:
+                rc += theFormat[last:position]
+            if position < 0:
+                rc += theFormat[last:]
+                break
+            if position == lengthFormat - 1:
+                rc += '%'
+                break
+            variable = theFormat[position + 1]
+            if variable == 'f':
+                rc += filename[0]
+            elif variable == 'p':
+                rc += filename[1]
+            elif variable == 'n':
+                rc += filename[2]
+            elif variable == 'T':
+                rc += '\t'
+            elif variable == 'L':
+                rc += '\n'
+            elif variable == '%':
+                rc += '%'
+            elif variable == 't':
+                if text is not None:
+                    rc += text
+            elif variable == '#':
+                rc += str(lineNo)
+            elif '0' <= variable <= '9':
+                group = ord(variable) - ord('0')
+                if matcher is not None:
+                    if matcher.lastindex is None:
+                        rc += matcher.group(0)
+                    elif matcher.lastindex <= group:
+                        rc += matcher.group(group)
+            last = position + 2
+        return rc
+
+    def grepOneFile(self, filename, regExpr, options):
+        '''Searches the regular expression in one file.
+        @param filename: the name of the file to inspect
+        @param regExpr: the regular expression to search
+        @param options: the program options a OptionsGrep instance
+        @return True: success False: stop procession
+        '''
+        def output(line):
+            if self._logger._verboseLevel > 0:
+                self._resultLines.append(line)
+            print(line)
+
+        def outputContext(theFormat, fileNames, start, end, lines):
+            while start < end:
+                line2 = TextApp.grepFormat(
+                    theFormat, fileNames, lines[start], start + 1, None)
+                output(line2)
+                start += 1
+            return end - 1
+        optProc = self._optionProcessor
+        lines = base.StringUtils.fileToText(filename, '\n',
+                                            binaryTestLength=optProc.valueOf(
+                                                'length-binary-test'),
+                                            ignoreBinary=not optProc.valueOf(
+                                                'binary-too'),
+                                            maxLength=optProc.valueOf('max-size'))
+        nameList = [filename, os.path.dirname(
+            filename), os.path.basename(filename)]
+        first = True
+        lastIx = -1
+        missingInterval = [None, None]
+        for ix, line in enumerate(lines):
+            matcher = regExpr.search(line)
+            if matcher and first and options.formatFile is not None:
+                output(TextApp.grepFormat(
+                    options.formatFile, nameList, None, None, None))
+                first = False
+            if matcher and not options.invertMatch or matcher is None and options.invertMatch:
+                if missingInterval[0] is not None:
+                    ix2 = min(ix, missingInterval[1])
+                    lastIx = outputContext(
+                        options.formatLine, nameList, missingInterval[0], ix2, lines)
+                    missingInterval[0] = None
+                if options.aboveContext is not None:
+                    start = max(0, lastIx + 1, ix - options.aboveContext)
+                    if start < ix:
+                        lastIx = outputContext(
+                            options.formatLine, nameList, start, ix, lines)
+                if options.group is None and options.aboveChars is None and options.belowChars is None:
+                    output(TextApp.grepFormat(options.formatLine,
+                                              nameList, line, ix + 1, matcher))
+                else:
+                    self.grepOneLine(options, nameList, line, ix + 1, regExpr)
+                lastIx = ix
+                if options.belowContext is not None:
+                    missingInterval = [ix + 1, ix + 1 + options.belowContext]
+        if missingInterval[0] is not None:
+            lastIx = min(len(lines), missingInterval[1])
+            outputContext(options.formatLine, nameList,
+                          missingInterval[0], lastIx, lines)
+        return True
+
+    def grepOneLine(self, options, nameList, line, lineNo, regExpr):
+        '''Handles the multiple hits in one line.
+        @precondition: only the matching pattern should be displayed (not the whole line).
+        @param options: the program options
+        @param namelist: variants of the filename: [<full>, <path>, <node>]
+        @param line: the line to inspect
+        @param lineNo: the line number of line
+        @param regExpr: the regular expression to search
+        '''
+        lineLength = len(line)
+        group = 0 if options.group is None else options.group
+        for matcher in regExpr.finditer(line):
+            start, end = matcher.span(group)
+            if options.aboveChars is not None:
+                start = max(0, start - options.aboveChars)
+            if options.belowChars is not None:
+                end = min(lineLength, end + options.belowChars)
+            info = line[start:end]
+            info2 = TextApp.grepFormat(
+                options.formatLine, nameList, info, lineNo, matcher)
+            if self._logger._verboseLevel > 0:
+                self._resultLines.append(info2)
+            print(info2)
+
+    def grepOptions(self):
+        '''Evaluates the grep options.
+        @return: the options stored in a OptionsGrep instance
+        '''
+        options = OptionsGrep()
+        options.ignoreCase = self._optionProcessor.valueOf('ignore-case')
+        options.wordOnly = self._optionProcessor.valueOf('word-regexpr')
+        if self._optionProcessor.valueOf('group') is not None:
+            options.group = self._optionProcessor.valueOf('group')
+        elif self._optionProcessor.valueOf('only-matching'):
+            options.group = 0
+        options.lineNumber = self._optionProcessor.valueOf('line-number')
+        options.invertMatch = self._optionProcessor.valueOf('invert-match')
+        options.formatFile = self._optionProcessor.valueOf('format-file')
+        options.formatLine = self._optionProcessor.valueOf('format-line')
+        # if options.formatLine is None:
+        #    info = '%t' if options.group is None else f'%{options.group}'
+        # options.formatLine = f'%f-%#:{info}' if options.lineNumber else
+        # f'%f:{info}'
+        options.belowContext = self._optionProcessor.valueOf(
+            'below-context')
+        options.aboveContext = self._optionProcessor.valueOf(
+            'above-context')
+        if options.belowContext is None and options.aboveContext is None:
+            options.belowContext = options.aboveContext = options.aboveContext = self._optionProcessor.valueOf(
+                'context')
+        options.belowChars = self._optionProcessor.valueOf('below-chars')
+        options.aboveChars = self._optionProcessor.valueOf('above-chars')
+        if options.formatLine is None:
+            info = '%t' if options.group is None else f'%{options.group}'
+            options.formatLine = f'%f-%#:{info}' if options.lineNumber else f'%f:{info}'
+        return options
+
+    def insertOrReplace(self):
+        '''Searches regular expressions in files.
+        '''
+        self._resultLines = []
+        key = self.shiftProgramArgument()
+        line = self.shiftProgramArgument()
+        pattern = self.shiftProgramArgument()
+        if pattern is None:
+            self.abort('too few arguments')
+        elif self.handleOptions():
+            options = OptionsInsertOrReplace()
+            options.ignoreCase = self._optionProcessor.valueOf('ignore-case')
+            options.anchor = self._optionProcessor.valueOf('anchor')
+            options.above = self._optionProcessor.valueOf('above')
+            options.backup = self._optionProcessor.valueOf('backup')
+            if options.ignoreCase and options.anchor is not None:
+                options.anchor = re.compile(
+                    options.anchor.pattern, base.Const.IGNORE_CASE)
+            self._traverser = base.DirTraverser.buildFromOptions(
+                pattern, self._usageInfo, 'insert-or-replace')
+            self._processor = base.TextProcessor.TextProcessor(self._logger)
+            self._traverser._findFiles = self._traverser._findLinks = True
+            self._traverser._findDirs = False
+            for filename in self._traverser.next(self._traverser._directory, 0):
+                self._processor.readFile(filename)
+                self._processor.insertOrReplace(
+                    key, line, options.anchor, options.above)
+                if self._processor._hasChanged:
+                    self._processor.writeFile(filename, options.backup)
+
+    def replace(self):
+        '''Replaces a regular expression in files by a replacement.
+        '''
+        self._resultLines = []
+        what = self.shiftProgramArgument()
+        replacement = self.shiftProgramArgument()
+        pattern = self.shiftProgramArgument()
+        if pattern is None:
+            self.abort('too few arguments')
+        elif self.handleOptions():
+            self._processor = base.TextProcessor.TextProcessor(self._logger)
+            options = self.replaceOptions(True)
+            if options is not None:
+                self._traverser = base.DirTraverser.buildFromOptions(
+                    pattern, self._usageInfo, 'replace')
+                self._traverser._findFiles = self._traverser._findLinks = True
+                self._traverser._findDirs = False
+                for filename in self._traverser.next(self._traverser._directory, 0):
+                    self._processor.readFile(filename)
+                    hits = self._processor.replace(what, replacement, options.prefixBackref,
+                                                   options.rawString, True, options.wordOnly, options.ignoreCase,
+                                                   options.escActive)
+                    if hits > 0:
+                        self._processor.writeFile(
+                            filename, options.backupExtensions)
+
+    def replaceMany(self):
+        '''Replaces strings by replacements given in a file in files.
+        '''
+        self._resultLines = []
+        dataFile = self.shiftProgramArgument()
+        pattern = self.shiftProgramArgument()
+        if pattern is None:
+            self.abort('too few arguments')
+        elif not os.path.exists(dataFile):
+            self.abort('data file does not exists: ' + dataFile)
+        elif self.handleOptions():
+            what = []
+            replacements = []
+            lines = base.StringUtils.fromFile(dataFile, '\n')
+            for line in lines:
+                parts = line.split('\t')
+                if len(parts) == 2:
+                    what.append(parts[0])
+                    replacements.append(parts[1])
+            self._processor = base.TextProcessor.TextProcessor(self._logger)
+            options = self.replaceOptions(True)
+            if options is not None:
+                self._traverser = base.DirTraverser.buildFromOptions(
+                    pattern, self._usageInfo, 'many-replacements')
+                self._traverser._findFiles = self._traverser._findLinks = True
+                self._traverser._findDirs = False
+                for filename in self._traverser.next(self._traverser._directory, 0):
+                    self._processor.readFile(filename)
+                    hits = self._processor.replaceMany(what, replacements)
+                    if hits > 0:
+                        self._processor.writeFile(
+                            filename, options.backupExtensions)
+
+    def replaceOptions(self, fileOptions):
+        '''Evaluates the options for the mode "replace", "string-replacement" and "many-replacements".
+        @param fileOptions: the mode is "replace" or "many-replacements": operates on files
+        @return: None: error occurred otherwise: the OptionsReplace instance
+        '''
+        options = OptionsReplace()
+        options.ignoreCase = self._optionProcessor.valueOf('ignore-case')
+        options.wordOnly = self._optionProcessor.valueOf('word-regexpr')
+        options.prefixBackref = self._optionProcessor.valueOf('prefix-backref')
+        options.rawString = self._optionProcessor.valueOf('raw-string')
+        options.escActive = self._optionProcessor.valueOf('esc-active')
+        if fileOptions:
+            options.backupExtensions = self._optionProcessor.valueOf('backup')
+        if options.prefixBackref is not None and len(options.prefixBackref) != 1:
+            self.argumentError(
+                'prefix-backref must have length 1, not ' + options.prefixBackref)
+            options = None
+        return options
+
+    def replaceString(self):
+        '''Replaces a regular expression in a given string by a replacement and display it.
+        '''
+        self._resultLines = []
+        what = self.shiftProgramArgument()
+        replacement = self.shiftProgramArgument()
+        inputString = self.shiftProgramArgument()
+        if inputString is None:
+            self.abort('too few arguments')
+        elif self.handleOptions():
+            self._processor = base.TextProcessor.TextProcessor(self._logger)
+            options = self.replaceOptions(False)
+            if options is not None:
+                self._processor.setContent(inputString)
+                self._processor.replace(what, replacement, options.prefixBackref,
+                                        options.rawString, True, options.wordOnly, options.ignoreCase, options.escActive)
+                info = '\n'.join(self._processor._lines)
+                self._resultText = info
+                print(info)
+
+    def run(self):
+        '''Implements the tasks of the application
+        '''
+        self._hostname = self._configuration.getString('hostname', '<host>')
+        if self._mainMode == 'exec-rules':
+            self.execRules()
+        elif self._mainMode == 'describe-rules':
+            self.describeRules()
+        elif self._mainMode == 'csv-execute':
+            self.csvExecute()
+        elif self._mainMode == 'describe-csv':
+            base.CsvProcessor.CsvProcessor.describe()
+        elif self._mainMode == 'grep':
+            self.grep()
+        elif self._mainMode == 'replace':
+            self.replace()
+        elif self._mainMode == 'many-replacements':
+            self.replaceMany()
+        elif self._mainMode == 'string-replacement':
+            self.replaceString()
+        elif self._mainMode == 'insert-or-replace':
+            self.insertOrReplace()
+        else:
+            self.abort('unknown mode: ' + self._mainMode)
+
+
+def main(args):
+    '''Main function.
+    @param args: the program arguments
+    '''
+    snakeboxx.startApplication()
+    application = TextApp(args)
+    application.main()
+
+
+if __name__ == '__main__':
+    main(sys.argv[1:])
diff --git a/app/__init__.py b/app/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/base/BaseLogger.py b/base/BaseLogger.py
new file mode 100644 (file)
index 0000000..af8c831
--- /dev/null
@@ -0,0 +1,109 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import base.Const
+
+class BaseLogger:
+    '''Base class of the loggers.
+    The derived class must implement the method log(message)
+    '''
+
+    def __init__(self, verboseLevel):
+        '''Constructor.
+        @param verboseLevel: logging is done only if minLevel < verboseLevel. minLevel is a parameter of log()
+        '''
+        self._verboseLevel = verboseLevel
+        self._logDebug = True
+        self._logInfo = True
+        self._errors = 0
+        self._maxErrors = 20
+        self._firstErrors = []
+        self._errorFilter = None
+        self._mirrorLogger = None
+        self._inUse = False
+
+    def debug(self, message):
+        '''Logs a debugging message.
+        @param message: the message to log
+        @return: True
+        '''
+        if self._mirrorLogger is not None:
+            self._mirrorLogger.debug(message)
+        if self._logDebug:
+            self._inUse = True
+            self.log(message)
+            self._inUse = False
+        return True
+
+    def error(self, message):
+        '''Logs a message.
+        @param message: the error message to log
+        @return: False
+        '''
+        if self._mirrorLogger is not None:
+            self._mirrorLogger.error(message)
+        filtered = self._errorFilter is not None
+        if filtered:
+            if isinstance(self._errorFilter, str):
+                filtered = message.find(self._errorFilter) >= 0
+            else:
+                filtered = self._errorFilter.search(message) is not None
+        if not filtered:
+            self._inUse = True
+            self.log('+++ ' + message)
+            self._errors += 1
+            if self._errors < self._maxErrors:
+                self._firstErrors.append(message)
+            self._inUse = False
+        return False
+
+    def info(self, message):
+        '''Logs an info message.
+        @param message: the message to log
+        @return: True
+        '''
+        if self._mirrorLogger is not None:
+            self._mirrorLogger.info(message)
+        if self._logInfo:
+            self._inUse = True
+            self.log(message)
+            self._inUse = False
+        return True
+
+    def log(self, message=None, minLevel=base.Const.LEVEL_SUMMARY):
+        '''Logs a message.
+        @param message: the string to log
+        @param level: logging will be done only if level >= self._verboseLevel
+        '''
+        raise NotImplementedError('BaseLogger.log(): must be overriden')
+
+    def setMirror(self, logger):
+        '''Sets a "mirror" logger: all messages are logged to the mirror too
+        @param logger: the mirror logger
+        '''
+        if self._mirrorLogger is not None:
+            logger.setLogger(self._mirrorLogger)
+        self._mirrorLogger = logger
+
+    def setErrorFilter(self, excluded, mirrorsToo=True):
+        '''Sets the error filter: if the pattern matches the error is ignored (not logged)
+        @param excluded: string: a substring of the ignored error
+                re.RegExpression: a compiled regular expression of the ignored errors
+        @param mirrorsToo: True: the filter is used for the mirror loggers too
+        '''
+        self._errorFilter = excluded
+        if mirrorsToo and self._mirrorLogger is not None:
+            self._mirrorLogger.setErrorFilter(excluded)
+
+    def transferErrors(self, logger):
+        '''Transfers the error from another logger.
+        @param logger: the source of the errors to transfer
+        '''
+        self._errors += logger._errors
+        self._firstErrors += logger._firstErrors
+
+
+if __name__ == '__main__':
+    pass
diff --git a/base/BaseRandom.py b/base/BaseRandom.py
new file mode 100644 (file)
index 0000000..91935c4
--- /dev/null
@@ -0,0 +1,119 @@
+'''
+Created on 2023 Feb 26
+
+@author: wk
+'''
+import random
+import datetime
+import random
+
+class BaseRandom(object):
+    '''
+    A base class for random generators.
+    '''
+    _maxInt = 0x7ffffffe
+    def __init__(self):
+        '''
+        Constructor
+        '''
+        self._lastSeed = 0
+
+    def nextBool(self) -> bool:
+        '''Returns a random bool value.
+        @return a random bool value
+        '''
+        rc = self.nextInt(BaseRandom._maxInt) >= BaseRandom._maxInt/2
+        return rc
+
+    def nextFloat(self) -> float:
+        '''Returns a random float number from [0..1.0].
+        '''
+        rc = self.nextInt(BaseRandom._maxInt) / BaseRandom._maxInt
+        return rc
+
+    def nextInt(self, value1: int=0x7ffffffe, value2: int=None) -> int:
+        '''Returns a random integer from [0..maxValue]
+        @param value1: if value2 is None this is the largest return value (inclusive)
+            Otherwise this is the lowest return value
+        @param value2: None or the largest return value (inclusive)
+        @return a random number
+        '''
+        if value2 is None:
+            rc = random.randint(0, min(value1, BaseRandom._maxInt))
+        else:
+            if value1 > value2:
+                value1, value2 = (value2, value1)
+            range = value2 - value1
+            if range <= 0 or range > BaseRandom._maxInt:
+                raise ValueError(f'BaseRandom::nextInt(): range too large: {range} / {BaseRandom._maxInt}')
+            rc = value1 + self.nextInt(range)
+        return rc
+
+    @staticmethod
+    def hashString(text: str) -> int:
+        '''A portable hash function for strings.
+        This algorithm can be implemented in any programming environment:
+        Only 31 bit integer operations will be done and multiplications are
+        done in the 31 bit range.
+        @param text: the text to hash
+        @return: a hash value
+        '''
+        p = 31
+        m = 0x7fffffff
+        maxFactor = 0x10000
+        hash = 0x7eadbeef
+        powerValue = 1
+        for ix in range(len(text)):
+            cc = ord(text[ix])
+            hash += cc
+            hash = (hash % maxFactor * powerValue + (hash / maxFactor) \
+                     * maxFactor) % m
+            powerValue = powerValue * p % maxFactor
+        return hash % m
+
+    def setPhrase(self, text1: str, text2: str=None, text3: str=None):
+        '''Sets the generator state with until three secret phrases.
+        @param text1: the first secret
+        @param text2: the second secret
+        @param text3: the third secret
+        '''
+        seed2 = 19891211 if text2 is None else BaseRandom.hashString(text2) 
+        seed3 = 19910420 if text3 is None else BaseRandom.hashString(text2) 
+        self.setSeed(BaseRandom.hashString(text1), seed2, seed3)
+
+    def setSeed(self, seed1: int, seed2: int = 0x7654321, seed3: int = 0x3adf001):
+        '''Sets the generator state with until three secret integers.
+        @param seed1: the first secret
+        @param seed2: the second secret
+        @param seed3: the third secret
+        '''
+        self._lastSeed = seed1 + seed2 + seed3
+        random.seed(self._lastSeed)
+        
+    @staticmethod
+    def testDistribution(random, maxInt: int, loops: int=5000):
+        '''Shows the distribution of the random generator as ASCII graphic.
+        @param random: the random generator to test
+        @param maxInt: the largest generated value
+        @param loops: the number of random calls
+        '''
+        parts = 20
+        divider = maxInt / parts
+        data = []
+        for ix in range(parts):
+            data.append(0)
+        start = datetime.datetime.now()
+        for ix in range(loops):
+            value = int(random.nextInt(maxInt) / divider)
+            data[value] += 1
+        end = datetime.datetime.now()
+        minimum = min(data)
+        maximum = max(data)
+        for ix in range(len(data)):
+            value = 50 * data[ix] // maximum
+            print(f'{ix:02d}: {data[ix]:5d} {"*"*value}')
+        diff = end - start
+        seconds = diff.seconds + diff.microseconds * 1E-6
+        ratio = loops / seconds * 1E-6
+        print(f'= maxInt: {maxInt} min: {minimum} max: {maximum} calls/microseconds: {ratio:.3}')
+        
diff --git a/base/Const.py b/base/Const.py
new file mode 100644 (file)
index 0000000..bbf91b3
--- /dev/null
@@ -0,0 +1,24 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+# replaces re.I:
+IGNORE_CASE = 2
+RE_UNICODE = 32
+RE_TEMPLATE = 1 # template mode (disable backtracking)
+RE_IGNORECASE = 2 # case insensitive
+RE_LOCALE = 4 # honour system locale
+RE_MULTILINE = 8 # treat target as multiline string
+RE_DOTALL = 16 # treat target as a single string
+RE_UNICODE = 32 # use unicode "locale"
+RE_VERBOSE = 64 # ignore whitespace and comments
+RE_DEBUG = 128 # debugging
+RE_ASCII = 256 # use ascii "locale"
+
+# base.Logger levels:
+LEVEL_SUMMARY = 1
+LEVEL_DETAIL = 2
+LEVEL_LOOP = 3
+LEVEL_FINE = 4
+LEVEL_DEBUG = 5
diff --git a/base/CryptoEngine.py b/base/CryptoEngine.py
new file mode 100644 (file)
index 0000000..6a4faa8
--- /dev/null
@@ -0,0 +1,408 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import random
+import base64
+import math
+import time
+
+
+class CryptoEngine:
+    '''Implements a Pseudo Random Generator with the KISS algorithm.
+    We want an algorithm which can be implemented in any programming language, e.g. in JavaScript or Java.
+    JavaScript (at this moment) only contains floating point calculation.
+    Java knows only signed integers or floating point numbers.
+    Therefore we use IEEE 754 (64 bit floating point).
+    '''
+
+    def __init__(self, logger):
+        '''Constructor.
+        @param logger: the logger
+        '''
+        self._counter = 0
+        self._base64Trailer = '!#$%&()*'
+        self._uBoundBase64Tail = '*'
+        self._x = 372194.0
+        # @cond _y != 0
+        self._y = 339219.0
+        # @cond z | c != 0
+        self._z = 470811222.0
+        self._c = 1.0
+        self._logger = logger
+
+    def bytesToString(self, aBytes):
+        '''Converts a string into a byte array without encoding.
+        @param aBytes: byte array to convert
+        @return a string
+        '''
+        try:
+            rc = aBytes.decode('ascii')
+        except UnicodeDecodeError as exc:
+            rc = -1
+            raise exc
+        return rc
+
+    def decode(self, string, charSet):
+        '''Decodes a string encoded by encode().
+        Format of the string: version salt encrypted
+        '0' (version string)
+        4 characters salt
+        rest: the encrypted string
+        @param string: string to encode
+        @param charSet: the character set of the string and the result, e.g. 'word'
+        @return: the decoded string (clear text)
+        '''
+        self._counter += 1
+        aSet = self.getCharSet(charSet)
+        aSize = len(aSet)
+        rc = ''
+        if string.startswith('0'):
+            prefix = string[1:5]
+            string = string[5:]
+            aHash = self.hash(prefix)
+            self.setSeed(aHash, 0x20111958, 0x4711, 1)
+            length = len(string)
+            for ix in range(length):
+                ix3 = aSet.find(string[ix])
+                ix2 = (aSize + ix3 - self.nextInt(aSize - 1)) % aSize
+                rc += aSet[ix2]
+        return rc
+
+    def decodeBinary(self, string):
+        '''Decodes a string encrypted by encryptBinary().
+        @param string: string to decode
+        @return: the decoded string (clear text)
+        '''
+        aSet = self.getCharSet('base64')
+        aSize = len(aSet)
+        rc = ''
+        if string.startswith('0'):
+            prefix = string[1:5]
+            string = string[5:]
+            aHash = self.hash(prefix)
+            self.setSeed(aHash, 0x20111958, 0x4711, 1)
+            aLen = len(string)
+            buffer = ''
+            # replace the trailing '=' "randomly" with a char outside the
+            # character set:
+            if aLen > 0 and string[aLen - 1] == '=':
+                string[aLen - 1] = self._base64Trailer[self._counter * 7 %
+                                                       len(self._base64Trailer)]
+            if aLen > 1 and string[aLen - 2] == '=':
+                string[aLen - 2] = self._base64Trailer[self._counter * 13 %
+                                                       len(self._base64Trailer)]
+            for ix in range(aLen):
+                ix3 = aSet.find(string[ix])
+                ix2 = (aSize + ix3 - self.nextInt(aSize - 1)) % aSize
+                buffer += aSet[ix2]
+            binBuffer = self.stringToBytes(buffer + '\n')
+            try:
+                binBuffer2 = base64.decodebytes(binBuffer)
+            except Exception as exc:
+                if str(exc) == 'Incorrect padding':
+                    try:
+                        binBuffer = binBuffer[0:-1]
+                        binBuffer2 = base64.decodebytes(binBuffer)
+                    except Exception:
+                        binBuffer = binBuffer[0:-1]
+                        binBuffer2 = base64.decodebytes(binBuffer)
+            ix = binBuffer2.find(b'\n')
+            if ix >= 0:
+                binBuffer2 = binBuffer2[0:ix]
+            rc = self.bytesToString(binBuffer2)
+        return rc
+
+    def encode(self, string, charSet):
+        '''Encodes a string with a randomly generated salt.
+        Format of the string: version salt encoded
+        '0' (version string)
+        4 characters salt
+        rest: the encoded string
+        @param string: string to encode
+        @param charSet: the character set of the string and the result, e.g. 'word'
+        @return: the encrypted string
+        '''
+        self._counter += 1
+        self.setSeedRandomly()
+        rc = self.nextString(4, charSet)
+        aSet = self.getCharSet(charSet)
+        aSize = len(aSet)
+        aHash = self.hash(rc)
+        self.setSeed(aHash, 0x20111958, 0x4711, 1)
+        length = len(string)
+        for ix in range(length):
+            ix3 = aSet.find(string[ix])
+            ix2 = (ix3 + self.nextInt(aSize - 1)) % aSize
+            rc += aSet[ix2]
+        return '0' + rc
+
+    def encodeBinary(self, string):
+        '''Encrypts a string with a randomly generated salt.
+        The string can be based on any char set. It will be base64 encoded before encryption.
+        Format of the result: version salt encrypted
+        '0' (version string)
+        4 characters salt
+        rest: the encrypted string
+        @param string: the string or bytes to encrypt
+        @return: the encoded string
+        '''
+        self.setSeedRandomly()
+        if isinstance(string, str):
+            string = self.stringToBytes(string)
+        # convert it to a ascii usable string
+        string += b'\n'
+        buffer = base64.encodebytes(string)
+        string = self.bytesToString(buffer).rstrip()
+        rc = self.nextString(4, 'base64')
+        aSet = self.getCharSet('base64')
+        aSize = len(aSet)
+        aHash = self.hash(rc)
+        self.setSeed(aHash, 0x20111958, 0x4711, 1)
+        length = len(string)
+        for ix in range(length):
+            ix3 = aSet.find(string[ix])
+            ix2 = (ix3 + self.nextInt(aSize - 1)) % aSize
+            rc += aSet[ix2]
+        return '0' + rc
+
+    def getCharSet(self, name):
+        '''Returns a string with all characters of the charset given by name.
+        @param name: the name of the charset
+        @return: None: unknown charset
+            otherwise: the charset as string
+        '''
+        if name == 'dec':
+            rc = '0123456789'
+        elif name == 'hex':
+            rc = '0123456789abcdef'
+        elif name == 'upper':
+            rc = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+        elif name == 'lower':
+            rc = 'abcdefghijklmnopqrstuvwxyz'
+        elif name == 'alfa':
+            rc = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
+        elif name == 'word':
+            rc = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_'
+        elif name == 'ascii94':
+            rc = r'''!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~'''
+        elif name == 'ascii95':
+            rc = r''' !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~'''
+        elif name == 'ascii':
+            rc = r''' !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~''' + chr(
+                127)
+        elif name == 'base64':
+            rc = r'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
+        else:
+            self._logger.error('unknown character set: ' + name)
+            rc = ''
+
+        return rc
+
+    def getCharSetNames(self):
+        '''Returns the list of the known charset names.
+        @return the list of the known charset names
+        '''
+        rc = [
+            'dec',
+            'hex',
+            'upper',
+            'lower',
+            'alfa',
+            'word',
+            'ascii94',
+            'ascii95',
+            'ascii',
+            'base64']
+        return rc
+
+    def hash(self, string):
+        '''Converts a string into an integer.
+        @param string: the string to convert
+        @return: the hash value
+        '''
+        rc = len(string)
+        count = rc
+        for ix in range(count):
+            rc = (rc * (ix + 1) +
+                  (ord(string[ix]) << (ix % 4 * 7))) & 0x7fffffff
+        return rc
+
+    def nextChar(self, charSet='ascii'):
+        '''Returns a pseudo random character.
+        @param charSet: the result is a character from this string
+        @return: a pseudo random character
+        '''
+        aSet = self.getCharSet(charSet)
+        ix = self.nextInt(0, len(aSet) - 1)
+        rc = aSet[ix]
+        return rc
+
+    def nextInt(self, maxValue=0x7fffffff, minValue=0):
+        '''Returns a pseudo random 31 bit integer.
+        @param maxValue: the maximal return value (inclusive)
+        @param minValue: the minimal return value (inclusive)
+        @return: a number from [minValue..maxValue]
+        '''
+        if maxValue == minValue:
+            rc = minValue
+        else:
+            if minValue > maxValue:
+                maxValue, minValue = minValue, maxValue
+            rc = self.nextSeed()
+            rc = rc % (maxValue - minValue) + minValue
+        return rc
+
+    def nextString(self, length, charSet):
+        '''Returns a pseudo random string.
+        @param length: the length of the result
+        @param charSet: all characters of the result are from this string
+        @return: a pseudo random string with the given charset and length
+        '''
+        aSet = self.getCharSet(charSet)
+        aSize = len(aSet)
+        rc = ''
+        aRandom = None
+        for ix in range(length):
+            if ix % 4 == 0:
+                aRandom = self.nextSeed()
+            else:
+                aRandom >>= 8
+            rc += aSet[aRandom % aSize]
+        return rc
+
+    def nextSeed(self):
+        '''Sets the next seed and returns a 32 bit random value.
+        @return: a pseudo random number with 0 <= rc <= 0xffffffff
+        '''
+        # linear congruential generator (LCG):
+        self._x = math.fmod(69069.0 * self._x + 473219.0, 4294967296)
+        # Xorshift
+        #self._y ^= int(self._y) << 13
+        self._y = math.fmod(int(self._y) ^ int(self._y) << 13, 4294967296)
+        #self._y ^= self._y >> 17
+        self._y = math.fmod(int(self._y) ^ int(self._y) >> 17, 4294967296)
+        #self._y ^= self._y << 5
+        self._y = math.fmod(int(self._y) ^ int(self._y) << 5, 4294967296)
+        # multiply with carry:
+        t = 698769069.0 * self._z + self._c
+        #self._c = math.fmod(t >> 32, 2)
+        self._c = math.fmod(int(t) >> 32, 2)
+        self._z = math.fmod(t, 4294967296)
+        return int(math.fmod(self._x + self._y + self._z, 4294967296))
+
+    def oneTimePad(self, user, data):
+        '''Builds a one time pad.
+        @param user:    the user id
+        @param data: None or additional data: allowed char set: word
+        @return: char set: word
+        '''
+        if data is not None and self.testCharSet(data, 'word') >= 0:
+            rc = ''
+        else:
+            padData = '{:08x}{:04x}'.format(
+                int(round(time.time())), user) + data
+            rc = self.encode(padData, 'word')
+        return rc
+
+    def restoreSeed(self, seed):
+        '''Returns the current seed as string.
+        @return the seed as string
+        '''
+        parts = seed.split(':')
+        self.setSeed(float(parts[0]), float(parts[1]),
+                     float(parts[2]), float(parts[3]))
+
+    def saveSeed(self):
+        '''Returns the current seed as string.
+        @return the seed as string
+        '''
+        rc = '{}:{}:{}:{}'.format(repr(self._x), repr(
+            self._y), repr(self._z), repr(self._c))
+        return rc
+
+    def setSeed(self, x, y, z, c):
+        '''Sets the parameter of the KISS algorithm.
+        @param x:
+        @param y:
+        @param z:
+        @param c:
+        '''
+        self._x = math.fmod(x, 4294967296)
+        self._y = 1234321.0 if y == 0 else math.fmod(y, 4294967296)
+        if z == 0 and c == 0:
+            c = 1.0
+        self._c = math.fmod(c, 2)
+        self._z = math.fmod(z, 4294967296)
+
+    def setSeedFromString(self, seedString):
+        '''Converts a string, e.g. a password, into a seed.
+        @param seedString: the string value to convert
+        '''
+        if seedString == '':
+            seedString = 'Big-Brother2.0IsWatching!You'
+        while len(seedString) < 8:
+            seedString += seedString
+        x = self.hash(seedString[0:len(seedString) - 3])
+        y = self.hash(seedString[1:8])
+        z = self.hash(seedString[3:5])
+        c = self.hash(seedString[1:])
+        self.setSeed(x, y, z, c)
+
+    def setSeedRandomly(self):
+        '''Brings "true" random to the seed
+        '''
+        utime = time.time()
+        rand1 = int(math.fmod(1000 * 1000 * utime, 1000000000.0))
+        rand2 = int(math.fmod(utime * 1000, 1000000000.0))
+        self.setSeed(rand1, rand2, int(random.random() * 0x7fffffff), 1)
+
+    def stringToBytes(self, string):
+        '''Converts a string into a byte array without encoding.
+        @param string: string to convert
+        @return a bytes array
+        '''
+        rc = string.encode('ascii')
+        return rc
+
+    def testCharSet(self, string, charSet):
+        '''Tests whether all char of a string belong to a given charSet.
+        @param string: string to test
+        @param charSet: the char set to test
+        @return: -1: success
+            otherwise: the index of the first invalid char
+        '''
+        aSet = self.getCharSet(charSet)
+        rc = -1
+        for ix, item in enumerate(string):
+            if aSet.find(item) < 0:
+                rc = ix
+                break
+        return rc
+
+    def unpackOneTimePad(self, pad, maxDiff=60):
+        '''Decodes a one time pad.
+        @param pad: the encoded one time pad
+        @param maxDiff: maximal difference (in seconds) between time of the pad and now
+        @return: None: invalid pad
+            otherwise: a tuple (time, user, data)
+        '''
+        padData = self.decode(pad, 'word')
+        length = len(padData)
+        if length < 12 or self.testCharSet(padData[0:12], 'hex') >= 0 or self.testCharSet(padData[12:], 'word') >= 0:
+            rc = None
+        else:
+            padTime = int(padData[0:8], 16)
+            now = time.time()
+            if abs(now - padTime) >= maxDiff:
+                rc = None
+            else:
+                user = int(padData[8:12], 16)
+                data = None if len(padData) == 12 else padData[12:]
+                rc = (padTime, user, data)
+        return rc
+
+
+if __name__ == '__main__':
+    pass
diff --git a/base/CsvProcessor.py b/base/CsvProcessor.py
new file mode 100644 (file)
index 0000000..9233183
--- /dev/null
@@ -0,0 +1,393 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import re
+import os.path
+import csv
+import datetime
+import fnmatch
+
+import base.Const
+import base.StringUtils
+
+class CsvProcessor:
+    '''A processor for finding/modifying text.
+    '''
+
+    def __init__(self, logger):
+        self._filename = None
+        self._lines = None
+        self._logger = logger
+        self._colNames = None
+        # data type of one row, e.g. [str, int, None]
+        self._dataTypes = []
+        # bool flags of one row: True: any row has null (empty value)
+        self._hasEmpty = []
+        self._rows = []
+        self._indexes = None
+        self._minCols = 0x7fffffff
+        self._rowMinCols = None
+        self._maxCols = 0
+        self._rowMaxCols = None
+        self._columnOrder = None
+        self._dialect = None
+
+    def addColumn(self, header, colIndex, value1, value2):
+        '''Adds a CSV column to the internal structure.
+        @param header: '' or the column header, e.g. 'name'
+        @param colIndex: the index of the column after inserting. '0' means: the new column is the first
+        @param value1: the column value in row[0]
+        @param value2: None: all column values are set to value1
+            Otherwise: the column value of the 2nd row. all other values will be interpolated
+        '''
+        index = base.StringUtils.asInt(colIndex)
+        if index is None:
+            self._logger.error('<index> is not an integer: ' + colIndex)
+        else:
+            index = index if index < len(self._rows[0]) else len(self._rows[0])
+            value = value1
+            step = None
+            if value2 is not None:
+                v1 = base.StringUtils.asInt(value1)
+                v2 = base.StringUtils.asInt(value2)
+                if v1 is None or v2 is None:
+                    self._logger.error(
+                        'cannot interpolate {}..{}'.format(value1, value2))
+                    index = None
+                else:
+                    step = v2 - v1
+                    value = v1
+            if index is not None and header == '' and self._colNames is not None:
+                self._logger.error(
+                    'missing <header> in add-column command: may not be empty')
+                index = None
+            if index is not None:
+                if self._colNames is not None:
+                    self._colNames.insert(index, header)
+                self._rows[0].insert(index, value)
+                for ixRow in range(1, len(self._rows)):
+                    if step is not None:
+                        value += step
+                    self._rows[ixRow].insert(index, value)
+    @staticmethod
+    def dataType(string):
+        '''Returns the data type of the given string.
+        @param string: string to inspect
+        @return the data type: None, str int
+        '''
+        if string is None or string == '':
+            rc = None
+        elif base.StringUtils.asInt(string) is not None:
+            rc = int
+        else:
+            rc = str
+        return rc
+
+    __description = '''= Commands of the CsvProcessor:
+commands: <command1> [<command2>...]
+add-column:<header>,<col-index>,<firstValue>[,<secondValue>]
+    <header>: name of the column
+    <col-index>: 0..N: 0 means the new column is the first column
+    <first-value>: the value of the first row (below the header)
+    <second-value>: if it does not exists: all other rows are set to <first-value>
+        if it exists: the second row is set to this value and the next values are interpolated
+info:<what1>[,<what2>...]
+    Note: only filtered column will be respected
+    <what>: summary | min | max | sorted | unique | multiple
+set-filter:<index1>[,<index2...] or set-filter:<pattern1>[,<pattern2...]
+set-order:<pattern1>[,<pattern2...]
+    Sets the columns that are then written.
+write:<filename>[,<delimiter>[,<backupExtension>]]
+    If <filename> is empty, the current filename is taken.
+    <delimiter>: the delimiter between two columns: comma | tab | semicolon
+        If empty the current is taken.
+    <backupExtension>: if given and a <filename> already exists: it is renamed
+        with this extension. May contain placeholders %date%, %datetime% or %seconds%.
+Example:
+set-filter:name,prename info:summary,unique set-order:nam*,*pren* write:names.csv,tab,.%date%
+'''
+    @staticmethod
+    def describe():
+        '''Prints a description of the commands.
+        '''
+        print(CsvProcessor.__description)
+
+    def execute(self, commands):
+        '''Executes a sequence of commands.
+        @see describe()
+        @param commands: the command sequence as string
+    '''
+        for command in commands.split():
+            name, delim, args = command.partition(':')
+            if name == '' or name.startswith('#'):
+                continue
+            if delim != ':':
+                self._logger.error('missing ":" in ' + command)
+                break
+            arguments = args.split(',')
+            if name == 'add-column':
+                if len(arguments) < 3:
+                    self._logger.error(
+                        'missing arguments for add-column: <header>,<col-index>,<first-value> expected')
+                else:
+                    self.addColumn(arguments[0], arguments[1], arguments[2], None if len(
+                        arguments) < 4 else arguments[3])
+            elif name == 'info':
+                self.info(args)
+            elif name == 'set-filter':
+                if base.StringUtils.asInt(arguments[0]) is not None:
+                    self.setFilterIndexes(arguments)
+                else:
+                    self.setFilterCols(arguments)
+            elif name == 'set-order':
+                self.setColumnOrder(arguments)
+            elif name == 'write':
+                ext = None if len(arguments) < 3 else arguments[2]
+                delim = None if len(arguments) < 2 else arguments[1]
+                if delim == 'comma':
+                    delim = ','
+                elif delim == 'semicolon':
+                    delim = ';'
+                elif delim == 'tab':
+                    delim = '\t'
+                fn = None if arguments[0] == '' else arguments[0]
+                self.writeFile(fn, ext, delim)
+
+    def info(self, what):
+        '''Prints some infos about the CSV file.
+        Note: only columns listed in self._indexes are inspected.
+        @param what: a comma separated list of requests, e.g. 'unique,sorted,summary,min,max'
+        '''
+        def prefix(col):
+            return '{}{}: '.format(col, (' "' + self._colNames[col] + '"') if col < len(self._colNames) else '')
+
+        if re.search(r'unique|sorted|multiple|min|max|max-length', what) is not None:
+            unique = what.find('unique') >= 0
+            multiple = what.find('multiple') >= 0
+            for index in self._indexes:
+                cols = []
+                for row in self._rows:
+                    value = row[index]
+                    if self._dataTypes == int:
+                        cols.append(int(value))
+                    else:
+                        cols.append(value)
+                cols.sort()
+                self._logger.log('== {}'.format(prefix(index)))
+                if what.find('min') >= 0:
+                    self._logger.log('minimum: {}'.format(cols[0]))
+                if re.search(r'(max[^-])|(max$)', what) is not None:
+                    self._logger.log('maximum: {}'.format(cols[-1]))
+                if what.find('max-length') >= 0:
+                    maxLength = 0
+                    maxString = None
+                    for row in self._rows:
+                        current = len(row[index])
+                        if current > maxLength:
+                            maxLength = current
+                            maxString = row[index]
+                    if maxString is not None:
+                        self._logger.log(
+                            'max-length: {} "{}"'.format(maxLength, maxString))
+                if unique or what.find('sorted') >= 0:
+                    lastValue = None
+                    for col in cols:
+                        if unique and col == lastValue:
+                            continue
+                        self._logger.log(col)
+                        lastValue = col
+                elif multiple:
+                    lastValue = None
+                    lastCount = 0
+                    for col in cols:
+                        if col == lastValue:
+                            lastCount += 1
+                        else:
+                            if lastValue is not None and lastCount > 0:
+                                self._logger.log('{}: {}'.format(
+                                    lastValue, lastCount + 1))
+                        lastValue = col
+                    if lastCount > 0:
+                        self._logger.log('{}: {}'.format(
+                            lastValue, lastCount + 1))
+        if what.find('summary') >= 0:
+            info = '== summary:\nRows: {}\nCols: {}\nHeaders: {} line(s)'.format(
+                len(self._rows), len(self._rows[0]), 1 if self._colNames else 0)
+            info += (f'\ndelimiter: {self._dialect.delimiter}\ndoublequote: {self._dialect.doublequote}'
+                     + f'\nescapechar: {self._dialect.escapechar}\nquotechar: {self._dialect.quotechar}')
+            self._logger.log(info)
+            for col in range(len(self._rows[0])):
+                info = '{} {} {}'.format(prefix(col),
+                                         str(self._dataTypes[col]), 'hasEmpty' if self._hasEmpty[col] else '')
+                self._logger.log(info)
+
+    def readFile(self, filename, mustExists=True):
+        '''Reads a file into the internal buffer.
+        @param filename: the file to read
+        @param mustExists: True: errros will be logged
+        @return True: success False: cannot read
+        '''
+        self._filename = filename
+        rc = os.path.exists(filename)
+        if not rc:
+            if mustExists:
+                self._logger.error('{} does not exists'.format(filename))
+        else:
+            with open(filename, newline='') as csvfile:
+                sniffer = csv.Sniffer()
+                buffer = csvfile.read(16000)
+                self._dialect = sniffer.sniff(buffer)
+                hasHeaders = sniffer.has_header(buffer)
+                csvfile.seek(0)
+                reader = csv.reader(csvfile, self._dialect)
+                self._colNames = None
+                ix = -1
+                for row in reader:
+                    ix += 1
+                    if ix == 0 and hasHeaders:
+                        self._colNames = row
+                    else:
+                        self._rows.append(row)
+                        currentLength = len(row)
+                        if currentLength < self._minCols:
+                            self._minCols = currentLength
+                            self._rowMinCols = reader.line_num
+                        if currentLength > self._maxCols:
+                            self._maxCols = currentLength
+                            self._rowMaxCols = reader.line_num
+                        if not self._dataTypes:
+                            for col in row:
+                                currentType = CsvProcessor.dataType(col)
+                                self._dataTypes.append(currentType)
+                                self._hasEmpty.append(currentType is None)
+                        else:
+                            for ix, col in enumerate(row):
+                                currentType = self.dataType(col)
+                                if ix >= len(self._dataTypes):
+                                    self._dataTypes.append(currentType)
+                                    self._hasEmpty.append(currentType is None)
+                                else:
+                                    if currentType is None:
+                                        self._hasEmpty[ix] = True
+                                    if self._dataTypes[ix] == int and currentType is not None and currentType != int:
+                                        self._dataTypes[ix] = str
+        return rc
+
+    def setColumnOrder(self, patterns):
+        '''Sets the filter indexes by column name patterns.
+        @param patterns: a list of column name patterns, e.g. ['*name*', 'ag*']
+        '''
+        self._columnOrder = []
+        for pattern in patterns:
+            found = False
+            ix = -1
+            for name in self._colNames:
+                ix += 1
+                if fnmatch.fnmatch(name, pattern):
+                    found = True
+                    self._columnOrder.append(ix)
+                    self._logger.log('pattern {} found as column {} at index {}'.format(
+                        pattern, name, ix), base.Const.LEVEL_FINE)
+                    break
+            if not found:
+                self._logger.error('pattern {} not found')
+
+    def setFilterIndexes(self, indexes):
+        '''Sets the filter indexes by indexes.
+        @param indexes: a list of indexes. May be strings or integers like ['0', 2]
+        '''
+        self._indexes = []
+        for ix in indexes:
+            self._indexes.append(int(ix))
+        self._indexes.sort()
+
+    def setFilterCols(self, patterns):
+        '''Sets the filter indexes by column name patterns.
+        @param patterns: a list of column name patterns, e.g. ['*name*', 'ag*']
+        '''
+        self._indexes = []
+        for pattern in patterns:
+            found = False
+            ix = -1
+            for name in self._colNames:
+                ix += 1
+                if fnmatch.fnmatch(name, pattern):
+                    found = True
+                    self._indexes.append(ix)
+                    self._logger.log('pattern {} found as column {} at index {}'.format(
+                        pattern, name, ix), base.Const.LEVEL_FINE)
+                    break
+            if not found:
+                self._logger.error('col name pattern {} not found in [{}]'.format(
+                    pattern, ','.join(self._colNames)))
+                break
+        self._indexes.sort()
+
+    def quoteString(self, string):
+        '''Quotes the given string if necessary.
+        @param string: the string to quote
+        @return: string or the quoted string
+        '''
+        rc = string
+        quote = self._dialect.quotechar
+        delim = self._dialect.delimiter
+        forceQuoting = self._dialect.quoting == csv.QUOTE_ALL or (
+            self._dialect.quoting == csv.QUOTE_NONNUMERIC and base.StringUtils.asInt(string) is None)
+        if forceQuoting or string.find(delim) >= 0:
+            if self._dialect.doublequote:
+                string = string.replace(delim, delim + delim)
+            else:
+                esc = self._dialect.escapechar
+                string = string.replace(
+                    esc, esc + esc).replace(quote, esc + quote)
+            rc = quote + string + quote
+        return rc
+
+    def writeFile(self, filename=None, backupExtension=None, delimiter=None):
+        '''Writes the internal buffer as a file.
+        @param filename: the file to write: if None _filename is taken
+        @param backupExtension: None or: if the file already exists it will be renamed with this extension
+                macros: '%date%' replace with the  current date %datetime%: replace with the date and time
+                '%seconds%' replace with the seconds from epoc
+        '''
+        filename = self._filename if filename is None else filename
+        delimiter = self._dialect.delimiter if delimiter is None else delimiter
+        if os.path.exists(filename) and backupExtension is not None:
+            if backupExtension.find('%') >= 0:
+                now = datetime.datetime.now()
+                backupExtension = backupExtension.replace(
+                    '%date%', now.strftime('%Y.%m.%d'))
+                backupExtension = backupExtension.replace(
+                    '%datetime%', now.strftime('%Y.%m.%d-%H_%M_%S'))
+                backupExtension = backupExtension.replace(
+                    '%seconds%', now.strftime('%a'))
+            if not backupExtension.startswith('.'):
+                backupExtension = '.' + backupExtension
+            parts = base.FileHelper.splitFilename(filename)
+            parts['ext'] = backupExtension
+            newNode = parts['fn'] + backupExtension
+            base.FileHelper.deepRename(filename, newNode, deleteExisting=True)
+        with open(filename, "w") as fp:
+            indexes = self._columnOrder if self._columnOrder is not None else [
+                ix for ix in range(len(self._rows[0]))]
+            if self._colNames is not None:
+                line = ''
+                for ix, item in enumerate(indexes):
+                    if ix > 0:
+                        line += delimiter
+                    line += self.quoteString(self._colNames[item])
+                fp.write(line + self._dialect.lineterminator)
+            for row in self._rows:
+                line = ''
+                for ix, item in enumerate(indexes):
+                    if ix > 0:
+                        line += delimiter
+                    value = base.StringUtils.toString(row[item])
+                    line += self.quoteString(value)
+                fp.write(line + self._dialect.lineterminator)
+
+
+if __name__ == '__main__':
+    pass
diff --git a/base/DirTraverser.py b/base/DirTraverser.py
new file mode 100644 (file)
index 0000000..fcb8b92
--- /dev/null
@@ -0,0 +1,267 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import fnmatch
+import os.path
+import stat
+import re
+import datetime
+
+#import base.FileHelper
+import base.Const
+import base.StringUtils
+
+
+class DirTraverser:
+    '''Traverse a directory tree and return specified filenames.
+    '''
+
+    def __init__(self, directory, filePattern='*', dirPattern='*',
+                 reFileExcludes=None, reDirExcludes=None, fileType=None,
+                 minDepth=0, maxDepth=None, fileMustReadable=False, fileMustWritable=False,
+                 dirMustWritable=False, maxYields=None, youngerThan=None, olderThan=None,
+                 minSize=0, maxSize=None):
+        '''Constructor.
+        @param directory: the start directory
+        @param filePattern: the shell pattern of the files to find
+        @param dirPattern: the shell pattern of the dirs to find. Note: selects only the returned dirs, not the processed
+        @param reFileExcludes: None or the regular expression for files to exclude
+        @param reDirExcludes: None or the regular expression for directories to exclude
+        @param nodeType: a string with the filetypes to find: d(irectory) f(ile) l(ink), e.g. 'dfl'
+        @param minDepth: the minimum depth of the processed files: 1 means only files in subdirectories will be found
+        @param maxDepth: the maximum depth of the processed files: 0 means only the base directory is scanned
+        @param fileMustReadable: True: a file will only yielded if it is readable
+        @param fileMustWritable: True: a file will only yielded if it is writable
+        @param dirMustWritable: True: a directory will only processed if it is writable
+        @param maxYields: None or after this amount of yields the iteration stops
+        @param youngerThan: None or the modification file time must be greater or equal this
+        @param olderThan: None or the modification file time must be lower or equal this
+        @param minSize: None or only files larger than that will be found
+        @param maxSize: None or only files smaller than that will be found
+        '''
+        self._directory = directory if directory != '' else '.'
+        # +1: the preceeding slash
+        self._lengthDirectory = 0 if directory == os.sep else len(
+            self._directory) + 1
+        if fileType is None:
+            fileType = 'dfl'
+        self._findFiles = fileType.find('f') >= 0
+        self._findDirs = fileType.find('d') >= 0
+        self._findLinks = fileType.find('l') >= 0
+        self._filePattern = filePattern
+        self._dirPattern = dirPattern
+        self._reDirExcludes = reDirExcludes
+        self._reDirExcludes = None if reDirExcludes is None else (
+            re.compile(reDirExcludes, base.Const.IGNORE_CASE) if isinstance(reDirExcludes, str) else
+            reDirExcludes)
+        self._reFileExcludes = None if reFileExcludes is None else (
+            re.compile(reFileExcludes, base.Const.IGNORE_CASE) if isinstance(reFileExcludes, str) else
+            reFileExcludes)
+        self._fileMustReadable = fileMustReadable
+        self._fileMustWritable = fileMustWritable
+        self._dirMustWritable = dirMustWritable
+        self._minSize = minSize if minSize is not None else 0
+        # 2**63-1:
+        self._maxSize = maxSize
+        # the stat info about the current file
+        self._fileInfo = None
+        self._fileFullName = None
+        self._fileNode = None
+        self._fileRelativeName = None
+        # the stat info about the current directory
+        self._dirInfo = None
+        self._dirFullName = None
+        self._dirRelativeName = None
+        self._dirNode = None
+        self._minDepth = minDepth if minDepth is not None else 0
+        self._maxDepth = maxDepth if maxDepth is not None else 900
+        self._youngerThan = None if youngerThan is None else youngerThan.timestamp()
+        self._olderThan = None if olderThan is None else olderThan.timestamp()
+        # 2.14*10E9
+        self._maxYields = maxYields if maxYields is not None else 0x7fffffff
+        self._yields = 0
+        self._countFiles = 0
+        self._bytesFiles = 0
+        self._countDirs = 0
+        self._ignoredDirs = 0
+        self._ignoredFiles = 0
+        self._euid = os.geteuid()
+        self._egid = os.getegid()
+        self._statInfo = None
+        self._node = None
+        self._isDir = False
+
+    def asList(self):
+        '''Returns a list of all found files (filenames with relative path).
+        @return: []: nothing found otherwise: the list of all filenames
+        '''
+        rc = []
+        for item in self.next(self._directory, 0):
+            rc.append(item)
+        return rc
+
+    def next(self, directory, depth):
+        '''Implements a generator which returns the next specified file.
+        Note: this method is recursive (for each directory in depth)
+        The traversal mode: yields all files and directories and than enters the recursivly the directories
+        @param directory: the directory to process
+        @param depth: the current file tree depth
+        @return: the next specified file (the filename with path relative to _directory)
+        '''
+        self._countDirs += 1
+        dirs = []
+        directory2 = '' if directory == os.sep else directory
+        for node in os.listdir(directory):
+            full = directory2 + os.sep + node
+            self._statInfo = statInfo = os.lstat(full)
+            self._isDir = stat.S_ISDIR(statInfo.st_mode)
+            if self._isDir:
+                self._ignoredDirs += 1
+                if (self._reDirExcludes is not None and self._reDirExcludes.search(node)):
+                    continue
+                if not base.LinuxUtils.isReadable(statInfo, self._euid, self._egid):
+                    continue
+                elif self._dirMustWritable and not base.LinuxUtils.isReadable(statInfo, self._euid, self._egid):
+                    continue
+                elif depth < self._maxDepth:
+                    dirs.append(node)
+                if depth < self._minDepth:
+                    continue
+                if depth < self._maxDepth:
+                    self._ignoredDirs -= 1
+                if self._dirPattern is None:
+                    continue
+                if not self._findDirs:
+                    continue
+                if self._dirPattern == '*' or fnmatch.fnmatch(node, self._dirPattern):
+                    self._dirInfo = statInfo
+                    self._dirNode = node
+                    self._dirFullName = full
+                    self._dirRelativeName = full[self._lengthDirectory:]
+                    yield self._dirRelativeName
+                    self._yields += 1
+                    if self._yields >= self._maxYields:
+                        return
+            else:
+                # tentative: because of "continue"
+                self._ignoredFiles += 1
+                if os.path.islink(full):
+                    if not self._findLinks:
+                        continue
+                elif not self._findFiles:
+                    continue
+                if statInfo.st_size < self._minSize or (self._maxSize is not None and statInfo.st_size > self._maxSize):
+                    continue
+                if self._youngerThan is not None and statInfo.st_mtime < self._youngerThan:
+                    continue
+                if self._olderThan is not None and statInfo.st_mtime > self._olderThan:
+                    continue
+                if self._filePattern != '*' and not fnmatch.fnmatch(node, self._filePattern):
+                    continue
+                if self._reFileExcludes is not None and self._reFileExcludes.search(node):
+                    continue
+                if self._fileMustReadable and not base.LinuxUtils.isReadable(statInfo, self._euid, self._egid):
+                    continue
+                if self._fileMustWritable and not base.LinuxUtils.isWritable(statInfo, self._euid, self._egid):
+                    continue
+                if depth < self._minDepth:
+                    continue
+                self._ignoredFiles -= 1
+                self._statInfo = statInfo
+                self._countFiles += 1
+                self._bytesFiles += self._statInfo.st_size
+                self._fileFullName = full
+                self._node = node
+                self._fileRelativeName = full[self._lengthDirectory:]
+                yield full
+                self._yields += 1
+                if self._yields >= self._maxYields:
+                    return
+        for node in dirs:
+            full = directory2 + os.sep + node
+            yield from self.next(full, depth + 1)
+
+    def summary(self):
+        '''Returns the info about the traverse process: count of files...
+        @return: the infotext
+        '''
+        rc = 'dir(s): {} file(s): {} / {}\nignored: dir(s): {} file(s): {}'.format(
+            self._countDirs, self._countFiles,
+            base.StringUtils.formatSize(self._bytesFiles),
+            self._ignoredDirs, self._ignoredFiles)
+        return rc
+
+
+def addOptions(mode, usageInfo):
+    '''Adds the options for controlling the DirTraverser instance to a UsageInfo instance.
+    @param: the options will be assigned to this mode
+    @param: usageInfo: the options will be added to that
+    '''
+    option = base.UsageInfo.Option('dirs-pattern', 'f', 'if a directory matches this regular expression it will be not processed',
+                                   'regexpr')
+    usageInfo.addModeOption(mode, option)
+    option = base.UsageInfo.Option('dirs-excluded', 'X', 'if a directory matches this regular expression it will be not processed',
+                                   'regexpr')
+    usageInfo.addModeOption(mode, option)
+    option = base.UsageInfo.Option(
+        'file-type', 't', 'only files with this filetype will be found: d(irectory) f(ile) l(link)')
+    usageInfo.addModeOption(mode, option)
+    option = base.UsageInfo.Option(
+        'min-depth', 'm', 'only subdirectories with that (or higher) depth will be processed', 'int', 0)
+    usageInfo.addModeOption(mode, option)
+    option = base.UsageInfo.Option(
+        'min-depth', 'm', 'only subdirectories with that (or lower) depth will be processed', 'int')
+    option = base.UsageInfo.Option(
+        'max-yields', 'Y', 'only that number of matching files will be found', 'int')
+    usageInfo.addModeOption(mode, option)
+    option = base.UsageInfo.Option(
+        'min-size', 's', 'only larger files than that will be found, e.g. --min-size=2Gi', 'size', 0)
+    usageInfo.addModeOption(mode, option)
+    option = base.UsageInfo.Option(
+        'max-size', 'S', 'only smaller files than that will be found, e.g. --max-size=32kByte', 'size')
+    usageInfo.addModeOption(mode, option)
+    option = base.UsageInfo.Option(
+        'older-than', 'o', 'only files older than that will be found, e.g. --older-than=2020.7.3-4:32', 'datetime')
+    usageInfo.addModeOption(mode, option)
+    option = base.UsageInfo.Option(
+        'younger-than', 'y', 'only files younger than that will be found, e.g. --younger-than=2020.7.3-4:32', 'datetime')
+    usageInfo.addModeOption(mode, option)
+
+
+def buildFromOptions(pattern, usageInfo, mode):
+    '''Returns a DirTraverser instance initialized by given options.
+    @param pattern: a file pattern with path, e.g. "*.txt" or "/etc/*.conf"
+    @param usageInfo: contains the options built by addOptions()
+    @param mode: specifies the storage in usageInfo
+    @return a DirTravers instance initiatialized by values from the options
+    '''
+    def v(name):
+        return usageInfo._optionProcessors[mode].valueOf(name)
+    baseDir = None
+    if os.path.isdir(pattern):
+        baseDir = pattern
+        pattern = '*'
+    else:
+        baseDir = os.path.dirname(pattern)
+        pattern = os.path.basename(pattern)
+    fileMustReadable = fileMustWritable = dirMustWritable = None
+    rc = DirTraverser(baseDir, pattern, v('dir-pattern'), v('files-excluded'), v('dirs-excluded'),
+                      v('file-type'), v('min-depth'), v('max-depth'),
+                      fileMustReadable, fileMustWritable, dirMustWritable,
+                      v('max-yields'), v('younger-than'), v('older-than'), v('min-size'), v('max-size'))
+    return rc
+
+
+def _stringToDate(string, errors):
+    rc = datetime.datetime.strptime(string, '%Y.%m.%d-%H:%M:%S')
+    if rc is None:
+        rc = datetime.datetime.strptime(string, '%Y.%m.%d')
+    if rc is None:
+        errors.append('wrong datetime syntax: {}'.format(string))
+    return rc
+
+
+if __name__ == '__main__':
+    pass
diff --git a/base/FileHelper.py b/base/FileHelper.py
new file mode 100644 (file)
index 0000000..44c7684
--- /dev/null
@@ -0,0 +1,1201 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+
+import os
+import stat
+import datetime
+import time
+import shutil
+import re
+import tarfile
+import zipfile
+import tempfile
+import fnmatch
+
+import base.Const
+import base.StringUtils
+import base.LinuxUtils
+import base.TextProcessor
+import base.ProcessHelper
+
+REG_EXPR_WILDCARDS = re.compile(r'[*?\[\]]')
+GLOBAL_LOGGER = None
+GLOBAL_UNIT_TEST_MODE = None
+CURRDIR_PREFIX = '.' + os.sep
+
+
+class DirInfo:
+    '''Stores the directory info
+    '''
+
+    def __init__(self, maxYoungest=5, maxLargest=5, maxOldest=5, maxSmallest=5, minSize=1,
+                 dirsOnly=False, filesOnly=False, trace=0):
+        '''Constructor.
+        @param maxYoungest: the maximal number of entries in self._youngest
+        @param maxLargest: the maximal number of entries in self._largest
+        @param maxOldest: the maximal number of entries in self._oldest
+        @param maxLargest: the maximal number of entries in self._smallest
+        @param minSize: the minimum size of the entries in self._smallest
+        @param dirsOnly: True: only directories will be processed
+        @param filesOnly: True: only files (not dirs) will be processed
+        @param trace: if > 0: after processing this amount of nodes a statistic is logged
+        '''
+        self._fileCount = 0
+        self._fileSizes = 0
+        self._dirCount = 0
+        self._dirPattern = None
+        self._filePattern = None
+        self._ignoredDirs = 0
+        self._ignoredFiles = 0
+        self._youngest = []
+        self._largest = []
+        self._smallest = []
+        self._oldest = []
+        self._maxYoungest = maxYoungest
+        self._maxLargest = maxLargest
+        self._maxLargest = maxOldest
+        self._maxSmallest = maxSmallest
+        self._minSize = minSize
+        self._timeYoungest = 0
+        self._timeOldest = 0
+        self._sizeLargest = 0
+        self._dirsOnly = dirsOnly
+        self._filesOnly = filesOnly
+        self._trace = trace
+        self._nextTracePoint = trace
+        self._maxOldest = None
+        self._maxDepth = None
+
+
+def _error(message):
+    '''Prints an error message.
+    @param message: error message
+    @return False: for chaining
+    '''
+    global GLOBAL_LOGGER
+    if GLOBAL_LOGGER is None:
+        print('+++ ' + message)
+    else:
+        GLOBAL_LOGGER.error(message)
+    return False
+
+
+def _log(message, level=base.Const.LEVEL_SUMMARY):
+    '''Prints a message.
+    @param message: error message
+    '''
+    global GLOBAL_LOGGER
+    if GLOBAL_LOGGER is None:
+        print(message)
+    else:
+        GLOBAL_LOGGER.log(message, level)
+
+
+def changeExtendedAttributes(path, toAdd=None, toDelete=None):
+    '''Changes the attributes of a file (using from /usr/bin/chattr).
+    Important attributes: c(ompression) (no)C(OW) a(ppendOnly) (no)A(timeUpdates) (synchronous)D(irectoryUpdates)
+    I(mmutable) (data)J(ournaling) S(ynchronousUpdates) u(ndeletable)
+    @param path: that file will be changed
+    @param toAdd: None or a list of attributes to add to the file, e.g. "cC"
+    @param toDelete: None or a list of attributes to delete from the file, e.g. "cC"
+    '''
+    if toAdd is None and toDelete is None:
+        _error(f'changeExtendedAttributes(): missing attributes to add/delete for {path}')
+    else:
+        helper = base.ProcessHelper.ProcessHelper(GLOBAL_LOGGER)
+        argv = ['/usr/bin/chattr']
+        if toAdd:
+            argv.append(f'+{toAdd}')
+        if toDelete:
+            argv.append(f'-{toDelete}')
+        argv.append(path)
+        helper.execute(argv, True)
+
+
+def clearDirectory(path):
+    '''Deletes (recursivly) all files and subdirectories of a given path.
+    Note: if the path is not a directory (or it does not exists) it will not be handled as an error
+    @param path: the directory to clear
+    '''
+    if os.path.exists(path):
+        global GLOBAL_LOGGER
+        for node in os.listdir(path):
+            full = path + os.sep + node
+            if os.path.isdir(full):
+                shutil.rmtree(full, True)
+            else:
+                os.unlink(full)
+            if os.path.exists(full) and GLOBAL_LOGGER is not None:
+                _error('cannot remove: ' + full)
+
+
+def createBackup(source, target=None, extension=None, expandPlaceholders=True, checkEqualNames=True):
+    '''Save the source as target to save a file as backup.
+    @param source: the file to backup
+    @param target: the "safe place" of the file
+    @param expandPlaceholders: True: the following placeholders in target will be expanded:
+        @see expandPathPlaceholders() for more info
+    @param checkEqualNames: True: the test is done whether source != target
+    '''
+    if target is None:
+        if extension.find('%') >= 0:
+            extension = expandPlaceholders(extension, source)
+        if not extension.startswith('.'):
+            extension = '.' + extension
+        deepRename(source, extension, deleteExisting=True)
+    else:
+        if expandPlaceholders and target.find('%') >= 0:
+            target = expandPlaceholders(target, source)
+        if os.path.isdir(target):
+            target += os.sep + os.path.basename(source)
+        elif target.find(os.sep) < 0:
+            pass
+        if checkEqualNames and os.path.realpath(source) != os.path.realpath(target):
+            target += '~'
+        if target.os.path.islink(source):
+            pass
+        else:
+            moveFile(source, target)
+
+
+def createFileTree(files, baseDirectory):
+    '''Creates a directory tree with files specified in a text: each line contains one dir/file
+    Specification: one file/dir per line (directories does not have a content)
+    filename[|content[|mode[|date]]]
+    If content starts with '->' a link is created
+    If filename ends with / it is a directory.
+    Examples:
+    dir1/
+    dir1/file1|this is in file|664|2020-01-22 02:44:32
+    main.dir|->dir1
+    @param files: the text describing the dirs/files
+    @parma baseDirectory: the tree begins with this directory
+    '''
+    lines = files.split('\n')
+    for line in lines:
+        if line.strip() == '':
+            continue
+        parts = line.split('|')
+        full = baseDirectory + os.sep + parts[0]
+        if parts[0].endswith('/'):
+            full = full[0:-1]
+            mode = int(parts[1], 8) if len(parts) > 1 else 0o777
+            if not os.path.exists(full):
+                os.makedirs(full, mode)
+            os.chmod(full, mode)
+            if len(parts) > 2:
+                date = datetime.datetime.strptime(
+                    parts[2], '%Y-%m-%d %H:%M:%S')
+                setModified(full, None, date)
+        else:
+            parent = os.path.dirname(full)
+            if not os.path.isdir(parent):
+                os.makedirs(parent)
+            content = parts[1] if len(parts) > 1 else ''
+            mode = int(parts[2], 8) if len(parts) > 2 else 0o666
+            if content.startswith('->'):
+                if os.path.exists(full):
+                    os.unlink(full)
+                os.symlink(content[2:], full)
+            else:
+                base.StringUtils.toFile(full, content, fileMode=mode)
+                if len(parts) > 3:
+                    date = datetime.datetime.strptime(
+                        parts[3], '%Y-%m-%d %H:%M:%S')
+                    setModified(full, None, date)
+
+
+def copyDirectory(source, target, option=None, verboseLevel=0):
+    '''Copies all files (and dirs) from source to target directory.
+    @param source: the base source directory
+    @param target: the base target directoy()
+    @param option: None, 'clear' or 'update'
+        'clear': all files (and subdirs) of target will be deleted
+        'update': only younger or not existing files will be copied False: all files will be copied
+    '''
+    if option == 'clear':
+        if verboseLevel >= base.Const.LEVEL_DETAIL:
+            _log('clearing ' + target, verboseLevel)
+        clearDirectory(target)
+    for node in os.listdir(source):
+        src = source + os.sep + node
+        trg = target + os.sep + node
+        if os.path.islink(src):
+            if not option == 'update' or not os.path.exists(trg):
+                ref = os.readlink(src)
+                if verboseLevel >= base.Const.LEVEL_DETAIL:
+                    _log('symlink: {} [{}]'.format(trg, ref), verboseLevel)
+                try:
+                    os.symlink(ref, trg)
+                except OSError as exc:
+                    _error('cannot create a symlink: {} -> {}'.format(ref, trg))
+        elif os.path.isdir(src):
+            if option != 'update' or not os.path.exists(trg):
+                if verboseLevel >= base.Const.LEVEL_DETAIL:
+                    _log('directory: {} -> {}'.format(src, trg), verboseLevel)
+                shutil.copytree(src, trg, True)
+            else:
+                copyDirectory(src, trg, option)
+        else:
+            if not os.path.exists(trg) or option == 'update' and os.path.getmtime(src) > os.path.getmtime(trg):
+                try:
+                    if verboseLevel >= base.Const.LEVEL_DETAIL:
+                        _log('{} -> {}'.format(src, trg), verboseLevel)
+                    shutil.copy2(src, trg)
+                except OSError as exc:
+                    _error('cannot copy {}: {}'.format(trg, str(exc)))
+
+
+def copyByRules(rules, baseSource, baseTarget):
+    '''Copies directories/files from a given directory tree controlled by a list of rules.
+    The rules is a list of lines.
+    Each line contains a copy rule: a source file/file pattern followed by a target name and options.
+    Separator in the line is the ':', in options ','
+    Examples:
+    public/index.php
+        copy public/index.php to public/index.php
+    public/icons:*
+        copy public/icons with all subdirectories and files into public/icons
+    app/*:*:symlink,dirsonly,except local|test
+        creates symbolic links from all directories in the subdir app/ except "common"
+    tools/run.template:tools/run.sh
+        copies the file tools/run.template and change the name to run.sh
+    <options>: symlink filesonly dirsonly "except <rexpr-pattern>" "replace<sep>what<sep>with<sep>"
+    @param rules: a list of rules for copying
+    @param baseSource the directory tree to copy
+    @param baseTarget the target directory. Will be created if it does not exist
+    '''
+    if os.path.dirname(baseSource) != os.path.dirname(baseTarget):
+        _error('source and target does not have the same parent. Not supported')
+    elif not os.path.isdir(baseSource):
+        _error('not a directory: ' + baseSource)
+    else:
+        ensureDirectory(baseTarget)
+        clearDirectory(baseTarget)
+        lineNo = 0
+        for rule in rules:
+            lineNo += 1
+            rule = rule.strip()
+            if rule == '' or rule.startswith('#'):
+                continue
+            if rule.startswith(':'):
+                target = rule[1:]
+                full = baseTarget + os.sep + target
+                _log('create ' + full, base.Const.LEVEL_DETAIL)
+                os.makedirs(full)
+                continue
+            parts = rule.split(':')
+            source = parts[0].lstrip(os.sep)
+            opts = {}
+            full = baseSource + os.sep + source.lstrip(os.sep)
+            toTest = os.path.dirname(full) if hasWildcards(source) else full
+            if toTest != '' and not os.path.exists(toTest):
+                _error('line {}: source not found: {}'.format(lineNo, toTest))
+                continue
+            if len(parts) == 1:
+                target = source
+            elif len(parts) == 2:
+                target = parts[1] if parts[1].lstrip(os.sep) != '*' else source
+            elif len(parts) == 3:
+                target = parts[1] if parts[1].lstrip(os.sep) != '*' else source
+                for opt in parts[2].split(','):
+                    optParts = opt.split(' ', 2)
+                    opts[optParts[0]] = None if len(
+                        optParts) < 2 else optParts[1]
+                    if re.match(r'^dirsonly|except|filesonly|recursive|replace|symlink$', optParts[0]) is None:
+                        _error('unknown option: ' + opt)
+                    if optParts[0] == 'replace':
+                        value = optParts[1]
+                        if value == '' or value.count(value[0]) != 3:
+                            _error('wrong syntax in replace option: ' + value)
+                            del opts['replace']
+            else:
+                _error('line {}: too many ":" in: {}'.format(lineNo, rule))
+                continue
+            copyByRule(full, baseTarget + os.sep +
+                       target, opts, source.count(os.sep))
+
+
+def copyByRule(fnSource, fnTarget, options, depthRelPath):
+    '''Execute a rule from copyFileTree.
+    @param fnSource: the source file/directory
+    @param fnTarget: the target
+    @param options: a dictionary with (option_name, option_value) pairs
+    @param depthRelPath: the depth of the tree from the base directory
+    '''
+    parentSource = os.path.dirname(fnSource)
+    pathSource = parentSource + os.sep if parentSource != '' else ''
+    parentTarget = os.path.dirname(fnTarget)
+    pathTarget = parentTarget + os.sep if parentTarget != '' else ''
+    if parentTarget != '':
+        ensureDirectory(parentTarget)
+    nodeSource = os.path.basename(fnSource)
+    if hasWildcards(nodeSource):
+        reExcept = None if 'except' not in options else re.compile(
+            options['except'])
+        for node in os.listdir('.' if parentSource == '' else parentSource):
+            full = pathSource + node
+            if not fnmatch.fnmatch(node, nodeSource):
+                _log('ignoring {}'.format(full), base.Const.LEVEL_DETAIL)
+                continue
+            if reExcept is not None and reExcept.match(node) is not None:
+                _log('ignoring {}'.format(full), base.Const.LEVEL_DETAIL)
+                continue
+            isDir = os.path.isdir(full)
+            if 'dirsonly' in options and not isDir:
+                _log('ignoring non directory {}'.format(
+                    full), base.Const.LEVEL_DETAIL)
+                continue
+            if 'filesonly' in options and isDir:
+                _log('ignoring directory {}'.format(
+                    full), base.Const.LEVEL_DETAIL)
+                continue
+            copyByRule(pathSource + node, pathTarget +
+                       node, options, depthRelPath)
+    else:
+        if 'symlink' in options:
+            depth = fnSource.count(os.sep) + 1
+            partsSource = fnSource.split(os.sep)
+            relPath = os.sep.join(partsSource[depth - depthRelPath - 1:])
+            linkSource = '../' * \
+                (1 + depthRelPath) + \
+                partsSource[depth - depthRelPath - 2] + os.sep + relPath
+            os.symlink(linkSource, fnTarget)
+        else:
+            if 'dirsonly' in options and not os.path.isdir(fnSource):
+                _log('ignoring non directory {}'.format(
+                    fnSource), base.Const.LEVEL_DETAIL)
+            elif 'filesonly' in options and os.path.isdir(fnSource):
+                _log('ignoring directory {}'.format(
+                    fnSource), base.Const.LEVEL_DETAIL)
+            else:
+                if os.path.isdir(fnSource):
+                    if 'recursive' in options:
+                        shutil.copytree(fnSource, fnTarget)
+                    else:
+                        _log('creating ' + fnTarget, base.Const.LEVEL_DETAIL)
+                        os.makedirs(fnTarget)
+                        shutil.copystat(fnSource, fnTarget)
+                elif 'replace' in options:
+                    global GLOBAL_LOGGER
+                    processor = base.TextProcessor.TextProcessor(GLOBAL_LOGGER)
+                    processor.readFile(fnSource, mustExists=True)
+                    value = options['replace']
+                    if value == '' or value.count(value[0]) != 3:
+                        _error('wrong syntax in replace option: ' + value)
+                    else:
+                        parts = value[1:].split(value[0], 2)
+                        hits = processor.replace(
+                            parts[0], parts[1], noRegExpr=True, countHits=True)
+                        _log('{} replacement(s) [{}] in {} => {}'.format(hits, value, fnSource,
+                                                                         fnTarget), base.Const.LEVEL_DETAIL)
+                        processor.writeFile(fnTarget)
+                else:
+                    _log('copying {} => {}'.format(
+                        fnSource, fnTarget), base.Const.LEVEL_DETAIL)
+                    shutil.copy2(fnSource, fnTarget, follow_symlinks=False)
+
+
+def copyIfExists(source, target):
+    '''Copies all files (and dirs) from source to target directory.
+    @param source: the base source directory
+    @param target: the base target directoy()
+    @param verboseLevel: True: do logging
+    '''
+    if os.path.exists(source):
+        _log('copying {} => {} ...'.format(
+            source, target), 2, base.Const.LEVEL_DETAIL)
+        shutil.copy2(source, target)
+
+
+def deepRename(oldName, newNode, deleteExisting=False):
+    '''Renames a file or symbolic link.
+    Not symbolic links: renaming "normally".
+    Symbolic links: the link target will be renamed. This is useful for backing up files:
+    not the symbolic link is the subject to save but the link target.
+    @param oldName: the file to rename (with path)
+    @param newNode: the new filename (without path)
+    @return True: success
+    '''
+    rc = True
+    if not os.path.exists(oldName):
+        rc = _error('cannot rename (old name does not exist): ' + oldName)
+    elif os.path.islink(oldName):
+        source = endOfLinkChain(oldName)
+        nodeOld = os.path.basename(source)
+        if nodeOld == newNode:
+            rc = _error('cannot rename (link target has the same name {}): {}'.format(
+                nodeOld, oldName))
+        else:
+            rc = deepRename(source, newNode)
+    else:
+        newName = os.path.join(os.path.dirname(oldName), newNode)
+        if os.path.exists(newName):
+            if not deleteExisting:
+                rc = _error('cannot rename (new name exists): ' + newName)
+            else:
+                _log('deleting ' + newName, base.Const.LEVEL_LOOP)
+                global GLOBAL_UNIT_TEST_MODE
+                if GLOBAL_UNIT_TEST_MODE == 'deepRename-no-unlink':
+                    _log('suppressing delete of {} ({})'.format(
+                        newName, GLOBAL_UNIT_TEST_MODE), base.Const.LEVEL_DETAIL)
+                else:
+                    os.unlink(newName)
+                rc = not os.path.exists(newName)
+                if not rc:
+                    _error('cannot remove new name: ' + newName)
+        if rc:
+            _log('renaming {} => {}'.format(
+                oldName, newName), base.Const.LEVEL_LOOP)
+            os.rename(oldName, newName)
+    return rc
+
+
+def directoryInfo(path, filePattern=None, dirPattern=None, maxDepth=-1, fileInfo=None,
+                  maxYoungest=5, maxLargest=5, maxOldest=5, maxSmallest=5, minSize=1, dirsOnly=False,
+                  filesOnly=False, trace=0):
+    '''Returns the directory info of the given path.
+    @param path: the full path of the directory to inspect
+    @param filePattern: None or a regular expression (as text) describing the file names to inspect
+    @param dirPattern: None or a regular expression (as text) describing the directory names to inspect
+    @param maxDepth: maximal depth of recursion. < 0: unlimited 0: only the start directory
+    @param dirInfo: None or a DirectoryInfo instance which will be completed
+    @param maxYoungest: the maximal number of entries in DirInfo._youngest[]
+    @param maxLargest: the maximal number of entries in DirInfo._largest[]
+    @param maxSmallest: the maximal number of entries in DirInfo._smallest[]
+    @param minSize: the minimum size of the entries in DirInfo._smallest[]
+    @param dirsOnly: only directories will be part of the result
+    @param filessOnly: only files (not directories) will be part of the result
+    @param trace: if > 0: a statistic is printed if this amount of nodes (files or nodes) is processed
+    @return: a DirInfo instance
+    '''
+    def infoOneDir(path, depth, fileInfo):
+        def showStatistic(info):
+            print('{}: dirs: {} files: {} ignored dirs: {} ignored files: {}'.format(
+                path, info._dirCount, info._fileCount, info._ignoredDirs, info._ignoredFiles))
+            info._nextTracePoint += info._trace
+        if not isinstance(fileInfo, DirInfo):
+            depth = 0
+        fileInfo._dirCount += 1
+        if (fileInfo._trace > 0 and fileInfo._dirCount + fileInfo._fileCount + fileInfo._ignoredDirs +
+                fileInfo._ignoredFiles > fileInfo._nextTracePoint):
+            showStatistic(fileInfo)
+        try:
+            nodes = os.listdir(path)
+        except PermissionError:
+            fileInfo._ignoredDirs += 1
+            return
+        if (fileInfo._trace > 0 and not nodes
+                and fileInfo._dirCount + fileInfo._fileCount + fileInfo._ignoredDirs
+                + fileInfo._ignoredFiles % fileInfo._trace == 0):
+            showStatistic(fileInfo)
+        for node in nodes:
+            if (fileInfo._trace > 0 and fileInfo._dirCount + fileInfo._fileCount +
+                    fileInfo._ignoredDirs + fileInfo._ignoredFiles > fileInfo._nextTracePoint):
+                showStatistic(fileInfo)
+            full = path + os.sep + node
+            stats = os.lstat(full)
+            isDir = stat.S_ISDIR(stats.st_mode)
+            if isDir:
+                if not fileInfo._filesOnly:
+                    length = len(fileInfo._youngest)
+                    if (fileInfo._maxYoungest > 0
+                        and (length < fileInfo._maxYoungest
+                             or stats.st_mtime > fileInfo._timeYoungest)):
+                        if not base.LinuxUtils.isReadable(stats, euid, egid):
+                            fileInfo._ignoredFiles += 1
+                        else:
+                            if length >= fileInfo._maxYoungest:
+                                del fileInfo._youngest[0]
+                            fileInfo._youngest.append(
+                                str(stats.st_mtime) + ':' + path + os.sep + node)
+                            fileInfo._youngest.sort(
+                                key=lambda x: float(x.split(':')[0]))
+                            fileInfo._timeYoungest = float(
+                                fileInfo._youngest[0].split(':')[0])
+                    length = len(fileInfo._oldest)
+                    if fileInfo._maxOldest > 0 and (length < fileInfo._maxOldest or stats.st_mtime < fileInfo._timeOldest):
+                        if not base.LinuxUtils.isReadable(stats, euid, egid):
+                            fileInfo._ignoredFiles += 1
+                        else:
+                            if length >= fileInfo._maxOldest:
+                                del fileInfo._oldest[-1]
+                            fileInfo._oldest.insert(
+                                0, str(stats.st_mtime) + ':' + path + os.sep + node)
+                            fileInfo._oldest.sort(
+                                key=lambda x: float(x.split(':')[0]))
+                            fileInfo._timeOldest = float(
+                                fileInfo._oldest[-1].split(':')[0])
+                if ((fileInfo._dirPattern is None or fileInfo._dirPattern.match(node) is None)
+                        and (maxDepth is None or maxDepth < 0 or depth < maxDepth)):
+                    infoOneDir(path + os.sep + node, depth + 1, fileInfo)
+                else:
+                    fileInfo._ignoredDirs += 1
+            else:  # not isDir
+                if fileInfo._dirsOnly:
+                    fileInfo._ignoredFiles += 1
+                    continue
+                if (fileInfo._filePattern is None or fileInfo._filePattern.match(node) is not None):
+                    fileInfo._fileSizes += stats.st_size
+                    fileInfo._fileCount += 1
+                    length = len(fileInfo._largest)
+                    if (fileInfo._maxLargest > 0 and (length < fileInfo._maxLargest
+                                                      or stats.st_size > fileInfo._sizeLargest)):
+                        if not base.LinuxUtils.isReadable(stats, euid, egid):
+                            fileInfo._ignoredFiles += 1
+                        else:
+                            if length >= fileInfo._maxLargest:
+                                del fileInfo._largest[0]
+                            fileInfo._largest.append(
+                                str(stats.st_size) + ':' + path + os.sep + node)
+                            fileInfo._largest.sort(
+                                key=lambda x: float(x.split(':')[0]))
+                            fileInfo._sizeLargest = float(
+                                fileInfo._largest[-1].split(':')[0])
+                    length = len(fileInfo._smallest)
+                    if (fileInfo._maxSmallest > 0 and (stats.st_size >= fileInfo._minSize
+                                                       and (length < fileInfo._maxSmallest
+                                                            or stats.st_size > fileInfo._sizeSmallest))):
+                        if not base.LinuxUtils.isReadable(stats, euid, egid):
+                            fileInfo._ignoredFiles += 1
+                        else:
+                            if length >= fileInfo._maxSmallest:
+                                del fileInfo._smallest[-1]
+                            fileInfo._smallest.insert(0,
+                                                      str(stats.st_size) + ':' + path + os.sep + node)
+                            fileInfo._smallest.sort(
+                                key=lambda x: float(x.split(':')[0]))
+                            fileInfo._sizeSmallest = float(
+                                fileInfo._smallest[-1].split(':')[0])
+                    length = len(fileInfo._youngest)
+                    if (fileInfo._maxYoungest > 0 and (length < fileInfo._maxYoungest
+                                                       or stats.st_mtime > fileInfo._timeYoungest)):
+                        if not base.LinuxUtils.isReadable(stats, euid, egid):
+                            fileInfo._ignoredFiles += 1
+                        else:
+                            if length >= fileInfo._maxYoungest:
+                                del fileInfo._youngest[0]
+                            fileInfo._youngest.append(
+                                str(stats.st_mtime) + ':' + path + os.sep + node)
+                            fileInfo._youngest.sort(
+                                key=lambda x: float(x.split(':')[0]))
+                            fileInfo._timeYoungest = float(
+                                fileInfo._youngest[0].split(':')[0])
+                    length = len(fileInfo._oldest)
+                    if (fileInfo._maxOldest > 0 and (length < fileInfo._maxOldest
+                                                     or stats.st_mtime < fileInfo._timeOldest)):
+                        if not base.LinuxUtils.isReadable(stats, euid, egid):
+                            fileInfo._ignoredFiles += 1
+                        else:
+                            if length >= fileInfo._maxOldest:
+                                del fileInfo._oldest[-1]
+                            fileInfo._oldest.insert(
+                                0, str(stats.st_mtime) + ':' + path + os.sep + node)
+                            fileInfo._oldest.sort(
+                                key=lambda x: float(x.split(':')[0]))
+                            fileInfo._timeOldest = float(
+                                fileInfo._oldest[-1].split(':')[0])
+                else:
+                    fileInfo._ignoredFiles += 1
+                continue
+    # end of infoOneDir()
+    if fileInfo is None:
+        fileInfo = DirInfo(maxYoungest, maxLargest, maxOldest,
+                           maxSmallest, minSize, dirsOnly, filesOnly, trace)
+    if filePattern is not None:
+        fileInfo._filePattern = base.StringUtils.regExprCompile(
+            filePattern, 'file pattern')
+    if dirPattern is not None:
+        fileInfo._filePattern = base.StringUtils.regExprCompile(
+            dirPattern, 'dir pattern')
+
+    euid = os.geteuid()
+    egid = os.getegid()
+    fileInfo._maxYoungest = maxYoungest
+    fileInfo._maxLargest = maxLargest
+    fileInfo._maxOldest = maxOldest
+    fileInfo._maxDepth = maxDepth
+    infoOneDir(path, 0, fileInfo)
+    return fileInfo
+
+
+def distinctPaths(path1, path2):
+    '''Tests whether two paths are not part of each other.
+    @param path1: first path to test
+    @param path2: 2nd path to test
+    @return: True: path1 is not parent of path2 and path2 is not parent of path1
+    '''
+    dir1 = os.path.realpath(path1)
+    dir2 = os.path.realpath(path2)
+    return not dir1.startswith(dir2) and not dir2.startswith(dir1)
+
+
+def endOfLinkChain(filename):
+    '''Returns the last entry of a symbolic link chain or None.
+    @param filename: the first entry of a symbol link chain
+    @return: None: not existing nodes in the link chain Otherwise: the last element of the chain
+    '''
+    rc = os.path.realpath(filename)
+    if not os.path.lexists(rc) or os.path.islink(rc):
+        _error('invalid entry {} in the symbolic link chain: {}'.format(rc, filename))
+        rc = None
+    return rc
+
+
+def ensureDirectory(directory, mode=0o777, user=None, group=None):
+    '''Ensures that the given directory exists.
+    @param directory: the complete name
+    @return: None: could not create the directory
+        otherwise: the directory's name
+    '''
+    if not os.path.isdir(directory):
+        try:
+            os.lstat(directory)
+            os.unlink(directory)
+        except FileNotFoundError:
+            pass
+        _log('creating {}{} ...'.format(
+            directory, os.sep), base.Const.LEVEL_SUMMARY)
+        try:
+            os.makedirs(directory, mode)
+            os.chmod(directory, mode)
+        except OSError as exc:
+            _error('cannot create dir {}: {}'.format(directory, str(exc)))
+        if not os.path.isdir(directory):
+            directory = None
+        elif user is not None or group is not None:
+            os.chown(directory, base.LinuxUtils.userId(
+                user), base.LinuxUtils.groupId(group))
+    return directory
+
+
+def ensureFileDoesNotExist(filename):
+    '''Ensures that a file does not exist.
+    @param filename: the file to delete if it exists.
+    '''
+    if os.path.lexists(filename):
+        try:
+            try:
+                if os.path.isdir(filename):
+                    _log('removing {}{} ...'.format(
+                        filename, os.sep), base.Const.LEVEL_DETAIL)
+                    shutil.rmtree(filename, False)
+                else:
+                    _log('removing {} ...'.format(
+                        filename), base.Const.LEVEL_DETAIL)
+                    os.unlink(filename)
+            except OSError as exp:
+                _error('cannot delete {:s}: {:s}'.format(filename, str(exp)))
+        except FileNotFoundError:
+            pass
+
+
+def ensureFileExists(filename, content=''):
+    '''Ensures that a file does not exist.
+    @param filename: the file to create if it does not exist
+    @param content: this text will be stored for a new created file
+    '''
+    try:
+        if os.path.exists(filename):
+            if os.path.isdir(filename):
+                _log('is a directory: {}'.format(
+                    filename), base.Const.LEVEL_DETAIL)
+        else:
+            _log('creating {} ...'.format(filename), base.Const.LEVEL_DETAIL)
+            base.StringUtils.toFile(filename, content)
+    except OSError as exc:
+        _error('problems with {}: {}'.format(filename, str(exc)))
+
+
+def ensureSymbolicLink(source, target, createTarget=True):
+    '''Ensures that a directory exists.
+    @param source: the full name of the link source, e.g. '../sibling'
+    @param target: full name of the file of type 'link'
+    @param createTarget: creates the target if it does not exist
+    @return: True: the link exists
+    '''
+    info = None
+    try:
+        info = os.lstat(target)
+    except FileNotFoundError:
+        pass
+    if info is not None:
+        if os.path.islink(target):
+            oldLink = os.readlink(target)
+            if oldLink != source:
+                _log('changing link from {} to {}'.format(
+                    oldLink, source), base.Const.LEVEL_DETAIL)
+                os.unlink(target)
+        elif os.path.isdir(target):
+            _error('target {} is already a directory (not a link)'.format(target))
+        else:
+            _log('removing the non link file ' +
+                 target, base.Const.LEVEL_DETAIL)
+            os.unlink(target)
+    if not os.path.exists(target):
+        baseDir = os.path.dirname(target)
+        if not os.path.isdir(baseDir) and createTarget:
+            ensureDirectory(baseDir)
+        hasParent = os.path.isdir(baseDir)
+        if not hasParent:
+            _error('parent of target is not a directory: ' + baseDir)
+        realPath = os.path.join(target, source)
+        absSource = os.path.normpath(realPath)
+        if not os.path.exists(absSource):
+            _error('missing source {} [= {}]'.format(source, absSource))
+        elif hasParent:
+            _log('creating symbol link {} -> {}'.format(source, target),
+                 base.Const.LEVEL_DETAIL)
+            os.symlink(source, target)
+    rc = os.path.islink(target) and os.readlink(target) == source
+    return rc
+
+
+def extendedAttributesOf(path):
+    '''Returns the attributes of a file (returned from /usr/bin/lsattr).
+    Important attributes: c(ompression) (no)C(OW) a(ppendOnly) (no)A(timeUpdates) (synchronous)D(irectoryUpdates)
+    I(mmutable) (data)J(ournaling) S(ynchronousUpdates) u(ndeletable)
+    @param path: the file to inspect
+    @return: a list of attributes, e.g. 'cC' or ''
+    '''
+    helper = base.ProcessHelper.ProcessHelper(GLOBAL_LOGGER)
+    helper.execute(['/usr/bin/lsattr', path], False, storeOutput=True)
+    rc = ('' if not helper._output else helper._output[0]).split(' ')[0].replace('-', '')
+    return rc
+
+
+def expandPathPlaceholders(pattern, filename):
+    '''Expands placeholders in a pattern with the current date time or parts of a related filename.
+    @param pattern: a string with placeholders:
+        %date%: the current date %datetime%: the current date and time
+        %seconds%: the current date time as seconds after the epoche
+        %path%: the path of source %node%: the node of source
+        %name%: the name of source (without extension) %ext%: the extension of source
+    @param filename: the placeholders can be parts of this filename
+    @return: pattern with expanded placeholders
+    '''
+    parts = splitFilename(filename)
+    now = datetime.datetime.now()
+    for matcher in re.finditer(r'%(date(time)?|seconds|path|node|name|ext)%', pattern):
+        name = matcher.group(1)
+        macro = matcher.group(0)
+        if name == 'date':
+            value = now.strftime('%Y.%m.%d')
+        elif name == 'datetime':
+            value = now.strftime('%Y.%m.%d-%H_%M_%S')
+        elif name == 'seconds':
+            value = now.strftime('%a')
+        elif name == 'path':
+            value = parts['path']
+        elif name == 'node':
+            value = parts['node']
+        elif name == 'name':
+            value = parts['fn']
+        elif name == 'ext':
+            value = parts['ext']
+        pattern = pattern.replace(macro, value)
+    return pattern
+
+
+def fileClass(path):
+    '''Returns the file class of the file.
+    @param path: the full filename
+    @return: a tuple (class, subclass): class: 'container', 'text', 'binary', 'unknown'
+            subclass of 'container': 'dir', 'tar', 'tgz', 'zip'
+            subclass of 'text': 'xml', 'shell'
+    '''
+    def isBinaryByte(bb):
+        rc = bb < 0x09 or (0x0d < bb < 0x20)
+        return rc
+
+    def isBinary(byteArray):
+        found = 0
+        rc = False
+        # for ix in range(len(byteArray)):
+        #    bb = byteArray[ix]
+        for bb in byteArray:
+            if bb == b'\x00':
+                rc = True
+                break
+            elif isBinaryByte(bb):
+                found += 1
+                if found > 100 or found > len(byteArray) / 10:
+                    rc = True
+                    break
+        return rc
+
+    def isNullString(byteArray):
+        '''Tests whether the byteArray is a text delimited with 0.
+        @param byteArray: array to test
+        @return True: only text and '\0' is part of byteArray
+        '''
+        ix = 0
+        rc = True
+        hasNull = False
+        while ix < len(byteArray):
+            if byteArray[ix] == 0:
+                hasNull = True
+            elif isBinaryByte(byteArray[ix]):
+                rc = False
+                break
+            ix += 1
+        return rc and hasNull
+
+    def isNullNumber(byteArray):
+        '''Tests whether the byteArray are digits delimited with 0.
+        @param byteArray: array to test
+        @return True: only decimal digits and '\0' is part of byteArray
+        '''
+        ix = 0
+        rc = True
+        hasNull = False
+        while ix < len(byteArray):
+            if byteArray[ix] == 0:
+                hasNull = True
+            elif not (byteArray[ix] >= 0x30 and byteArray[ix] <= 0x39):  # TAB
+                rc = False
+                break
+            ix += 1
+        return rc and hasNull
+    if os.path.isdir(path):
+        (theClass, subClass) = ('container', 'dir')
+    else:
+        with open(path, 'rb') as fp:
+            start = fp.read(4096)
+            if start.startswith(b'\x1f\x8b\x08'):
+                (theClass, subClass) = ('container', 'tar')
+            elif start.startswith(b'BZ') and isBinary(start[8:80]):
+                (theClass, subClass) = ('container', 'tar')
+            elif start.startswith(b'PK') and isBinary(start[2:32]):
+                (theClass, subClass) = ('container', 'zip')
+            elif isNullString(start[0:100]) and isNullNumber(start[100:0x98]):
+                (theClass, subClass) = ('container', 'tar')
+            elif (start[0:100].lower().find(b'<xml>') >= 0 or start[0:100].lower().find(b'<html') >= 0) and not isBinary(start):
+                (theClass, subClass) = ('text', 'xml')
+            elif len(start) > 5 and start.startswith(b'#!') and not isBinary(start):
+                (theClass, subClass) = ('text', 'shell')
+            elif isBinary(start):
+                (theClass, subClass) = ('binary', 'binary')
+            else:
+                (theClass, subClass) = ('text', 'text')
+    return (theClass, subClass)
+
+
+def fileType(path):
+    '''Returns the file type: 'file', 'dir', 'link', 'block'
+    @param path: the full filename
+    @return: the filetype: 'file', 'dir', 'link', 'block', 'char'
+    '''
+    if os.path.islink(path):
+        rc = 'link'
+    elif os.path.isdir(path):
+        rc = 'dir'
+    else:
+        rc = 'file'
+    return rc
+
+
+def fromBytes(line):
+    '''Converts a line with type bytes into type str.
+    @param line: line to convert
+    '''
+    try:
+        rc = line.decode()
+    except UnicodeDecodeError:
+        try:
+            rc = line.decode('latin-1')
+        except UnicodeDecodeError:
+            rc = line.decode('ascii', 'ignore')
+    return rc
+
+
+def hasWildcards(filename):
+    '''Tests whether a filename has wildcards.
+    @param filename: filename to test
+    @return: True: the filename contains wildcard like '*', '?' or '[...]'
+    '''
+    global REG_EXPR_WILDCARDS
+    rc = REG_EXPR_WILDCARDS.search(filename) is not None
+    return rc
+
+
+def joinFilename(parts):
+    '''Joins an array of parts  into a filename.
+    This is the other part of splitFilename().
+    @param parts: the array created by splitFilename
+    @return the filename decribed in parts
+    '''
+    rc = parts['path'] + parts['fn'] + parts['ext']
+    return rc
+
+
+def joinRelativePath(relPath, start=None):
+    '''Joins a relative path and a start path to a non relative path.
+    Example: joinPath('../brother', '/parent/sister') is '/parent/brother'
+    @param relPath: the relative path, e.g. '../sister'
+    @param start: the start point for joining, e.g. 'family/sister'. If None: the current directory
+    @returns the non relative path, e.g. 'family/brother'
+    '''
+    rc = None
+    relParts = relPath.split(os.sep)
+    if start is None:
+        start = os.curdir
+    startParts = start.split(os.sep)
+    if not relParts or relParts[0] != '..':
+        _error('not a relative path: ' + relPath)
+    else:
+        rc = ''
+        while relParts and relParts[0] == '..':
+            if not startParts:
+                _error('too many backsteps in relpath {} for start {}'.format(
+                    relPath, start))
+                rc = None
+                break
+            relParts = relParts[1:]
+            startParts = startParts[0:-1]
+        if rc is not None:
+            rc = os.sep.join(startParts)
+            if relParts:
+                if rc == '':
+                    rc = os.sep.join(relParts)
+                else:
+                    rc += os.sep + os.sep.join(relParts)
+    return rc
+
+
+def listFile(statInfo, full, orderDateSize=True, humanReadable=True):
+    '''Builds the info for one file (or directory)
+    @param statInfo: the info returned by os.(l)stat()
+    @param full: the filename
+    @param orderDateSize: True: order is date left of size False: order is size leftof date
+    @param humanReadable: True: better for reading (matching unit), e.g. "10.7 GByte" or "3 kByte"
+    '''
+    if full.startswith(CURRDIR_PREFIX):
+        full = full[2:]
+    if stat.S_ISDIR(statInfo.st_mode):
+        size = '<dir>'
+    elif stat.S_ISLNK(statInfo.st_mode):
+        size = '<link>'
+        full += ' -> ' + os.readlink(full)
+    elif humanReadable:
+        size = "{:>8s}".format(base.StringUtils.formatSize(statInfo.st_size))
+    else:
+        size = '{:13.6f} MB'.format(statInfo.st_size / 1000000)
+    fdate = datetime.datetime.fromtimestamp(statInfo.st_mtime)
+    dateString = fdate.strftime("%Y.%m.%d %H:%M:%S")
+    if orderDateSize:
+        rc = '{:s} {:>12s} {:s}'.format(dateString, size, full)
+    else:
+        rc = '{:>12s} {:s} {:s}'.format(size, dateString, full)
+    return rc
+
+
+def mountPointOf(path, mountFile='/proc/mounts'):
+    '''Returns the mount point of the filesystem of a given directory.
+    @param path: the path to inspect
+    @return: (<mount-point>, <fstype>) the mount point of the filesystem containing the path and the filesystem name
+    '''
+    rc = None
+    fsType = None
+    with open(mountFile, 'r') as fp:
+        for line in fp:
+            parts = line.split(' ')
+            if len(parts) > 3 and path.startswith(parts[1]) and (rc is None or len(rc) < len(parts[1])):
+                fsType = parts[2]
+                rc = parts[1]
+    return (rc, fsType)
+
+
+def moveFile(source, target, removeAlways=True, createBaseDir=True):
+    '''Moves a file from one location to another.
+    If both parent directories are in the same filesytem rename is used.
+    Otherwise a copy is done and a deletion of the source.
+    @param source: the file to move
+    @param target: the target filename
+    @param removeAlways: True: the source will be deleted after copying
+    @param createBaseDir: True: the parent directory of target will be created if it does not exists
+    '''
+    if createBaseDir:
+        baseDir = os.path.dirname(target)
+        ensureDirectory(baseDir)
+    try:
+        os.rename(source, target)
+    except OSError:
+        try:
+            shutil.copy2(source, target)
+            if removeAlways:
+                try:
+                    os.unlink(source)
+                except OSError as exc2:
+                    _error(f'cannot delete {source} after moving: {exc2}')
+        except OSError as exc:
+            _error(f'cannot copy {source} to {target}: {exc}')
+
+
+def pathToNode(path):
+    '''Changed a path into a name which can be used as node (of a filename).
+    @param path: the path to convert
+    @return: path with replaced path separators
+    '''
+    rc = path.replace(os.sep, '_').replace(':', '_')
+    return rc
+
+
+def replaceExtension(filename, extension):
+    '''Replaces the extension of a filename.
+    @param filename: the filename to process
+    @param extension: the new extension
+    @return: the filename with the new extension
+    '''
+    ix = filename.rfind('.')
+    ix2 = filename.rfind(os.sep)
+    if ix > ix2 + 1:
+        rc = filename[0:ix] + extension
+    else:
+        rc = filename + extension
+    return rc
+
+def splitFilename(full):
+    '''Splits a filename into its parts.
+    This is the other part of joinFilename().
+    @param full: the filename with path
+    @return: a dictionary with the keys 'full', 'path', 'node', 'fn', 'ext'
+        example: { 'full': '/home/jonny.txt', 'path': '/home/', 'node' : 'jonny.txt', 'fn': 'jonny' , 'ext': '.txt' }
+    '''
+    rc = dict()
+    rc['full'] = full
+    ix = full.rfind(os.sep)
+    if ix < 0:
+        rc['path'] = ''
+        node = rc['node'] = full
+    else:
+        rc['path'] = full[0:ix + 1]
+        node = rc['node'] = full[ix + 1:]
+    ix = node.rfind('.', 1)
+    if ix < 0:
+        rc['fn'] = node
+        rc['ext'] = ''
+    else:
+        rc['fn'] = node[0:ix]
+        rc['ext'] = node[ix:]
+    return rc
+
+
+def setLogger(logger):
+    '''Sets the global logger.
+    @param logger: the global logger
+    '''
+    global GLOBAL_LOGGER
+    GLOBAL_LOGGER = logger
+
+
+def setUnitTestMode(mode):
+    '''Sets special behaviour for unit tests.
+    '''
+    global GLOBAL_UNIT_TEST_MODE
+    GLOBAL_UNIT_TEST_MODE = mode
+
+
+def setModified(path, timeUnix, date=None):
+    '''Sets the file modification time.
+    @precondition: exactly one of date and timeUnix must be None and the other not None
+    @param path: the full path of the file to modify
+    @param timeUnix: None or the time to set (unix timestamp since 1.1.1970)
+    @param date: None or the datetime to set (datetime.datetime instance)
+    @return: True: success False: precondition raised
+    '''
+    dateModified = None
+    rc = True
+    if date is not None:
+        dateModified = time.mktime(date.timetuple())
+    elif timeUnix is None:
+        rc = False
+    else:
+        dateModified = timeUnix
+    if dateModified is not None:
+        try:
+            os.utime(path, (int(dateModified), int(dateModified)))
+        except Exception as exc:
+            raise exc
+    return rc
+
+
+def tail(filename, maxLines=1, withLineNumbers=False):
+    '''Returns the tail of a given file.
+    @param filename: the file to inspect
+    @param maxLines: the number of lines to return (or less)
+    @param withLineNumbers: True: add line numbers at the begin of line
+    @return: a list of lines from the end of the file
+    '''
+    lines = []
+    if maxLines < 1:
+        maxLines = 1
+    with open(filename, "r") as fp:
+        lineNo = 0
+        for line in fp:
+            lineNo += 1
+            if len(lines) >= maxLines:
+                del lines[0]
+            lines.append(line)
+        if withLineNumbers:
+            lineNo -= len(lines) - 1
+            for ix, line in enumerate(lines):
+                lines[ix] = '{}: {}'.format(lineNo, line)
+                lineNo += 1
+    return lines
+
+
+def tempFile(node, subDir=None):
+    '''Returns the name of a file laying in the temporary directory.
+    @param node: the filename without path
+    @param subdir: None or a subdirectory in the temp directory (may be created)
+    '''
+    path = tempfile.gettempdir() + os.sep
+    if subDir is not None:
+        path += subDir
+        os.makedirs(path, 0o777, True)
+        path += os.sep
+    path += node
+    return path
+
+
+def unpack(archive, target, clear=False):
+    '''Copies the content of an archive (tar, zip...) into a given directory.
+    @param archive: name of the archive, the extension defines the type: '.tgz': tar '.zip': zip
+    @param target: the directory which will be filled by the archive content. Will be created if needed
+    '''
+    if not os.path.exists(target):
+        os.makedirs(target, 0o777, True)
+    elif not os.path.isdir(target):
+        _error('target is not a directory: ' + target)
+        archive = None
+    elif clear:
+        clearDirectory(target)
+    if archive is None:
+        pass
+    elif archive.endswith('.tgz'):
+        tar = tarfile.open(archive, 'r:gz')
+        tar.extractall(target)
+    elif archive.endswith('.zip'):
+        zipFile = zipfile.ZipFile(archive, 'r')
+        zipFile.extractall(target)
+    else:
+        _error('unknown file extend: ' + archive)
+
+
+def main():
+    '''The main function.
+    '''
+    info1 = directoryInfo('/etc')
+    print('{}: file(s): {} / {:.3f} MB dir(s): {} ignored (files/dirs): {} / {}'.format(
+        '/etc', info1._fileCount, info1._fileSizes / 1024 / 1024.0,
+        info1._dirCount, info1._ignoredFiles, info1._ignoredDirs))
+    lines1 = tail('/etc/fstab', 5, True)
+    print('{}:\n{}'.format('/etc/fstab', ''.join(lines1)))
+
+
+if __name__ == '__main__':
+    main()
diff --git a/base/JavaConfig.py b/base/JavaConfig.py
new file mode 100644 (file)
index 0000000..5aaf05b
--- /dev/null
@@ -0,0 +1,118 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import re
+import os.path
+
+
+class JavaConfig:
+    '''
+    Handles a java style configuration file.
+    Format:
+    <variable> = <value>
+    # comment
+    '''
+
+    def __init__(self, filename, logger, ignoreIniHeader=False):
+        '''
+        Constructor.
+        @param filename: None: the instance remain "empty" otherwise: the filename with path
+        @param logger: the logger
+        @param ignoreIniHeader: True: '[<section>]' will be ignored
+        '''
+        self._ignoreIniHeader = ignoreIniHeader
+        self._vars = dict()
+        self._logger = logger
+        if filename is not None:
+            self.readConfig(filename)
+
+    def readConfig(self, filename):
+        '''Reads the configuration file and put the data into the instance.
+        @param filename: the name of the configuration file
+        '''
+        self._filename = filename
+        self._vars = dict()
+        regExpr = re.compile(r'([\w.]+)\s*=\s*(.*)$')
+        if not os.path.exists(filename):
+            self._logger.error('missing ' + filename)
+        else:
+            with open(filename, "r") as fp:
+                lineNo = 0
+                for line in fp:
+                    lineNo += 1
+                    line = line.strip()
+                    if line.startswith('#') or line == '':
+                        continue
+                    matcher = regExpr.match(line)
+                    if matcher is not None:
+                        self._vars[matcher.group(1)] = matcher.group(2)
+                    elif self._ignoreIniHeader and line.startswith('['):
+                        continue
+                    else:
+                        self._logger.error('{:s} line {:d}: unexpected syntax [expected: <var>=<value>]: {:s}'.format(
+                            filename, lineNo, line))
+
+    def getBool(self, variable, defaultValue=None):
+        '''Returns the value of a given variable.
+        @param variable: name of the Variable
+        @param defaultValue: if variable does not exist this value is returned
+        @return: None: Variable not found or not a bool value
+            otherwise: the bool value
+        '''
+        rc = defaultValue
+        if variable in self._vars:
+            value = self._vars[variable].lower()
+            if value in ('t', 'true', 'yes'):
+                rc = True
+            elif value in ('f', 'false', 'no'):
+                rc = False
+            else:
+                self._logger.error("{}: variable {} is not a boolean: {}".format(
+                    self._filename, variable, value))
+                rc = defaultValue
+        return rc
+
+    def getInt(self, variable, defaultValue=None):
+        '''Returns the value of a given variable.
+        @param variable: name of the Variable
+        @param defaultValue: if variable does not exist this value is returned
+        @return: None: Variable not found or not an integer
+            otherwise: the int value
+        '''
+        rc = defaultValue
+        if variable in self._vars:
+            value = self._vars[variable]
+            try:
+                rc = int(value)
+            except ValueError:
+                self._logger.error("{}: variable {} is not an integer: {}".format(
+                    self._filename, variable, value))
+                rc = defaultValue
+        return rc
+
+    def getString(self, variable, defaultValue=None):
+        '''Returns the value of a given variable.
+        @param variable: name of the Variable
+        @param defaultValue: if variable does not exist this value is returned
+        @return: None: Variable not found otherwise: the value
+        '''
+        rc = defaultValue if variable not in self._vars else self._vars[variable]
+        return rc
+
+    def getKeys(self, regExpr=None):
+        r'''Returns an array of (filtered) keys.
+        @param regExpr: None or a regular expression to filter keys. regExpr can be an object or a text
+            example: re.compile(r'^\s*pattern.\d+$', re.I)
+        @return: the array of sorted keys matching the regExpr
+        '''
+        if isinstance(regExpr, str):
+            regExpr = re.compile(regExpr)
+        keys = self._vars.keys()
+        rc = []
+        for key in keys:
+            if regExpr is None or regExpr.search(key):
+                rc.append(key)
+        rc.sort()
+        return rc
diff --git a/base/JobController.py b/base/JobController.py
new file mode 100644 (file)
index 0000000..408d9fc
--- /dev/null
@@ -0,0 +1,123 @@
+'''
+Wait for jobs written as files in a defined directory.
+
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import time
+import os.path
+import random
+
+import base.StringUtils
+
+
+class JobController:
+    '''Wait for jobs written as files in a defined directory.
+    Needed: overriding process()
+    Format of the job file:
+    <separator><name><separator><argument1>...
+    Example of a job file:
+    |email|a@bc.de|Greetings|Greetings from your family
+    '''
+
+    def __init__(self, jobDirectory, cleanInterval, logger):
+        '''Constructor.
+        @param jobDirectory: the jobs will be expected in this directory
+        @param cleanInterval: files older than this amount of seconds will be deleted
+        @param logger: for messages
+        '''
+        self._jobDirectory = jobDirectory
+        if not os.path.exists(jobDirectory):
+            os.makedirs(jobDirectory, 0o777, True)
+        self._cleanInterval = cleanInterval
+        self._logger = logger
+
+    def check(self):
+        '''Checks whether a new job is requested.
+        @return: True: a new job has been found and processed
+        '''
+        files = os.listdir(self._jobDirectory)
+        now = time.time()
+        found = False
+        for file in files:
+            full = self._jobDirectory + os.sep + file
+            if not file.endswith('.job'):
+                date = os.path.getmtime(full)
+                if date < now - self._cleanInterval:
+                    self._logger.log('cleaning too old file {}'.format(
+                        file), base.Const.LEVEL_LOOP)
+                    os.unlink(full)
+                    if os.path.exists(full):
+                        self._logger.error('cannot delete ' + full)
+            else:
+                content = base.StringUtils.fromFile(full)
+                if len(content) < 2:
+                    self._logger.error('cleaning empty job file: ' + file)
+                    os.unlink(full)
+                    continue
+                separator = content[0]
+                parts = content[1:].split(separator)
+                self._logger.log(
+                    'processing ' + parts[0], base.Const.LEVEL_SUMMARY)
+                self.process(parts[0], parts[1:])
+                self._logger.log('removing processed job file',
+                                 base.Const.LEVEL_FINE)
+                os.unlink(full)
+                found = True
+                break
+        return found
+
+    def jobDirectory(self):
+        '''Returns the current job directory.
+        @return: the job directory
+        '''
+        return self._jobDirectory
+
+    def process(self, name, args):
+        '''Dummy method for processing a job. Must be overridden.
+        @param name: name of the job
+        @param args: the arguments as list
+        @return False: error
+        '''
+        base.StringUtils.avoidWarning(name)
+        base.StringUtils.avoidWarning(args)
+        self._logger('missing overriding method process()')
+        return False
+
+    @staticmethod
+    def writeJob(name, args, directory, logger):
+        '''Writes a job into a job file.
+        @param name: name of the job
+        @param args: arguments as a list
+        @param directory: the name of the job directory
+        @param logger: for messages
+        @return: True: success
+        '''
+        rc = True
+        chars = name + ''.join(args)
+        separator = None
+        for item in ['|', '\t', '^', '°', '#', '~', '/', '\\', '`', '?', '$', '%']:
+            if chars.find(item) < 0:
+                separator = item
+                break
+        if separator is None:
+            logger.error('I am confused: no separator is possible')
+            rc = False
+        else:
+            fn = '{}{}t{:05d}{:x}.xxx'.format(directory, os.sep, int(
+                time.time()) % 86400, random.randint(0x1000, 0xffff))
+            suffix = '' if args is None or not args else separator + \
+                separator.join(args)
+            content = separator + name + suffix
+            base.StringUtils.toFile(fn, content)
+            fn2 = fn.replace('.xxx', '.job')
+            try:
+                os.rename(fn, fn2)
+            except OSError as exc:
+                logger.error(f'cannot rename {fn} to {fn2}')
+        return rc
+
+
+if __name__ == '__main__':
+    pass
diff --git a/base/LinuxUtils.py b/base/LinuxUtils.py
new file mode 100644 (file)
index 0000000..5b74dc6
--- /dev/null
@@ -0,0 +1,360 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+
+import os
+import subprocess
+import re
+import stat
+import pwd
+import grp
+
+import base.StringUtils
+
+
+def diskFree(verboseLevel=0, logger=None):
+    '''Returns an info about the mounted filesystems.
+    @return: a list of info entries: entry: [mountPath, totalBytes, freeBytes, availableBytesForNonPrivilegs]
+    '''
+    if logger is not None and verboseLevel > base.Const.LEVEL_LOOP:
+        logger.log('taskFileSystem()...', verboseLevel)
+
+    rc = []
+    ignoredDevs = ['udev', 'devpts', 'tmpfs', 'securityfs', 'pstore',
+                   'cgroup', 'tracefs', 'mqueue', 'hugetlbfs', 'debugfs']
+    with open('/proc/mounts', 'r') as f:
+        for line in f:
+            dev, path, fstype, rest = line.split(None, 3)
+            base.StringUtils.avoidWarning(rest)
+            if logger is not None and verboseLevel >= base.Const.LEVEL_FINE:
+                logger.log(line, verboseLevel)
+            if (fstype in ['sysfs', 'proc'] or dev in ignoredDevs):
+                continue
+            if (path.startswith('/proc/') or path.startswith('/sys/') or path.startswith('/run/')
+                    or path.startswith('/dev/loop') or path.startswith('/snap/')):
+                continue
+            if not os.path.isdir(path):
+                continue
+            if logger is not None and verboseLevel >= base.Const.LEVEL_FINE:
+                logger.log(path + '...', verboseLevel)
+            info = diskInfo(path)
+            if info is not None:
+                rc.append(info)
+    return rc
+
+
+def diskInfo(path):
+    '''Returns some infe about a mounted block device.
+    @param path: the mount path
+    @return: None: not available otherwise: [mountPath, totalBytes, freeBytes, availableBytesForNonPrivilegs]
+    '''
+    rc = None
+    try:
+        stat1 = os.statvfs(path)
+        blocksize = stat1.f_bsize
+        # ....path, total, free, available
+        rc = [path, stat1.f_blocks * blocksize, stat1.f_bfree *
+              blocksize, stat1.f_bavail * blocksize]
+    except FileNotFoundError:
+        # if mounted by autofs: the path can not be found
+        pass
+    return rc
+
+
+def disksMounted(logger=None):
+    '''Returns a list of mounted filesystems.
+    @return: a list of mounted filesystems, e.g. ['/', '/home']
+    '''
+    if logger is not None:
+        logger.log('taskFileSystem()...', base.Const.LEVEL_LOOP)
+
+    rc = []
+    ignoredDevs = ['udev', 'devpts', 'tmpfs', 'securityfs', 'pstore',
+                   'cgroup', 'tracefs', 'mqueue', 'hugetlbfs', 'debugfs']
+    with open('/proc/mounts', 'r') as f:
+        found = []
+        for line in f:
+            dev, path, fstype, rest = line.split(None, base.Const.LEVEL_LOOP)
+            base.StringUtils.avoidWarning(rest)
+            if dev in found:
+                continue
+            found.append(dev)
+            if logger is not None:
+                logger.log(line.rstrip(), base.Const.LEVEL_LOOP)
+            if fstype == 'sysfs' or fstype == 'proc' or dev in ignoredDevs:
+                continue
+            if (path.startswith('/proc/')
+                    or path.startswith('/sys/') or path.startswith('/run/')
+                    or path.startswith('/dev/loop')
+                    or path.startswith('/snap/')):
+                continue
+            if not os.path.isdir(path):
+                continue
+            rc.append(path)
+    return rc
+
+
+def diskIo():
+    '''Returns a list of [diskname, countReads, countWrites, countDiscards] arrays.
+    Data are accumulated since last boot.
+    Note: sector size: 512 Byte
+    @see https://www.kernel.org/doc/Documentation/iostats.txt
+    @return: array of arrays [id, diskname, countReads, countWrites, countDiscards], e.g. [ ['8-0-sda', 299, 498, 22 ] ]
+    '''
+    rc = []
+    with open('/proc/diskstats', 'r') as fp:
+        for line in fp:
+            # 1......2.....3....4.............5...........6...........7.........8..............
+            # mainid subid name readscomplete readsmerged readsectors readmsecs writescomplete
+            # 9............10...........11.........12.........13.....14.............15................
+            # writesmerged writesectors writesmsec inprogress iomsec weightediomsec discardscompleted
+            # 16.............17...............18
+            # discardsmerged discardssectors  discardsmsec
+            # 8 0 sda 101755 2990 6113900 37622 69827 44895 1535408 41169 0 85216 2732 0 0 0 0
+            # 8 1 sda1 82 0 6368 22 0 0 0 0 0 76 0 0 0 0 0
+            parts = line.split()
+            rc.append(['{}-{}'.format(parts[0], parts[1]),
+                       parts[2], parts[5], parts[9], parts[16]])
+    return rc
+
+
+def groupId(nameOrId, defaultValue=None):
+    '''Returns the group id of a given group name.
+    @param nameOrId: normally a group. If this is a number this will taken as result
+    @param defaultValue: the result value when the group name is unknown
+    @return: defaultValue: unknown group name otherwise: the group id
+    '''
+    if isinstance(nameOrId, int):
+        rc = nameOrId
+    elif base.StringUtils.asInt(nameOrId) is not None:
+        rc = base.StringUtils.asInt(nameOrId)
+    else:
+        try:
+            rc = grp.getgrnam(nameOrId).gr_gid
+        except KeyError:
+            rc = defaultValue
+    return rc
+
+
+def isExecutable(statInfo, euid, egid):
+    '''Tests whether the file or directory) is executable
+    @param statInfo: the result of os.stat()
+    @param euid: the effective UID of the current process. We can get it with os.geteuid()
+    @param egid: the the effective GID of the current process. We can get it with os.getegid()
+    @return: True: the file is executable
+    '''
+    if statInfo.st_uid == euid:
+        # S_IXUSR S_IXGRP S_IXOTH
+        mask = (stat.S_IXUSR | stat.S_IXOTH)
+    elif statInfo.st_gid == egid:
+        mask = (stat.S_IXGRP | stat.S_IXOTH)
+    else:
+        mask = stat.S_IXOTH
+    return (statInfo.st_mode & mask) != 0
+
+
+def isReadable(statInfo, euid, egid):
+    '''Tests whether the file or directory) is readable.
+    @param statInfo: the result of os.stat()
+    @param euid: the effective UID of the current process. We can get it with os.geteuid()
+    @param egid: the the effective GID of the current process. We can get it with os.getegid()
+    @return: True: the file is readable
+    '''
+    if statInfo.st_uid == euid:
+        # S_IXUSR S_IXGRP S_IXOTH
+        mask = (stat.S_IRUSR | stat.S_IROTH)
+    elif statInfo.st_gid == egid:
+        mask = (stat.S_IRGRP | stat.S_IROTH)
+    else:
+        mask = stat.S_IROTH
+    return (statInfo.st_mode & mask) != 0
+
+
+def isWritable(statInfo, euid, egid):
+    '''Tests whether the file or directory) is writable.
+    @param statInfo: the result of os.stat()
+    @param euid: the effective UID of the current process. We can get it with os.geteuid()
+    @param egid: the the effective GID of the current process. We can get it with os.getegid()
+    @return: True: the file is writable
+    '''
+    if statInfo.st_uid == euid:
+        mask = (stat.S_IWUSR | stat.S_IWOTH)
+    elif statInfo.st_gid == egid:
+        mask = (stat.S_IWGRP | stat.S_IWOTH)
+    else:
+        mask = stat.S_IWOTH
+    return (statInfo.st_mode & mask) != 0
+
+
+def stress(patternDisks, patternInterface):
+    '''Returns the load data of a server.
+    Note: the byte data (ioReadBytes ... netWriteBytes) are summarized since boot time.
+    @param patternDisk: a regular expression of the disk devices used for the result (sum is built), e.g. 'sd[ab]'
+    @param patternInterface: a regular expression of the network interfaces used for the result (sum is built), e.g. 'eth0|wlan0'
+    @return: [ioReadBytes, ioWriteBytes, netReadBytes, netWriteBytes, load1Minute, memoryAvailable, swapAvailable]
+    '''
+    readIO = 0
+    writeIO = 0
+    rexprDisks = base.StringUtils.regExprCompile(patternDisks, 'disk pattern')
+    with open('/proc/diskstats', 'r') as fp:
+        for line in fp:
+            # 1......2.....3....4.............5...........6...........7.........8..............
+            # mainid subid name readscomplete readsmerged readsectors readmsecs writescomplete
+            # 9............10...........11.........12.........13.....14.............15................
+            # writesmerged writesectors writesmsec inprogress iomsec weightediomsec discardscompleted
+            # 16.............17...............18
+            # discardsmerged discardssectors  discardsmsec
+            # 8 0 sda 101755 2990 6113900 37622 69827 44895 1535408 41169 0 85216 2732 0 0 0 0
+            # 8 1 sda1 82 0 6368 22 0 0 0 0 0 76 0 0 0 0 0
+            parts = line.split()
+            if rexprDisks.match(parts[2]) is not None:
+                readIO += int(parts[5])
+                writeIO += int(parts[9])
+    readIO *= 512
+    writeIO *= 512
+    readNet = 0
+    writeNet = 0
+    rexprNet = base.StringUtils.regExprCompile(
+        patternInterface, 'interface pattern')
+    with open('/proc/net/dev', 'r') as fp:
+        for line in fp:
+            # 1......2........3......4....5....6....7.....8..........9.........10.......
+            # Inter-|   Receive                                                |  Transmit
+            # 11.....12....13...14...15....16......17
+            # face |bytes    packets errs drop fifo frame compressed multicast|bytes
+            # packets errs drop fifo colls carrier compressed
+            # lo:   33308     376    0    0    0     0          0         0    33308
+            # 376    0    0    0     0       0          0
+            parts = line.split()
+            # remove ':' from the first field:
+            if rexprNet.match(parts[0][0:-1]) is not None:
+                readNet += int(parts[1])
+                writeNet += int(parts[9])
+    with open('/proc/loadavg', 'rb') as fp:
+        loadMin1 = float(fp.read().decode().split()[0])
+    #@return: [TOTAL_RAM, AVAILABLE_RAM, TOTAL_SWAP, FREE_SWAP, BUFFERS]
+    with open('/proc/meminfo', 'r') as fp:
+        lines = fp.read().split('\n')
+        freeRam = _getNumber(lines[2])
+        freeSwap = _getNumber(lines[15])
+    return [readIO, writeIO, readNet, writeNet, loadMin1, freeRam, freeSwap]
+
+
+def userId(nameOrId, defaultValue=None):
+    '''Returns the user id of a given user name.
+    @param nameOrId: normally a username. If this is a number this will taken as result
+    @param defaultValue: the result value when the user name is unknown
+    @return: defaultValue: unknown user name otherwise: the user id
+    '''
+    if isinstance(nameOrId, int):
+        rc = nameOrId
+    elif base.StringUtils.asInt(nameOrId) is not None:
+        rc = base.StringUtils.asInt(nameOrId)
+    else:
+        try:
+            rc = pwd.getpwnam(nameOrId).pw_uid
+        except KeyError:
+            rc = defaultValue
+    return rc
+
+
+def users():
+    '''Returns the users currently logged in.
+    @return: None: parser error. otherwise: tuple of entries (USERNAME, IP, LOGINSTART, LOGINDURATION, CPUTIME)
+    '''
+    with subprocess.Popen('/usr/bin/w', stdout=subprocess.PIPE) as proc:
+        data = proc.stdout.read().decode()
+    lines = data.split('\n')[2:]
+    rc = []
+    for line in lines:
+        if line == '':
+            break
+        # hm       pts/0    88.67.239.209    21:17    1:32 m  6:37   0.04 s w
+        # hm       pts/0    88.67.239.209    21:17    60s  0.00s  0.00s w
+        parts = line.split()
+        if len(parts) < 4:
+            rc = None
+            break
+        rc.append((parts[0], parts[2], parts[3], parts[4],
+                   parts[5] if parts[5].find(':') > 0 else parts[6]))
+    return rc
+
+
+def load():
+    '''Returns average loads.
+    @return: [LOAD_1_MINUTE, LOAD_5_MINUTE, LOAD_10_MINUTE, RUNNING_PROCESSES, PROCESSES]
+    '''
+    with open('/proc/loadavg', 'rb') as fp:
+        data = fp.read().decode()
+        matcher = re.match(r'(\S+)\s+(\S+)\s+(\S+)\s+(\d+)/(\d+)', data)
+        if matcher is None:
+            rc = None
+        else:
+            rc = [float(matcher.group(1)), float(matcher.group(2)), float(matcher.group(3)),
+                  int(matcher.group(4)), int(matcher.group(5))]
+    return rc
+
+
+def _getNumber(line):
+    parts = line.split()
+    return int(parts[1])
+
+
+def memoryInfo():
+    '''Returns the memory usage.
+    @return: [TOTAL_RAM, AVAILABLE_RAM, TOTAL_SWAP, FREE_SWAP, BUFFERS]
+    '''
+    with open('/proc/meminfo', 'rb') as fp:
+        lines = fp.read().decode().split('\n')
+        rc = [_getNumber(lines[0]), _getNumber(lines[2]), _getNumber(
+            lines[14]), _getNumber(lines[15]), _getNumber(lines[3])]
+    return rc
+
+
+def mdadmInfo(filename='/proc/mdstat'):
+    '''Returns the info about the software raid systems.
+    @return: a list of array [name, type, members, blocks, status>,
+        e.g. [['md0', 'raid1', 'dm-12[0] dm-13[1]', 1234, 'OK'], ['md1', 'raid0', 'sda1[0] sdb1[1]', 1234, 'broken']]
+        status: 'OK', 'recovery', 'broken'
+    '''
+    rc = []
+    if os.path.exists(filename):
+        with open(filename, 'r') as fp:
+            # md2 : active raid1 sdc1[0] sdd1[1]
+            # md1 : active raid1 hda14[0] sda11[2](F)
+            rexpr1 = re.compile(r'^(\w+) : active (raid\d+) (.*)')
+            #  1953378368 blocks super 1.2 [2/2] [UU]
+            rexpr2 = re.compile(r'^\s+(\d+) blocks.*\[([_U]+)\]')
+            members = None
+            for line in fp:
+                matcher = rexpr1.match(line)
+                if matcher:
+                    name = matcher.group(1)
+                    aType = matcher.group(2)
+                    members = matcher.group(3)
+                    continue
+                matcher = rexpr2.match(line)
+                if matcher:
+                    blocks = matcher.group(1)
+                    status = matcher.group(2)
+                    status2 = 'broken' if status.find(
+                        '_') >= 0 or members is not None and members.find('(F)') > 0 else 'OK'
+                    rc.append([name, aType, members, int(blocks), status2])
+                    continue
+                if line.find('recovery') > 0:
+                    rc[len(rc) - 1][4] = 'recovery'
+    return rc
+
+
+def main():
+    '''main function.
+    '''
+    infos = diskFree()
+    for info in infos:
+        print(base.StringUtils.join(' ', info))
+
+
+if __name__ == '__main__':
+    main()
diff --git a/base/Logger.py b/base/Logger.py
new file mode 100644 (file)
index 0000000..b87b538
--- /dev/null
@@ -0,0 +1,56 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import os
+import datetime
+import base.BaseLogger
+import base.Const
+
+class Logger(base.BaseLogger.BaseLogger):
+    '''A feature reach class for logging messages of different levels.
+    '''
+
+    def __init__(self, logfile, verboseLevel):
+        '''Constructor.
+        @param logfile: the file for logging
+        @param verboseLevel: > 0: logging to stdout too
+        '''
+        base.BaseLogger.BaseLogger.__init__(self, verboseLevel)
+        self._logfile = logfile
+        # Test accessability:
+        try:
+            with open(self._logfile, 'a'):
+                pass
+            os.chmod(self._logfile, 0o666)
+        except OSError as exc:
+            msg = '+++ cannot open logfile {}: {}'.format(
+                self._logfile, str(exc))
+            print(msg)
+            self.error(msg)
+
+    def log(self, message, minLevel=base.Const.LEVEL_SUMMARY):
+        '''Logs a message.
+        @param message: the message to log
+        @param minLevel: the logging is done only if _verboseLevel >= minLevel
+        @return: true: OK false: error on log file writing
+        '''
+        rc = False
+        try:
+            if not self._inUse and self._mirrorLogger is not None:
+                self._mirrorLogger.log(message)
+            now = datetime.datetime.now()
+            message = now.strftime('%Y.%m.%d %H:%M:%S ') + message
+            if self._verboseLevel >= minLevel:
+                print(message)
+            with open(self._logfile, 'a') as fp:
+                rc = True
+                fp.write(message + '\n')
+        except OSError as exc:
+            print(str(exc))
+        return rc
+
+
+if __name__ == '__main__':
+    pass
diff --git a/base/MemoryLogger.py b/base/MemoryLogger.py
new file mode 100644 (file)
index 0000000..49441ac
--- /dev/null
@@ -0,0 +1,102 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import base.BaseLogger
+
+
+class MemoryLogger(base.BaseLogger.BaseLogger):
+    '''Implements a logger storing the logging messages in an internal array.
+    '''
+
+    def __init__(self, verboseLevel=0, verboseListMinLevel=99):
+        '''Constructor.
+        @param verboseLevel: > 0: the messages will be printed (to stdout)
+        @param verboseListMinLevel: messages with a higher level will be stored
+        '''
+        base.BaseLogger.BaseLogger.__init__(self, verboseLevel)
+        self._lines = []
+        self._listMinLevel = verboseListMinLevel
+
+    def clear(self):
+        '''Clears all messages and error messages.
+        '''
+        self._lines = []
+        self._firstErrors = []
+        self._errors = 0
+
+    def contains(self, string, errorsToo=False):
+        '''Tests whether the log contains a given string.
+        @param string: string to search
+        @param errorsToo: the errors will inspected too
+        @return: True: the log (or the errors) contains the string
+        '''
+        rc = False
+        for line in self._lines:
+            if not errorsToo and line.startswith('+++'):
+                continue
+            if line.find(string) >= 0:
+                rc = True
+                break
+        if not rc and errorsToo:
+            for line in self._firstErrors:
+                if line.find(string) >= 0:
+                    rc = True
+                    break
+        return rc
+
+    def derive(self, logger, messagesToo=False):
+        '''Transfers error to another logger.
+        '''
+        for item in self._firstErrors:
+            logger.error(item)
+        if messagesToo:
+            for item in self._lines:
+                logger.log(item, 4)
+
+    def getMessages(self):
+        '''Returns the internal messages as array.
+        @return: array of messages
+        '''
+        return self._lines
+
+    def log(self, message, minLevel=0):
+        '''Logs a message.
+        @param message: the message to log
+        @param minLevel: the logging is done only if _verboseLevel >= minLevel
+        @return: True: OK
+        '''
+        if self._verboseLevel >= minLevel:
+            print(message)
+        if self._listMinLevel >= minLevel:
+            self._lines.append(message)
+        return True
+
+    def matches(self, pattern, flags=0, errorsToo=False):
+        r'''Tests whether the log contains a given regular expression.
+        @param pattern: reg expression to search, e.g. r'\d+'
+        @param flags: flags of the method re.compile(), e.g. re.I (for ignore case)
+        @param errorsToo: the errors will inspected too
+        @return: True: the log contains the string
+        '''
+        rc = False
+        regExpr = base.StringUtils.regExprCompile(
+            pattern, 'memory logger pattern', None, flags == 0)
+        if regExpr is not None:
+            for line in self._lines:
+                if not errorsToo and line.startswith('+++'):
+                    continue
+                if regExpr.search(line):
+                    rc = True
+                    break
+        if not rc and errorsToo:
+            for line in self._firstErrors:
+                if regExpr.search(line):
+                    rc = True
+                    break
+        return rc
+
+
+if __name__ == '__main__':
+    pass
diff --git a/base/PortableRandom.py b/base/PortableRandom.py
new file mode 100644 (file)
index 0000000..d6bcfc4
--- /dev/null
@@ -0,0 +1,73 @@
+'''
+Created on 2023 Feb 26
+
+@author: wk
+'''
+import base.BaseRandom
+
+class PortableRandom(base.BaseRandom.BaseRandom):
+    '''
+    classdocs
+    '''
+    _offsets = [ 477417747081244, 11891569955439,
+    1112953394633955, 914449391256858, 574570619325411, 140389009826762,
+    608000936401952, 32991187017681, 158039946481952, 700357467346732,
+    968941481455215, 25223739256570, 471061646629072, 551047729047099,
+    907255805781784, 628387343904130, 893283886891000, 981075091853751,
+    776506900100360, 434511969151373, 177432087675717, 491951583746060,
+    299997671178038, 1110099901520936, 255708987865834, 578403292103942,
+    1093220808197141, 643105169062152, 189554682132125, 947667916711915,
+    599096422373408, 662711516075667, 112172498828425, 588478080163912,
+    720064562609749, 520347612306989, 330303796102313, 191695345476469,
+    419517186899079, 752629552906654, 18312389588488, 88428897947984,
+    675611758740110, 1064495336311691 ]
+    _countNumbers = len(_offsets)
+    _factors = [ 33554393, 23554387, 33554383, 32559983 ]
+    _countFactors = len(_factors)
+    _maxNumber = 1125899906842624 # 2**50
+    _maxFactor = 134217728 # 2**27 
+    def __init__(self):
+        '''
+        Constructor
+        '''
+        self._indexOffset = 0
+        self._indexFactor = 0
+        self._seed = 0
+        self._seed2 = 0
+        self.setSeed(0xfeadbeef, 0x1989211, 0x19910420)
+        
+    def nextInt(self, value1: int=0x7ffffffe, value2:int=None):
+        '''Returns a random integer from [0..maxValue]
+        @param value1: if value2 is None this is the largest return value (inclusive)
+            Otherwise this is the lowest return value
+        @param value2: None or the largest return value (inclusive)
+        @return a random number
+        '''
+        if value2 is None:
+            self._seed = ((self._seed % PortableRandom._maxFactor) \
+                          * PortableRandom._factors[self._indexFactor] \
+                          + PortableRandom._offsets[self._indexOffset] + self._seed2) \
+                          % PortableRandom._maxNumber
+            self._indexFactor = (self._indexFactor + 1) % PortableRandom._countFactors
+            self._indexOffset = (self._indexOffset + 1) % PortableRandom._countNumbers
+            rc = self._seed % (value1 + 1)
+        else:
+            if value1 > value2:
+                value1, value2 = (value2, value1)
+            range = value2 - value1
+            if range <= 0 or range > base.BaseRandom.BaseRandom._maxInt:
+                raise ValueError(f'PortableRandom::nextInt(): range too large: {range} / {self._maxInt}')
+            rc = value1 + self.nextInt(range)
+        return rc
+
+    def setSeed(self, seed1: int, seed2: int = 0x7654321, seed3: int = 0x3adf001):
+        '''Sets the generator state with until three secret integers.
+        @param seed1: the first secret
+        @param seed2: the second secret
+        @param seed3: the third secret
+        '''
+        self._seed = abs(seed1 + seed2 + seed3)
+        self._seed2 = seed2
+        self._indexOffset = abs(seed1 + seed3) // 47 % (PortableRandom._countNumbers)
+        self._indexFactor = abs(seed1 + seed2) // 61 % (PortableRandom._countFactors)
+
diff --git a/base/ProcessHelper.py b/base/ProcessHelper.py
new file mode 100644 (file)
index 0000000..8fbdc5d
--- /dev/null
@@ -0,0 +1,237 @@
+#! /usr/bin/python3
+'''
+processhelper: starting external scripts/programs
+
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import subprocess
+import tempfile
+import os
+import time
+
+import base.StringUtils
+
+
+class ProcessHelper:
+    '''Executes external processes.
+    '''
+
+    def __init__(self, logger):
+        '''Constructor:
+        @param logger: display output
+        '''
+        self._logger = logger
+        self._output = None
+        self._rawOutput = None
+        self._error = None
+
+    def execute(self, argv, logOutput, storeOutput=False, mode='!shell', timeout=None, currentDirectory=None):
+        '''Executes an external program with input from stdin.
+        @param argv: a list of arguments, starting with the program name
+        @param logOutput: True: the result of stdout is written to stdout via logger.
+        @param storeOutput: True: the raw output is available as self._output[]
+        @param timeout: None or the timeout of the external program
+        @return: None (logOutput==False) or array of strings
+        '''
+        curDir = self.pushd(currentDirectory)
+        if argv is None:
+            self._logger.error('execute(): missing argv (is None)')
+        elif curDir != '':
+            self._logger.log('executing: ' + ' '.join(argv),
+                             base.Const.LEVEL_LOOP)
+            shell = mode == 'shell'
+            proc = subprocess.Popen(
+                argv, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=shell)
+            (out, err) = proc.communicate(None, timeout)
+            self._output = []
+            self._error = []
+            if logOutput or storeOutput:
+                for line in out.decode().split('\n'):
+                    line2 = line.rstrip()
+                    if len(line) > 1:
+                        if storeOutput:
+                            self._output.append(line2)
+                        if logOutput:
+                            self._logger.log(line2, base.Const.LEVEL_SUMMARY)
+            for line in err.decode().split('\n'):
+                msg = line.rstrip()
+                if msg != '':
+                    self._error.append(msg)
+                    self._logger.error(msg)
+        self.popd(curDir)
+        return None if not logOutput else self._output
+
+    def executeCommunicate(self, process, inputString, logOutput, timeout):
+        '''Handles the output of subprocess calls.
+        @param process: the process to inspect
+        @param inputString: None or an input string
+        @param logOutput: True: output should be returned
+        @param timeout: the longest time a process should use
+        '''
+        if inputString is None:
+            (out, err) = process.communicate(timeout=timeout)
+        else:
+            (out, err) = process.communicate(inputString.encode(), timeout)
+        self._rawOutput = out
+        if logOutput:
+            for line in out.decode().split('\n'):
+                if line != '':
+                    self._output.append(line)
+                    self._logger.log(line, base.Const.LEVEL_SUMMARY)
+        for line in err.decode().split('\n'):
+            if line != '':
+                self._error.append(line)
+                self._logger.error(line)
+
+    def executeInput(self, argv, logOutput, inputString=None, mode='!shell', timeout=None):
+        '''Executes an external program with input from stdin.
+        @param argv: a list of arguments, starting with the program name
+        @param logOutput: True: the result of stdout is written to stdout via logger.
+            Note: the raw output is available as self._output[]
+        @param inputString: None or the input for the program as string
+        @param timeout: None or the timeout of the external program
+        '''
+        self._output = []
+        self._error = []
+        if inputString is None:
+            inputString = ''
+        self._logger.log('executing: ' + ' '.join(argv), base.Const.LEVEL_LOOP)
+        if mode == 'not used and shell':
+            fn = tempfile.gettempdir() + '/dbtool.' + str(time.time())
+            base.StringUtils.toFile(fn, inputString)
+            command = argv[0] + " '" + "' '".join(argv[1:]) + "' < " + fn
+            subprocess.run([command], check=True, shell=True)
+            os.unlink(fn)
+        else:
+            try:
+                proc = subprocess.Popen(argv, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
+                                        stderr=subprocess.PIPE, shell=mode == 'shell')
+                self.executeCommunicate(proc, inputString, logOutput, timeout)
+            except OSError as exc:
+                msg = str(exc)
+                self._logger.error(msg)
+                self._error = msg.split('\n')
+            except Exception as exc2:
+                msg = str(exc2)
+                self._logger.error(msg)
+                self._error = msg.split('\n')
+
+    def executeInputOutput(self, argv, inputString=None, logOutput=False, mode='!shell', timeout=None):
+        '''Executes an external program with input from stdin and returns the output.
+        @param argv: a list of arguments, starting with the program name
+        @param inputString: None or the input for the program as string
+        @param timeout: None or the timeout of the external program
+        @return: a list of lines (program output to stdout)
+        '''
+        self.executeInput(argv, logOutput, inputString, mode, timeout)
+        rc = self._output
+        if (rc is None or not rc) and self._rawOutput is not None and self._rawOutput != '':
+            try:
+                rc = self._rawOutput.decode('utf-8').split('\n')
+            except UnicodeDecodeError as exc:
+                self._logger.error('executeInputOutput(): {}\n[{}]\n"{}"'.format(
+                    str(exc), ','.join(argv), '' if inputString is None else inputString[0:80]))
+                rc = base.StringUtils.minimizeArrayUtfError(self._rawOutput.split(b'\n'),
+                                                            self._logger if self._logger._verboseLevel >= 2 else None)
+        return rc
+
+    def executeInChain(self, argv1, inputString, argv2, mode='shell', timeout=None):
+        '''Executes 2 programs with input from stdin as chain and returns the output.
+        @param argv1: a list of arguments for the first program, starting with the program name
+        @param inputString: None or the input for the first program as string
+        @param argv2: a list of arguments for the second program, starting with the program name
+        @param timeout: None or the timeout of the external program
+        @return: a list of lines (program output to stdout)
+        '''
+        self._output = []
+        self._error = []
+        self._logger.log('executing: ' + ' '.join(argv1) +
+                         '|' + ' '.join(argv2), base.Const.LEVEL_LOOP)
+        rc = []
+        if mode == 'shell':
+            fnOut = tempfile.gettempdir() + '/dbtool.out.' + str(time.time())
+            if inputString is None:
+                inputPart = ''
+            else:
+                fnIn = tempfile.gettempdir() + '/dbtool.in.' + str(time.time())
+                inputPart = "< '" + fnIn + "' "
+                base.StringUtils.toFile(fnIn, inputString)
+            command = (argv1[0] + " '" + "' '".join(argv1[1:]) + "' " + inputPart + "| "
+                       + argv2[0] + " '" + "' '".join(argv2[1:]) + "' > " + fnOut)
+            try:
+                subprocess.run([command], check=True, shell=True)
+                data = base.StringUtils.fromFile(fnOut)
+                rc = self._output = data.split('\n')
+            except Exception as exc:
+                self._logger.error(str(exc))
+            if inputString is not None:
+                os.unlink(fnIn)
+            os.unlink(fnOut)
+        else:
+            try:
+                p1 = subprocess.Popen(argv1, stdout=subprocess.PIPE)
+                p2 = subprocess.Popen(
+                    argv2, stdin=p1.stdout, stdout=subprocess.PIPE)
+                # Allow p1 to receive a SIGPIPE if p2 exits.
+                p1.stdout.close()
+                self.executeCommunicate(p2, None, True, timeout)
+                rc = self._output
+            except Exception as exc:
+                self._logger.error(str(exc))
+        return rc
+
+    def executeScript(self, script, node=None, logOutput=True, args=None, timeout=None):
+        '''Executes an external program with input from stdin.
+        @param script: content of the script
+        @param node: script name without path (optional)
+        @param logOutput: True: the result of stdout is written to stdout via logger.
+            Note: the raw output is available as self._output[]
+        @param args: None or an array of additional arguments, e.g. ['-v', '--dump']
+        @param timeout: None or the timeout of the external program
+        @return: None (logOutput==False) or array of strings
+        '''
+        self._logger.log('executing {}...'.format(
+            'script' if node is None else node), base.Const.LEVEL_LOOP)
+        if node is None:
+            node = 'processtool.script'
+        fn = tempfile.gettempdir() + os.sep + node + str(time.time())
+        base.StringUtils.toFile(fn, script)
+        os.chmod(fn, 0o777)
+        argv = [fn]
+        if args is not None:
+            argv += args
+        rc = self.execute(argv, logOutput, 'shell', timeout)
+        os.unlink(fn)
+        return rc
+
+    def popd(self, directory):
+        '''Changes the current direcory (if needed and possible).
+        @param directory: None or the new current directory
+        @return None: directory = None
+            '': changing directory failed
+            otherwise: the current directory (before changing)
+        '''
+        if directory is not None and directory != '':
+            os.chdir(directory)
+            if os.path.realpath(os.curdir) != os.path.realpath(directory):
+                self._logger.error('cannot change to directory ' + directory)
+
+    def pushd(self, directory):
+        '''Changes the current direcory (if needed and possible).
+        @param directory: None or the new current directory
+        @return None: directory = None
+            '': changing directory failed
+            otherwise: the current directory (before changing)
+        '''
+        if directory is None:
+            rc = None
+        else:
+            rc = os.curdir
+            os.chdir(directory)
+            if os.path.realpath(os.curdir) != os.path.realpath(directory):
+                os.chdir(rc)
+                self._logger.error('cannot change to directory ' + directory)
+                rc = ''
+        return rc
diff --git a/base/Scheduler.py b/base/Scheduler.py
new file mode 100644 (file)
index 0000000..838d958
--- /dev/null
@@ -0,0 +1,128 @@
+'''
+Administrates a time controlled list of tasks.
+
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import time
+import random
+
+
+class TaskInfo:
+    '''Abstract class of a task.
+    Override process().
+    '''
+    #@abstractmethod
+
+    def process(self, sliceInfo):
+        '''Processes the task.
+        @param sliceInfo: the current slice
+        '''
+        raise Exception('TaskInfo.process not overriden')
+
+
+class SliceInfo:
+    '''Holds the information over an entry in the time table.
+    '''
+
+    def __init__(self, taskInfo, scheduler, countCalls=1, interval=60, precision=0.1):
+        '''Constructor.
+        @param taskInfo: the task to do
+        @param scheduler: the parent
+        @param countCalls: The task has to be repeated so many times
+        @param interval: the time between two process
+        @param precision: a factor (< 1.0) of interval to spread the processing timestamps
+        '''
+        self._scheduler = scheduler
+        self._interval = interval
+        self._precision = precision
+        # None: forever otherwise: the number of rounds in the scheduler
+        self._countCalls = countCalls
+        self._taskInfo = taskInfo
+        self._id = scheduler.nextId()
+        self._nextCall = None
+
+    def calculateNextTime(self, interval=None, precision=None):
+        '''Calculates the timepoint of the next call.
+        @param interval: None: _interval is taken otherwise: the amount of seconds to the next processing
+        @param precision: None: self._precision is taken otherwise: a factor of interval to spread processing timestamps
+        '''
+        if interval is None:
+            interval = self._interval
+        if precision is None:
+            precision = self._precision
+        if precision == 0.0:
+            self._nextCall = time.time() + interval
+        else:
+            halfRange = interval * precision
+            rand = self._scheduler._random.randrange(0, 123456) / 123456.0
+            offset = interval + 2 * halfRange * rand - halfRange
+            self._nextCall = time.time() + offset
+
+
+class Scheduler:
+    '''Administrates a time controlled list of tasks.
+    Needed: overriding process()
+    '''
+
+    def __init__(self, logger):
+        '''Constructor.
+        @param logger: for messages
+        '''
+        self._slices = []
+        self._logger = logger
+        self._random = random.Random()
+        self._currentId = 0
+
+    def insertSlice(self, sliceInfo, startInterval=None, startPrecision=None):
+        '''Inserts a slice info into the time ordered slice list.
+        @param sliceInfo: the slice to insert
+        @param startInterval: None: sliceInfo._interval is taken. Otherwise: the amount of seconds to the next processing
+        @param startPrecision: a factor (< 1.0) of startInterval to spread the processing timestamps
+        '''
+        ix = len(self._slices) - 1
+        sliceInfo.calculateNextTime(startInterval, startPrecision)
+        if sliceInfo._id == 2:
+            sliceInfo._id = 2
+        while ix >= 0 and self._slices[ix]._nextCall > sliceInfo._nextCall:
+            ix -= 1
+        self._slices.insert(ix + 1 if ix >= 0 else 0, sliceInfo)
+
+    def check(self):
+        '''Checks whether the next task should be processed and returns it.
+        @return: None: no processing is needed otherwise: the slice which must be processed
+        '''
+        sliceInfo = None
+        if self._slices:
+            now = time.time()
+            found = self._slices[0]._nextCall <= now
+            if found:
+                sliceInfo = self._slices[0]
+                del self._slices[0]
+        return sliceInfo
+
+    def checkAndProcess(self):
+        '''Checks whether the next task should be processed and processes it.
+        @return: true: processing has been done
+        '''
+        sliceInfo = self.check()
+        if sliceInfo is not None:
+            sliceInfo._taskInfo.process(sliceInfo)
+            if sliceInfo._countCalls is not None:
+                sliceInfo._countCalls -= 1
+            if sliceInfo._countCalls is None or sliceInfo._countCalls > 0:
+                sliceInfo.calculateNextTime()
+                self.insertSlice(sliceInfo)
+        return sliceInfo is not None
+
+    def nextId(self):
+        '''Returns the next id for a slice.
+        @return: the next id
+        '''
+        self._currentId += 1
+        return self._currentId
+
+
+if __name__ == '__main__':
+    pass
diff --git a/base/SearchRule.py b/base/SearchRule.py
new file mode 100644 (file)
index 0000000..4173708
--- /dev/null
@@ -0,0 +1,639 @@
+'''
+Created: 2020.07.19
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import base.StringUtils
+
+
+class CommandData:
+    '''Properties given for a command (action except search and reposition).
+    @param register: None or the related register ('A'..'Z')
+    @param marker: None or the related marker: 'a' .. 'z'
+    @param text: None or the related text
+    @param text2: None or the related 2nd text
+    @param group: None or the related reg. expression group: 0..N
+    @param escChar: None or a prefix character to address registers (@see parseRuleReplace())
+    @param options: None or an command specific options
+    '''
+
+    def __init__(self, register=None, register2=None, marker=None, text=None, text2=None,
+                 group=None, escChar=None, options=None):
+        self._register = register
+        self._register2 = register2
+        self._marker = marker
+        self._text = text
+        self._text2 = text2
+        self._group = group
+        self._options = options
+        self._escChar = escChar
+
+    def getText(self, state, second=False):
+        '''Replaces register placeholders with the register content.
+        Note: register placeholders starts with self._escChar followed by the register name, e.g. '$A'
+        @param state: the ProcessState instance with the registers
+        @param second: True: _text2 is used False: _text is used
+        @return text with replaced register placeholders
+        '''
+        text = self._text2 if second else self._text
+        if self._escChar is None:
+            rc = text
+        else:
+            startIx = 0
+            rc = ''
+            while startIx + 2 < len(text):
+                ix = text.find(self._escChar, startIx)
+                if ix < 0:
+                    break
+                rc += text[startIx:ix]
+                name = text[ix + 1]
+                if 'A' <= name <= 'Z':
+                    rc += state.getRegister(name)
+                else:
+                    rc += self._escChar + name
+                startIx = ix + 2
+            rc += text[startIx:]
+        return rc
+
+
+class FlowControl:
+    '''Flow control of a rule: continue, stop or jump on a condition
+    '''
+    # ..................................A.........A
+
+    def __init__(self):
+        '''Constructor.
+        '''
+        self._onSuccess = 'c'
+        self._onError = 'e'
+
+    def setControl(self, control):
+        '''Translate the options given as string into the class variables.
+        @param control: the control as string
+        @param logger: only internal errors are possible
+        @return: None: success otherwise: error message
+        '''
+        rc = None
+        reaction = None
+        if control[-1] == '%':
+            reaction = control[control.find('%'):]
+        elif control.endswith('continue'):
+            reaction = 'c'
+        elif control.endswith('stop'):
+            reaction = 's'
+        elif control.endswith('error'):
+            reaction = 'e'  # error
+        else:
+            rc = 'unknown control: ' + control
+        if control.startswith('success'):
+            self._onSuccess = reaction
+        elif control.startswith('error'):
+            self._onError = reaction
+        else:
+            rc = 'unknown control statement: ' + control
+        return rc
+
+
+class Position:
+    '''Constructor.
+    @param line: the line number
+    @param col: the column number
+    '''
+
+    def __init__(self, line, col):
+        self._line = line
+        self._col = col
+
+    def toString(self):
+        '''Returns the position as string.
+        @return: <line>:<col>
+        '''
+        return '{}:{}'.format(self._line, self._col)
+
+    def check(self, lines, behindLineIsAllowed=False):
+        '''Checks, whether the instance is valid in lines.
+        @param lines: the list of lines to inspect
+        @param behindLineIsAllowed: True: the column may be equal the line length
+        @return: True: the cursor is inside the lines
+        '''
+        rc = self._line < len(lines) and self._col <= len(
+            lines[self._line]) - (1 if behindLineIsAllowed else 0)
+        return rc
+
+    def clone(self, source):
+        '''Transfers the internal state from the source to the self.
+        @param source: the Position instance to clone
+        '''
+        self._line = source._line
+        self._col = source._col
+
+    def compare(self, other):
+        '''Compares the instance with an other instance
+        @param other: the Position instance to compare
+        @return: <0: self < other 0: self==other >0: self>other
+        '''
+        rc = self._line - other._line
+        if rc == 0:
+            rc = self._col - other._col
+        return rc
+
+    def endOfLine(self, lines):
+        '''Tests whether the instance is one position behind the current line.
+        @param lines: the list of lines to inspect
+        @return: True: the instance points to the position one behind the current line or the beginning of the next line
+        '''
+        rc = self._line == len(
+            lines) and self._col == 0 or self._col == len(lines[self._line])
+        return rc
+
+
+class ProcessState:
+    '''Reflects the state while processing a rule list.
+    '''
+
+    def __init__(self, lines, startRange, endRange, start, logger, maxLoops=10):
+        '''Constructor.
+        @param lines: the list of lines to inspect
+        @param startRange: the rule starts at this position
+        @param endRange: the end of the rules must be below this position
+        @param start: the rule starts from this position
+        @param logger:
+        @param maxLoops: the number of executed rules is limited to maxLoops*len(lines)
+        '''
+        self._logger = logger
+        self._lines = lines
+        self._maxLoops = maxLoops
+        self._cursor = Position(start._line, start._col)
+        self._startRange = startRange
+        self._endRange = endRange
+        self._logger = logger
+        self._success = True
+        self._lastMatch = None
+        # replaces temporary _startRange or _endRange
+        self._tempRange = Position(0, 0)
+        self._safePosition = Position(0, 0)
+        # <name>: Position
+        self._markers = {}
+        # <name>: string
+        self._registers = {}
+        self._hasChanged = False
+        self._lastHits = 0
+
+    def deleteToMarker(self, name):
+        '''Deletes the text from the cursor to the marker.
+        @param name: a bound of the region to delete, _position is the other
+        '''
+
+        marker = self.getMarker(name)
+        self._success = marker is not None and self.inRange(
+            marker) and self.inRange()
+        if self._success:
+            comp = self._cursor.compare(marker)
+            start = marker if comp >= 0 else self._cursor
+            end = self._cursor if comp >= 0 else marker
+            ixStart = start._line
+            deletedLines = 0
+            self._hasChanged = True
+            if start._line == end._line:
+                self._lines[ixStart] = self._lines[ixStart][0:start._col] + \
+                    self._lines[ixStart][end._col:]
+            else:
+                prefix = '' if start._col == 0 else self._lines[start._line][0:start._col]
+                ixEnd = end._line if end._col > 0 else end._line + 1
+                if end._col > 0:
+                    self._lines[end._line] = prefix + \
+                        self._lines[end._line][end._col:]
+                for ix in range(ixStart, ixEnd):
+                    del self._lines[ix]
+                    deletedLines += 1
+            # Adapt the existing markers:
+            for name2 in self._markers:
+                current = self.getMarker(name2)
+                if current.compare(start) >= 0:
+                    if current._line > end._line or current._line == end._line and end._col == 0:
+                        current._line -= deletedLines
+                    elif current._line == end._line:
+                        if current._col > end._col:
+                            current._col -= end.col
+                        current.clone(start)
+                    else:
+                        current.clone(start)
+
+    def insertAtCursor(self, text):
+        '''Inserts a text at the cursor.
+        @param text: the text to insert, may contain '\n'
+        '''
+        self._success = self.inRange()
+        if self._success:
+            newLines = text.split('\n')
+            curLine = self._cursor._line
+            self._hasChanged = True
+            if len(newLines) == 1:
+                insertedLines = 0
+                colNew = self._cursor._col + len(text)
+                self._lines[curLine] = (self._lines[curLine][0:self._cursor._col] + newLines[0]
+                                        + self._lines[curLine][self._cursor._col:])
+            else:
+                insertedLines = len(newLines)
+                tail = ''
+                ixNew = 0
+                if self._cursor._col > 0:
+                    ixNew = 1
+                    tail = self._lines[self._cursor._line][self._cursor._col:]
+                    self._lines[curLine] = self._lines[curLine][0:self._cursor._col] + newLines[0]
+                    curLine += 1
+                    insertedLines -= 1
+                ixLast = len(newLines)
+                while ixNew < ixLast:
+                    self._lines.insert(curLine, newLines[ixNew])
+                    ixNew += 1
+                    curLine += 1
+                self._lines[curLine - 1] = self._lines[curLine - 1] + tail
+                colNew = len(newLines[-1])
+            for name in self._markers:
+                marker = self._markers[name]
+                if marker.compare(self._cursor) >= 0:
+                    if marker._line == self._cursor._line and marker._col > self._cursor._col:
+                        marker._line += insertedLines
+                        marker._col += len(newLines[-1])
+                    elif marker._line == self._cursor._line > 0:
+                        marker._line += insertedLines
+            self._cursor._line += insertedLines
+            self._cursor._col = colNew
+
+    def getMarker(self, name):
+        '''Returns the marker given by the name ('a'..'z')
+        @param name: the marker's name: 'a'..'z'
+        @return: None: not found otherwise: the Position instance
+        '''
+        rc = None if not name in self._markers else self._markers[name]
+        return rc
+
+    def getRegister(self, name, maxLength=None):
+        '''Returns the marker given by the name ('a'..'z')
+        @param name: the marker's name: 'a'..'z'
+        @return: '': not found otherwise: the register content
+        '''
+        rc = '' if not name in self._registers else self._registers[name]
+        if maxLength is not None:
+            rc = base.StringUtils.limitLength2(
+                rc, maxLength).replace('\n', '\\n')
+        return rc
+
+    def inRange(self, position=None):
+        '''Returns whether a position is in the current range.
+        @param position: a Position instance to test
+        @return: position is between _startRange and _endRange
+        '''
+        if position is None:
+            position = self._cursor
+        rc = (position._line > self._startRange._line
+              or position._line == self._startRange._line and position._col >= self._startRange._col)
+        rc = rc and (position._line < self._endRange._line or position._line == self._endRange._line
+                     and position._col <= self._endRange._col)
+        return rc
+
+    def putToRegister(self, name, text, append=False):
+        '''Sets the register <name> with a text.
+        @param name: the register name: 'A'..'Z'
+        @param text: the text to set
+        @param append: True: the text will be appended False: the text will be set
+        '''
+        if not append or not name in self._registers:
+            self._registers[name] = text
+        else:
+            self._registers[name] += text
+
+    def setMarker(self, name):
+        '''Sets the marker <name> from the current position.
+        @param name: the marker name: 'a'..'z'
+        '''
+        if not name in self._markers:
+            self._markers[name] = Position(0, 0)
+        self._markers[name].clone(self._cursor)
+
+    def textToMarker(self, name):
+        '''Returns the text between the marker name and the cursor.
+        @param name: the marker's name
+        @return: the text between marker and cursor (current position)
+        '''
+        rc = ''
+        marker = self.getMarker(name)
+        if marker is not None and self.inRange(marker) and self.inRange():
+            comp = self._cursor.compare(marker)
+            start = marker if comp >= 0 else self._cursor
+            end = self._cursor if comp >= 0 else marker
+            ixStart = start._line
+            if start._line == end._line:
+                rc = self._lines[start._line][start._col:end._col]
+            else:
+                if start._col > 0:
+                    prefix = self._lines[start._line][start._col:]
+                    ixStart += 1
+                rc = '\n'.join(self._lines[ixStart:end._line])
+                if start._col > 0:
+                    if rc == '':
+                        rc = prefix
+                    else:
+                        rc = prefix + '\n' + rc
+                if end._col > 0:
+                    if rc != '':
+                        rc += '\n'
+                    rc += self._lines[end._line][0:end._col]
+        return rc
+
+
+class Region:
+    '''Stores the data of a region, which is a part of the file given by a start and an end position.
+    '''
+
+    def __init__(self, parent, startRuleList=None, endRuleList=None, endIsIncluded=False):
+        '''Constructor.
+        @param parent: the TextProcessor instance
+        @param startRuleList: None or the compiled rules defining the start of the region
+        @param startRuleList: None or the compiled rules defining the end of the region
+        @param endIsIncluded: True: if the last rule is a search: the hit belongs to the region
+        '''
+        self._parent = parent
+        self._startRules = startRuleList
+        self._endRules = endRuleList
+        self._startPosition = Position(0, 0)
+        # index of the first line below the region (exclusive)
+        self._endPosition = Position(0, 0)
+        self._endIsIncluded = endIsIncluded
+        self._start = None
+        self._end = None
+
+    def next(self):
+        '''Search the next region from current region end.
+        @param ixFirst: the index of the first line (in parent._lines) to inspect
+        @return: True: the start has been found False: not found
+        '''
+        rc = self._parent.apply(
+            self._startRules, self._endPosition, self._parent._endOfFile)
+        return rc
+
+    def find(self, pattern):
+        '''Searches the pattern in the region.
+        @param pattern: a string or a RegExp instance to search
+        @return: -1: not found otherwise: the index of the first line matching the pattern
+        '''
+        rc = self._parent.findLine(pattern, self._start, self._end)
+        return rc
+
+
+class SearchRule:
+    '''Describes a single action: search, reposition, set label/bookmark, print....
+    @see SearchRuleList vor details.
+    '''
+
+    def __init__(self, ruleType, param=None):
+        '''Constructor.
+        @param ruleType: the type: '<' (search backwards) '>': search forward 'l': line:col 'a': anchor
+        @param parameter: parameter depending on ruleType: RegExp instance for searches,
+            names for anchors or a [<line>, <col>] array for ruleType == 'l'
+        '''
+        self._ruleType = ruleType
+        self._param = param
+        self._flowControl = FlowControl()
+
+    def name(self, extended=False):
+        '''Returns the command name.
+        @return the command name
+        '''
+        rc = None
+        if self._ruleType == '%':
+            rc = 'label' + ((' ' + self._param) if extended else '')
+        elif self._ruleType == '>':
+            rc = 'search (forward)' + ((' /' +
+                                        self._param._regExpr.pattern + '/') if extended else '')
+        elif self._ruleType == '<':
+            rc = 'search (backward)' + ((' /' +
+                                         self._param._regExpr.pattern + '/') if extended else '')
+        elif self._ruleType == '+':
+            rc = 'reposition'
+            if extended:
+                rc += ' {}{}:{}'.format(self._param[2],
+                                        self._param[0], self._param[1])
+        elif self._ruleType == 'anchor':
+            rc = self._param
+        else:
+            rc = self._ruleType
+        return rc
+
+    def searchForward(self, state):
+        '''Searches forward in lines in the range given by startRange and endRange.
+        @param processState: IN/OUT: the context of searching, an instance of ProcessState
+        '''
+        state._safePosition.clone(state._cursor)
+        state._success = state.inRange()
+        if state._success:
+            startIx = state._cursor._line
+            endIx = min(len(state._lines), state._endRange._line + 1)
+            if self._param._rangeLines is not None:
+                endIx = min(startIx + self._param._rangeLines, endIx)
+            match = None
+            regExpr = self._param._regExpr
+            for ix in range(startIx, endIx):
+                if ix == state._startRange._line:
+                    match = regExpr.search(
+                        state._lines[ix], state._startRange._col)
+                elif ix == state._endRange._line:
+                    match = regExpr.search(
+                        state._lines[ix], 0, state._endRange._col)
+                else:
+                    match = regExpr.search(
+                        state._lines[ix], state._startRange._col)
+                if match is not None:
+                    break
+            state._success = match is not None
+            state._lastMatch = match
+            if state._success:
+                state._cursor._line = ix
+                state._cursor._col = match.end(
+                    0) if self._param._useEnd else match.start(0)
+                state._success = state.inRange()
+
+    def searchBackward(self, state):
+        '''Searches backward in lines in the range given by startRange and endRange.
+        @param processState: IN/OUT: the context of searching, an instance of ProcessState
+        '''
+        state._safePosition.clone(state._cursor)
+        state._success = state.inRange()
+        if state._success:
+            regExpr = self._param._regExpr
+            startIx = max(0, min(state._cursor._line, len(state._lines) - 1))
+            endIx = state._startRange._line - 1
+            state._lastMatch = None
+            if self._param._rangeLines is not None:
+                endIx = max(state._startRange._line - 1,
+                            max(-1, startIx - self._param._rangeLines))
+            for ix in range(startIx, endIx, -1):
+                if ix == state._startRange._line:
+                    iterator = regExpr.finditer(
+                        state._lines[ix], state._startRange._col)
+                elif ix == state._endRange._line:
+                    iterator = regExpr.finditer(
+                        state._lines[ix], 0, state._endRange._col)
+                else:
+                    iterator = regExpr.finditer(
+                        state._lines[ix], state._startRange._col)
+                # Look for the last match:
+                for match in iterator:
+                    state._lastMatch = match
+                if state._lastMatch is not None:
+                    break
+            state._success = state._lastMatch is not None
+            if state._success:
+                state._cursor._line = ix
+                state._cursor._col = state._lastMatch.end(
+                    0) if self._param._useEnd else state._lastMatch.start(0)
+                state._success = state.inRange()
+
+    def reposition(self, state):
+        '''Apply the reposition rule: an anchor or a line/col move.
+        @param processState: IN/OUT: the context of searching, an instance of ProcessState
+        '''
+        if self._ruleType == '+':
+            if self._param[2] == ':':
+                state._cursor._line = self._param[0]
+                state._cursor._col = self._param[1]
+            else:
+                state._cursor._line += self._param[0]
+                state._cursor._col += self._param[1]
+                # if the new line is shorter than the old col position: goto last column
+                # except the column is explicitly set
+                if self._param[1] == 0 and state._cursor._line < len(state._lines):
+                    lineLength = len(state._lines[state._cursor._line])
+                    if state._cursor._col >= lineLength:
+                        state._cursor._col = max(0, lineLength - 1)
+        elif self._param == 'bof':
+            state._cursor._line = state._cursor._col = 0
+        elif self._param == 'eof':
+            state._cursor._line = len(state._lines)
+            state._cursor._col = 0
+        elif self._param == 'bol':
+            state._cursor._col = 0
+        elif self._param == 'eol':
+            # overflow is allowed:
+            state._cursor._line += 1
+            state._cursor._col = 0
+        elif self._param == 'bopl':
+            state._cursor._line -= 1
+            state._cursor._col = 0
+        elif self._param == 'eopl':
+            state._cursor._col = 0
+        elif self._param == 'bonl':
+            # overflow is allowed:
+            state._cursor._line += 1
+            state._cursor._col = 0
+        elif self._param == 'eonl':
+            # overflow is allowed:
+            state._cursor._line += 2
+            state._cursor._col = 0
+        else:
+            state._logger.error(
+                'reposition(): unknown anchor: {}'.format(self._param))
+        state._success = state.inRange()
+
+    def state(self, after, state):
+        '''Returns the "state" of the rule, used for tracing.
+        @param after: True: the state is after the rule processing
+        @param state: the ProcessState instance
+        @return: the specific data of the rule
+        '''
+        def cursor():
+            return state._cursor.toString()
+
+        def marker():
+            name = self._param._marker
+            return '{}[{}]'.format(name, '-' if name not in state._markers else state.getMarker(self._param._marker).toString())
+
+        def register():
+            name = self._param._register
+            return ((name if name is not None else '<none>') + ':'
+                    + ('<none>' if name not in state._registers else state.getRegister(name, 40)))
+        name = self._ruleType
+        if not after:
+            state._traceCursor = cursor()
+            state._traceState = ''
+            rc = ''
+        else:
+            rc = '{} => {}, {} => '.format(
+                state._traceCursor, cursor(), state._traceState)
+        if name in ('>', '<', '+', 'anchor', 'swap'):
+            rc += '-'
+        elif name in ('add', 'insert', 'set', 'expr', 'state'):
+            rc += register()
+        elif name == 'cut':
+            # cut-m
+            # cut-R-m
+            rc += '' if after else marker() + ' / '
+            if after and self._param._register is not None:
+                rc += register()
+            else:
+                rc += '-'
+        elif name == 'group':
+            rc += register()
+        elif name == 'jump':
+            if after and self._param._marker is not None:
+                rc += state.getMarker(self._param._marker).toString()
+            else:
+                rc += '-'
+        elif name == 'mark':
+            rc += marker()
+        elif name == 'print':
+            if self._param._marker is not None:
+                rc += marker() if after else '-'
+            elif self._param._register is not None:
+                rc += register() if after else ''
+        elif name == 'replace':
+            if self._param._register is not None:
+                rc += register()
+            elif self._param._marker is not None and after:
+                rc += marker()
+            else:
+                rc += '-'
+            if after:
+                rc += ' hits: {}'.format(state._lastHits)
+        if not after:
+            state._traceState = rc
+        return rc
+
+    def toString(self):
+        '''Returns a string describing the instance.
+        @return: a string describing the instance
+        '''
+        name = self._ruleType
+        if name in ('>', '<'):
+            rc = name + '/' + \
+                base.StringUtils.limitLength2(
+                    self._param._regExpr.pattern, 40) + '/'
+        elif name == '+':
+            rc = 'reposition {}{}:{}'.format(
+                self._param[2], self._param[0], self._param[1])
+        elif name == 'anchor':
+            rc = self._param
+        elif name == 'jump':
+            rc = name + '-' + \
+                (self._param._marker if self._param._marker is not None else self._param._text)
+        elif name == '%':
+            rc = 'label ' + self._param
+        elif name == 'replace':
+            rc = name
+            if self._param._register is not None:
+                rc += '-' + self._param._register
+            if self._param._marker is not None:
+                rc += '-' + self._param._marker
+            rc += (':/' + base.StringUtils.limitLength2(self._param._text, 20)
+                   + '/' + base.StringUtils.limitLength2(self._param._text2, 20))
+        else:
+            rc = name
+            if self._param._register is not None:
+                rc += '-' + self._param._register
+            if self._param._marker is not None:
+                rc += '-' + self._param._marker
+            if self._param._text is not None:
+                rc += ':"' + \
+                    base.StringUtils.limitLength2(self._param._text, 40) + '"'
+        return rc
diff --git a/base/SearchRuleList.py b/base/SearchRuleList.py
new file mode 100644 (file)
index 0000000..dada11c
--- /dev/null
@@ -0,0 +1,869 @@
+'''
+Created: 2020.07.19
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import re
+
+import base.Const
+import base.StringUtils
+import base.SearchRule
+
+class SearchRuleList:
+    '''A list of rules to find a new position or do some other things.
+    @see describe() for detailed description.
+    '''
+    #..........................rule
+    # .........................1
+    __reRule = re.compile(r'%[a-zA-Z_]\w*%:'
+                          #        rule
+                          #........A
+                          + r'|(?:[be]of|[be]o[pn]?l'
+                          #...........line........col
+                          #.............1...1......2...2
+                          + r'|[+-]?(\d+):[+-]?(\d+)'
+                          #..............sep.....sep rows/cols
+                          #..............3..3........C.......C
+                          + r'|[<>FB](\S).+?\3\s?(?::?\d+)?\s?[ie]{0,2}'
+                          #.command.name
+                          # .......4E
+                          + r'|((?:add|cut|expr|group|insert|jump'
+                          # ........................................./name
+                          # .........................................E
+                          + r'|mark|print|replace|set|state|swap)'
+                          #..suffix1 name...............suffix2.........text.delim......txt-opt /t /command
+                          # ......F...G........... ....GF.H...........H.I...5.....5.....J......J.I.4
+                          + r'(?:-(?:[a-zA-Z]|\d\d?))?(?:-[a-zA-Z])?(?::([^\s]).*?\5(?:e=\S)?)?)'
+                          #.......A
+                          + r')')
+    __reRuleExprParams = re.compile(r'[-+/*%](\$[A-Z]|\d+)?')
+    # .........................1......12..............2.3.........3
+    __reCommand = re.compile(r'([a-z]+)(-[a-zA-Z]|-\d+)?(-[a-zA-Z])?')
+    __reRuleStateParam = re.compile(r'rows?|col|size-[A-Z]|rows-[A-Z]|hits')
+    __reFlowControl = re.compile(
+        r'(success|error):(continue|error|stop|%\w+%)')
+    # ....................................A.........  A..1......12...2..3..3..4...........4
+    __reRuleReplace = re.compile(
+        r'replace(?:-[a-zA-Z])?:([^\s])(.+?)\1(.*?)\1(e=.|,|c=\d+)*')
+    # x=re.compile(r'replace:([^\s])(.+)\1(.*)\1(e=.)?')
+
+    def __init__(self, logger, rules=None):
+        '''Constructor.
+        @param rules: None or the rules as string
+            Example: '>/logfile:/ -2:0 bol':
+            search forwards "logfile:" go backward 2 line 0 column, go to begin of line
+        '''
+        self._logger = logger
+        self._col = 0
+        self._currentRule = ''
+        self._errorCount = 0
+        self._rules = []
+        self._labels = {}
+        self._markers = {}
+        self._fpTrace = None
+        self._maxLoops = None
+        if rules is not None:
+            self.parseRules(rules)
+
+    def appendCommand(self, name, commandData):
+        '''Stores the command data in the _rules.
+        Stores markers defined by "mark".
+        Tests used markers for a previous definition.
+        @param name: the name of the command, e.g. 'add'. Will be used as _ruleType
+        @param commandData: an instance of base.SearchRule.CommandData
+        '''
+        if name == 'mark':
+            self._markers[commandData._marker] = self._col
+        elif commandData._marker is not None and commandData._marker not in self._markers:
+            self.parseError(
+                'marker {} was not previously defined'.format(commandData._marker))
+        self._rules.append(base.SearchRule.SearchRule(name, commandData))
+
+    def apply(self, state):
+        '''Executes the internal stored rules in a given list of lines inside a range.
+        @param state: IN/OUT IN: the context to search OUT: the state at the end of applying the rule list
+        '''
+        ix = 0
+        count = 0
+        maxCount = len(state._lines) * state._maxLoops
+        while ix < len(self._rules):
+            if count >= maxCount:
+                state._logger.error(
+                    'base.SearchRule.SearchRule.apply(): to many loops: {}'.format(self._maxLoops))
+                break
+            item = self._rules[ix]
+            if self._fpTrace is not None:
+                ixTrace = ix
+                self.trace(ixTrace, False, state)
+            flowControl = self._rules[ix]._flowControl
+            ix += 1
+            if item._ruleType == '>':
+                item.searchForward(state)
+            elif item._ruleType == '<':
+                item.searchBackward(state)
+            elif item._ruleType == '%':
+                # label
+                pass
+            elif item._ruleType == 'anchor' or item._ruleType == '+':
+                item.reposition(state)
+            elif item._ruleType >= 'p':
+                self.applyCommand2(item, state)
+            else:
+                ix2 = self.applyCommand1(item, state)
+                if ix2 is not None:
+                    ix = ix2
+            if self._fpTrace is not None:
+                self.trace(ixTrace, True, state)
+            if flowControl is not None:
+                reaction = flowControl._onSuccess if state._success else flowControl._onError
+                if reaction == 'c':
+                    pass
+                elif reaction == 's':
+                    break
+                elif reaction == 'e':
+                    self._logger.error('{} stopped with error')
+                    break
+                elif reaction in self._labels:
+                    ix = self._labels[reaction] + 1
+
+    def applyCommand1(self, rule, state):
+        '''Executes the action named 'a*' to 'p*' (exclusive)
+        @param processState: IN/OUT IN: the context to search OUT: the state at the end of applying the rule list
+        @return: None: normal processing otherwise: the index of the next rule to process
+        '''
+        rc = None
+        name = rule._ruleType
+        checkPosition = False
+        if name == 'add':
+            # add-R-m
+            # add-R-S
+            # add-R D<text>D
+            if rule._param._marker is not None:
+                text = state.textToMarker(rule._param._marker)
+            elif rule._param._register2 is not None:
+                text = state.getRegister(rule._param._register2)
+            elif rule._param._text is not None:
+                text = rule._param.getText(state)
+            else:
+                state._logger.error('add: nothing to do')
+                text = ''
+            state.putToRegister(rule._param._register, text, append=True)
+        elif name == 'cut':
+            # cut-m
+            # cut-R-m
+            if rule._param._register is not None:
+                text = state.textToMarker(rule._param._marker)
+                state.putToRegister(rule._param._register, text)
+            state.deleteToMarker(rule._param._marker)
+        elif name == 'expr':
+            # expr-R:"+4"
+            value = base.StringUtils.asInt(
+                state.getRegister(rule._param._register), 0)
+            param = rule._param.getText(state)
+            value2 = base.StringUtils.asInt(param[1:], 0)
+            op = param[0]
+            if op == '+':
+                value += value2
+            elif op == '-':
+                value -= value2
+            elif op == '*':
+                value *= value2
+            elif op == '/':
+                if value2 == 0:
+                    state._success = self._logger.error(
+                        'division by 0 is not defined')
+                else:
+                    value //= value2
+            elif op == '%':
+                if value2 == 0:
+                    state._success = self._logger.error(
+                        'modulo 0 is not defined')
+                else:
+                    value %= value2
+            state._registers[rule._param._register] = str(value)
+        elif name == 'insert':
+            # insert-R
+            # insert D<content>D
+            text = ''
+            if rule._param._register is not None:
+                text = state.getRegister(rule._param._register)
+            elif rule._param._text is not None:
+                text = rule._param.getText(state)
+            state.insertAtCursor(text)
+        elif name == 'group':
+            # group-G-R
+            state._success = state._lastMatch is not None and state._lastMatch.lastindex <= rule._param._group
+            if state._success:
+                text = '' if state._lastMatch.lastindex < rule._param._group else state._lastMatch.group(
+                    rule._param._group)
+                state.putToRegister(rule._param._register, text)
+        elif name == 'jump':
+            if rule._param._marker is not None:
+                state._cursor.clone(state.getMarker(rule._param._marker))
+                checkPosition = True
+            else:
+                rc = self._labels[rule._param._text]
+        elif name == 'mark':
+            state.setMarker(rule._param._marker)
+        else:
+            state._logger.error('applyCommand1: unknown command')
+        if checkPosition:
+            state._success = state.inRange()
+        return rc
+
+    def applyCommand2(self, rule, state):
+        '''Executes the actions named 'p*' to 'z*' (inclusive)
+        @param processState: IN/OUT IN: the context to search OUT: the state at the end of applying the rule list
+        '''
+        name = rule._ruleType
+        if name == 'print':
+            state._success = True
+            if rule._param._register is not None:
+                print(state.getRegister(rule._param._register))
+            elif rule._param._marker is not None:
+                print(state.textToMarker(rule._param._marker))
+            elif rule._param._text is not None:
+                print(rule._param.getText(state))
+        elif name == 'replace':
+            param = rule._param
+            if param._register is not None:
+                replaced, state._lastHits = re.subn(
+                    param._text, param._text2, state.getRegister(param._register))
+                state._registers[param._register] = replaced
+            elif param._marker is not None:
+                SearchRuleList.applyReplaceRegion(state._cursor, state.getMarker(param._marker),
+                                            re.compile(param._text), param._text2, state)
+            else:
+                # replace in the current line:
+                line = state._lines[state._cursor._line]
+                replaced, state._lastHits = re.subn(
+                    param._text, param._text2, line)
+                if line != replaced:
+                    state._hasChanged = True
+                    state._lines[state._cursor._line] = replaced
+        elif name == 'set':
+            if rule._param._marker is not None:
+                text = state.textToMarker(rule._param._marker)
+            elif rule._param._register2 is not None:
+                text = state.textToMarker(rule._param._marker)
+            elif rule._param._text is not None:
+                text = rule._param.getText(state)
+            else:
+                state._logger.error('set: nothing to do')
+                text = ''
+            state.putToRegister(rule._param._register, text)
+        elif name == 'state':
+            name = rule._param._text
+            if name == 'row':
+                value = state._cursor._line + 1
+            elif name == 'col':
+                value = state._cursor._col + 1
+            elif name == 'rows':
+                value = len(state._lines)
+            elif name.startswith('size-'):
+                value = len(state.getRegister(name[5]))
+            elif name.startswith('rows-'):
+                value = state.getRegister(name[5]).count('\n')
+            elif name == 'hits':
+                value = state._lastHits
+            else:
+                value = '?'
+            state._registers[rule._param._register] = str(value)
+        elif name == 'swap':
+            marker = state.getMarker(rule._param._marker)
+            if marker is None:
+                state._success = False
+                state._logger.error(
+                    'swap: marker {} is not defined'.format(rule._param._marker))
+            else:
+                state._tempRange.clone(state._cursor)
+                state._cursor.clone(marker)
+                marker.clone(state._tempRange)
+                state._success = state.inRange()
+        else:
+            self._logger.error(
+                'unknown command {} in {}'.format(name, rule._ruleType))
+
+    @staticmethod
+    def applyReplaceRegion(start, end, what, replacement, state):
+        '''Replaces inside the region.
+        @param start: first bound of the region
+        @param end: second bound of the region
+        @param what: the regular expression to search
+        @param replacement: the string to replace
+        @param state: a base.SearchRule.ProcessState instance
+        '''
+        if start.compare(end) > 0:
+            start, end = end, start
+        state._lastHits = 0
+        if start._line == end._line:
+            value = state._lines[start._line][start._col:end._col]
+            value2, hits = what.subn(replacement, value)
+            if value != value2:
+                state._lastHits += hits
+                state._hasChanged = True
+                state._lines[start._line] = state._lines[start._line][0:start._col] + \
+                    value2 + state._lines[end._line][end._col:]
+        else:
+            startIx = start._line
+            if start._col > 0:
+                value = state._lines[start._line][start._col:]
+                value2, hits = what.subn(replacement, value)
+                if value != value2:
+                    state._lastHits += hits
+                    state._hasChanged = True
+                    state._lines[start._line] = state._lines[start._line][0:start._col] + value2
+                startIx += 1
+            for ix in range(startIx, end._line):
+                value = state._lines[ix]
+                value2, hits = what.subn(replacement, value)
+                if value != value2:
+                    state._lastHits += hits
+                    state._hasChanged = True
+                    state._lines[ix] = value2
+            if end._col > 0:
+                value = state._lines[end._line][0:end._col]
+                value2, hits = what.subn(replacement, value)
+                if value != value2:
+                    state._lastHits += hits
+                    state._hasChanged = True
+                    state._lines[end._line] = value2 + \
+                        state._lines[end._line][end._col:]
+
+    def check(self):
+        '''Tests the compiled rules, e.g. existence of labels.
+        @return: None OK otherwise: the error message
+        '''
+        self._labels = {}
+        ix = -1
+        for rule in self._rules:
+            ix += 1
+            if rule._ruleType == '%':
+                self._labels[rule._param] = ix
+        for rule in self._rules:
+            if rule._flowControl is not None:
+                label = rule._flowControl._onSuccess
+                if label.startswith('%') and label not in self._labels:
+                    self._logger.error(
+                        'unknown label (on success) {}'.format(label))
+                    self._errorCount += 1
+                label = rule._flowControl._onError
+                if label.startswith('%') and label not in self._labels:
+                    self._logger.error(
+                        'unknown label (on error): {}'.format(label))
+                    self._errorCount += 1
+                if rule._ruleType == 'jump' and rule._param._text is not None and rule._param._text not in self._labels:
+                    self._logger.error(
+                        'unknown jump target: {}'.format(rule._text))
+                    self._errorCount += 1
+        rc = self._errorCount == 0
+        return rc
+
+    @staticmethod
+    def describe():
+        '''Describes the rule syntax.
+        '''
+        print(r'''A "rule" describes a single action: find a new position, set a marker/register, display...
+A "register" is a container holding a string with a single uppercase letter as name, e.g. 'A'
+A "marker" is a position in the text with a lowercase letter as name, e.g. "a"
+A "label" is named position in the rule list delimited by '%', e.g. '%eve_not_found%'
+Legend:
+    D is any printable ascii character (delimiter) except blank and ':', e.g. '/' or "X"
+    R is a uppercase character A..Z (register name), e.g. "Z"
+    m is a lowercase ascii char a..z (marker name), e.g. "f"
+    G is a decimal number, e.g. 0 or 12 (group number)
+    cursor: the current position
+Rules:
+a label:
+    <label>:
+a regular expression for searching forwards:
+    >D<expression>D[<range>]<search-options>
+    FD<expression>D[<range>]<search-options>
+a regular expression for searching backwards:
+    <D<expression>D[<range>]<search-options>
+    BD<expression>D[<range>]<search-options>
+<search-option>:
+    <lines> search only in the next/previous <lines> lines, e.g. >/Joe/8
+    :<cols> search only in the next/previous <cols> columns, e.g. </Eve/:30
+    i ignore case
+    e position is behind the found pattern. Example: lines: ["abcd"] rule: >/bc/e cursor: 0-3
+an absolute line/column <line>:<col>
+    line and col are numbers starting with 1, e.g. 24:2
+a relative line/column count [+-]<line>:[+-]<col>
+    line and col can be positive or negative or 0, negative means backwards
+an anchor: <anchor>
+    'bol': begin of line 'eol': end of line
+    'bonl': begin of next line 'eonl': end of next line
+    'bopl': end of previous line 'eopl': end of previous line
+    'bof': begin of file 'eof': end of file
+<command>:
+    add-R-m   adds the content from marker m until cursor onto register R
+    add-R-S   adds the content of register S onto the register R
+    add-R:D<text>D[<text-options>]
+        add the text onto register R
+    cut-m     deletes the content from marker m to the cursor
+    cut-R-m   deletes the content from marker m to the cursor and store it into register R
+    expr-R:D<operator><operand>D
+        calculate R = R <operator> <operand>
+        <operator>:
+            '+', '-', '*', '/', '%'
+        <operand>:
+            a decimal number or $<register>
+        Examples: expr-A:"*32" expr-Z:"+$F"
+    group-G-R stores the group G of the last regular expression into register R
+    insert-R  inserts the content of register R at the cursor. cursor is moved behind the insertion.
+    insert:D<content>D[<text-options>]
+        put the <content> at the cursor. cursor is moved behind the insertion.
+    jump-m   cursor is get from marker m
+    jump:<label>   next rule to process is behind label <label>
+    mark-m  sets the marker m
+    print-m  displays the content from marker m to the cursor
+    print-R  displays the register R
+    print:D<text>D<text-option>
+        displays the <text>
+    replace:D<expression>D<replacement>D[<repl-options>]
+        replaces <expression> with <replacement> in the current line
+    replace-m:D<expression>D<replacement>D[<repl-options>]
+        replaces <expression> with <replacement> from marker m to cursor
+    replace-R:D<expression>D<replacement>D[<repl-options>]
+        replaces <expression> with <replacement> in register R
+        <repl-option>:
+            c=<count> the count of replacements in one line, e.g. c=12
+            e=<char> esc char used as prefix of the register placeholder
+                example: e=$ Than $A will be replaced in <expression> and <replacement>
+                by the content of register 'A'
+    set-R-m stores the content from marker m to register R
+    set-R:D<text>D[<text-options>]
+        stores the <text> into register R, e.g. set-A:"Hi!"
+    state-R:D<variable>D
+        store the variable into register R, e.g. state-A row
+        <variable>:
+            row: the cursor line number (1..N)
+            col: the cursor column (1..N)
+            rows: number of lines
+            size-R: the length of the content of register R
+            rows-R: the number of lines in register R
+            hits: the number of hits of the last replacement command
+    swap-m    swaps cursor and marker m
+    <text-option>:
+        e=<char>
+            esc char used as prefix of the register placeholder. More info see replace
+<flow-control>:
+    Note: "successful" means: a pattern is found (search) or reposition is inside the range etc.
+    Note: default behaviour: success:continue and error:error
+    success:<reaction>
+        reaction is done if the rule is finished with success
+    error:<reaction>
+        reaction is done if the rule is finished without success
+    <reaction>:
+    continue
+        continues with the next rule
+    stop
+        stop processing
+    error
+        stop processing with an error message
+    %<label>%
+        continue processing at label %<label>%
+Examples:
+>/jonny/:80i success:stop >/eve/4 error:stop print "eve found but not jonny"
+    search "jonny" but only in the next 80 columns, ignore case
+    stop if found. If not found: search "eve", but only 4 lines
+    stop without error if not found. if found display "eve found but not jonny"
+>/Address:/ error:error >/EMail:/s
+    if "Address" is not found, the result is "not found"
+    otherwise if "EMail" is found behind, the new base.SearchRule.Position is at "Email:" if not the new position is "Address"
+10:0 error:%missingLines% >/Name:\s+/ label-n >/[A-Za-z ]+/ print-N-n success:stop;%missingLines% print:"less than 10 lines"
+    searches for a name starting in line 10. Prints an informative message if line 10 does not exist
+10:0 >/Firstname:\s+/e label-f >/[A-Za-z ]+/e store-F-n
+print:"Full name: " print-F print:" " print-N
+    this example searches for firstname and name below line 10 and display them
+''')
+
+    @staticmethod
+    def parseAnchor(match):
+        '''Parses and stores an anchor.
+        'bol': begin of line 'eol': end of line
+        'bonl': begin of next line 'eonl': end of next line
+        'bopl': end of previous line 'eopl': end of previous line
+        'bof': top of file 'eof': end of file
+        @param match: the match of the regular expression
+        '''
+        rule = match.group(0)
+        parts = rule.split(';')
+        name = parts[0].strip()
+        rule = base.SearchRule.SearchRule('anchor', name)
+        return rule
+
+    def parseCommand(self, rule):
+        '''Parses a command.
+        A command is a rule except searching or repositioning:
+        @see SearchRuleList.describe() for details.
+        @param rule: the rule to parse
+        @return: True: success False: error
+        '''
+        def isRegister(name):
+            return name is not None and 'A' <= name[0] <= 'Z'
+
+        def isMarker(name):
+            return name is not None and 'a' <= name[0] <= 'z'
+
+        def isGroup(name):
+            return name is not None and '0' <= name[0] <= '9'
+
+        def getText(param):
+            text = None
+            esc = None
+            if param.startswith(':'):
+                param = param[1:]
+            if param != '':
+                sep = param[0]
+                ixEnd = param.find(sep, 1)
+                if ixEnd > 0:
+                    text = param[1:ixEnd]
+                    rest = param[ixEnd + 1:]
+                    if rest.startswith('e='):
+                        esc = rest[2]
+            return (text, esc)
+        match = SearchRuleList.__reCommand.match(rule)
+        success = True
+        if match is None:
+            success = self.parseError('missing command name')
+        else:
+            name = match.group(1)
+            var1 = None if match.lastindex < 2 else match.group(2)[1:]
+            var2 = None if match.lastindex < 3 else match.group(3)[1]
+            params = rule[len(match.group(0)):].lstrip()
+            text, esc = getText(params)
+            if name == 'add':
+                # add-R-m
+                # add-R-S
+                # add-R D<text>D
+                if isRegister(var2) and text is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(
+                        register=var1, register2=var2))
+                elif isMarker(var2) and text is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(
+                        register=var1, marker=var2))
+                elif var2 is None and text is not None:
+                    self.appendCommand(name, base.SearchRule.CommandData(
+                        register=var1, text=text, escChar=esc))
+                else:
+                    success = self.parseError(
+                        'invalid syntax: add-R-m or add_R-S or add-R DtextD expected')
+            elif name == 'cut':
+                # cut-m
+                # cut-R-m
+                if isMarker(var1) and var2 is None and text is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(marker=var1))
+                elif isRegister(var1) and isMarker(var2) and text is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(
+                        marker=var2, register=var1))
+                elif isRegister(var2) and isMarker(var1) and text is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(
+                        marker=var1, register=var2))
+                else:
+                    success = self.parseError(
+                        'invalid syntax: cut-m or cut-R-m expected')
+            elif name == 'expr':
+                # expr-R-S:D<operator>D
+                #    calculate R = R <operator> S
+                #    <operator>:
+                #        '+', '-', '*', '/', '%'
+                # expr-R:D<operator><constant>D
+                #    calculate R = R <operator> <constant>
+                matcher = SearchRuleList.__reRuleExprParams.match(text)
+                if matcher is None:
+                    success = self.parseError(
+                        '<operator><operand> expected, not "{}"'.format(text))
+                elif isRegister(var1) and var2 is None and text is not None:
+                    self.appendCommand(name, base.SearchRule.CommandData(
+                        register=var1, text=text, escChar='$'))
+                else:
+                    success = self.parseError(
+                        'invalid syntax: expr-R:"<operator><operand>" expected')
+            elif name == 'group':
+                # group-G-R
+                if isGroup(var1) and isRegister(var2) and text is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(
+                        group=int(var1), register=var2))
+                else:
+                    success = self.parseError(
+                        'invalid syntax: group-G-R expected')
+            elif name == 'insert':
+                # insert-R
+                # insert D<content>D
+                if isRegister(var1) and var2 is None and text is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(register=var1))
+                elif var1 is None and var2 is None:
+                    self.appendCommand(
+                        name, base.SearchRule.CommandData(text=text, escChar=esc))
+                else:
+                    success = self.parseError(
+                        'invalid syntax: insert-R or insert DtextD expected')
+            elif name == 'jump':
+                # jump-m
+                # jump-L
+                if isMarker(var1) and var2 is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(marker=var1))
+                elif var1 is None and params != '' and params.startswith(':%') and params[-1] == '%':
+                    self.appendCommand(name, base.SearchRule.CommandData(text=params[1:]))
+                else:
+                    success = self.parseError(
+                        'invalid syntax: jump-m or jump:<label> expected')
+            elif name == 'mark':
+                # mark-m
+                if isMarker(var1) and var2 is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(marker=var1))
+                else:
+                    success = self.parseError(
+                        'invalid syntax: mark-m expected')
+            elif name == 'print':
+                # print-m
+                # print-R
+                # print D<text>D display text
+                if isMarker(var1) and var2 is None and text is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(marker=var1))
+                elif isRegister(var1) and var2 is None and text is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(register=var1))
+                elif var1 is None and var2 is None and text is not None:
+                    self.appendCommand(
+                        name, base.SearchRule.CommandData(text=text, escChar=esc))
+                else:
+                    success = self.parseError(
+                        'invalid syntax: print-m or print-R or print DtextD expected"')
+            elif name == 'replace':
+                # replace-m D<expression>D<replacement>D
+                # replace-R D<expression>D<replacement>D
+                what = None
+                if len(params) > 3:
+                    sep = params[0]
+                    ix1 = params.find(sep, 1)
+                    ix2 = params.find(sep, ix1 + 1)
+                    if ix1 < 0 or ix2 < 0:
+                        what = params[1:ix1]
+                        replacement = params[ix1 + 1:ix2]
+                elif isMarker(var1) and var2 is None and what is not None:
+                    self.appendCommand(name, base.SearchRule.CommandData(
+                        marker=var1, text=what, text2=replacement))
+                elif isRegister(var1) and var2 is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(
+                        register=var1, text=what, text2=replacement))
+                else:
+                    success = self.parseError(
+                        'invalid syntax: replace-m:DwhatDwithD or replace-R:DwhatDwithD expected')
+            elif name == 'set':
+                # set-R-m
+                # set-R D<text>D
+                if isRegister(var1) and isMarker(var2) and text is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(
+                        register=var1, marker=var2))
+                elif isRegister(var1) and var2 is None and text is not None:
+                    self.appendCommand(name, base.SearchRule.CommandData(
+                        register=var1, text=text, escChar=esc))
+                else:
+                    success = self.parseError(
+                        'invalid syntax: set-R-m or set-R DtextD expected')
+            elif name == 'swap':
+                # swap-m
+                if isMarker(var1) and var2 is None and text is None:
+                    self.appendCommand(name, base.SearchRule.CommandData(marker=var1))
+                else:
+                    success = self.parseError(
+                        'invalid syntax: swap-m expected')
+            elif name == 'state':
+                # state-R:D<variable>D
+                var3 = None if text is None or SearchRuleList.__reRuleStateParam.match(
+                    text) is None else text
+                if isRegister(var1) and var2 is None and var3 is not None:
+                    self.appendCommand(name, base.SearchRule.CommandData(
+                        register=var1, text=var3))
+                else:
+                    success = self.parseError(
+                        'invalid syntax: state-R:"{row|col|rows|size-R|rows-R}" expected')
+            else:
+                success = self.parseError(
+                    'unknown name {} in {}'.format(name, rule))
+        return success
+
+    def parseError(self, message):
+        '''Logs a parser error.
+        @param message: the error message
+        @return: False (for chaining)
+        '''
+        self._logger.error('{}: {} rule: {}'.format(
+            self._col, message, self._currentRule))
+        self._errorCount += 1
+        return False
+
+    def parseRules(self, rules):
+        '''Parses the rules given as string and put it in a prepared form into the list
+        @param rules: the rules as string,
+            Example: '>/logfile:/ -2:0 bol':
+            search forwards "logfile:" go backward 2 line 0 column, go to begin of line
+        '''
+        self._col = 0
+        rules = rules.lstrip('\t\n\r ;')
+        while rules != '':
+            currentRule = None
+            lengthCommand = None
+            ready = False
+            if rules.startswith('replace'):
+                lengthCommand = self.parseRuleReplace(rules)
+                ready = True
+            if not ready:
+                match = SearchRuleList.__reRule.match(rules)
+                if match is None:
+                    break
+                else:
+                    singleRule = self._currentRule = match.group(0)
+                    lengthCommand = len(singleRule)
+                    ruleType = singleRule[0]
+                    if ruleType in ('<', '>', 'F', 'B'):
+                        sep = singleRule[1]
+                        ixEnd = singleRule.find(sep, 2)
+                        param = SearchData()
+                        msg = param.setData(
+                            singleRule[2:ixEnd], singleRule[ixEnd + 1:])
+                        if msg is not None:
+                            self.parseError(msg)
+                        if ruleType == 'F':
+                            ruleType = '>'
+                        elif ruleType == 'B':
+                            ruleType = '<'
+                        currentRule = base.SearchRule.SearchRule(ruleType, param)
+                    elif ruleType == '%':
+                        # label:
+                        currentRule = base.SearchRule.SearchRule(ruleType, singleRule[0:-1])
+                    elif '0' <= ruleType <= '9':
+                        currentRule = base.SearchRule.SearchRule(
+                            '+', [int(match.group(1)), int(match.group(2)), ':'])
+                    elif ruleType in ('+', '-'):
+                        # reposition:
+                        factor = 1 if ruleType == '+' else -1
+                        currentRule = base.SearchRule.SearchRule('+', [factor * int(match.group(1)),
+                                                 factor * int(match.group(2)), '+'])
+                    elif singleRule.startswith('bo') or singleRule.startswith('eo'):
+                        currentRule = SearchRuleList.parseAnchor(match)
+                    else:
+                        self.parseCommand(singleRule)
+            if currentRule is not None:
+                self._rules.append(currentRule)
+            if lengthCommand == 0:
+                break
+            self._col += lengthCommand
+            rules = rules[lengthCommand:].lstrip('\t\n\r ;')
+            matcher = SearchRuleList.__reFlowControl.match(rules)
+            if matcher is not None:
+                controls = matcher.group(0)
+                if self._rules:
+                    self._rules[len(self._rules) -
+                                1]._flowControl.setControl(controls)
+                length = len(controls)
+                self._col += length
+                rules = rules[length:].lstrip('\t\n\r ;')
+        if rules != '':
+            self.parseError('not recognized input: ' + rules)
+        rc = self._errorCount == 0
+        return rc
+
+    def parseRuleReplace(self, rules):
+        '''Parses the 'replace' command.
+        @param rules: the rules starting with 'replace'...
+        @return: the length of the replace command
+        '''
+        rc = len('replace')
+        # .......A.........  A..1.....12..2..3..3..4...4
+        # replace(?:-[a-zA-Z])?:([^\s])(.+)\1(.*)\1(e=.)?')
+        matcher = SearchRuleList.__reRuleReplace.match(rules)
+        if matcher is None:
+            self.parseError('wrong syntax for replace: ' +
+                            base.StringUtils.limitLength(rules, 40))
+        else:
+            name = None if rules[7] != '-' else rules[8]
+            register = None if name is None or name > 'Z' else name
+            marker = None if name is None or name < 'a' else name
+            what = matcher.group(2)
+            replacement = matcher.group(3)
+            options = matcher.group(4)
+            escChar = None if options is None or options == '' else options[2]
+            param = base.SearchRule.CommandData(register, escChar, marker, what, replacement)
+            rule = base.SearchRule.SearchRule('replace', param)
+            self._rules.append(rule)
+            rc = len(matcher.group(0))
+        return rc
+
+    def startTrace(self, filename, append=False):
+        '''Starts tracing the rule execution.
+        @param filename: the name of the trace file
+        @param append: True: the trace will be appended
+        '''
+        self._fpTrace = open(filename, 'a' if append else 'w')
+        self._fpTrace.write('= start\n')
+
+    def stopTrace(self):
+        '''Stops tracing the rule execution.
+        @param filename: the name of the trace file
+        @param append: True: the trace will be appended
+        '''
+        if self._fpTrace is not None:
+            self._fpTrace.close()
+            self._fpTrace = None
+
+    def trace(self, index, after, state):
+        '''Traces the state applying the current rule.
+        @param index: index in _rules
+        @param after: True: called after processing the rule
+        @param state: the base.SearchRule.ProcessState instance
+        '''
+        rule = self._rules[index]
+        rc = rule.state(after, state)
+        if after:
+            success = 'success' if state._success else 'error'
+            self._fpTrace.write('{:03d}: {} {}\n    {}\n'.format(
+                index, success, rule.toString(), rc))
+
+
+class SearchData:
+    '''Data for seaching (forward and backward)
+    '''
+    __reRange = re.compile(r':?(\d+)')
+
+    def __init__(self):
+        '''Constructor:
+        @param igoreCase: searching 'a' finds 'A' and 'a'
+        @param useEnd: True: the cursor is set behind the found string
+            False: the cursor is set at the beginning of the found string
+        '''
+        self._ignoreCase = None
+        self._useEnd = None
+        self._rangeColumns = None
+        self._rangeLines = None
+        self._regExpr = None
+
+    def setData(self, string, options):
+        '''Sets the variables by inspecting the string and the options.
+        @param string: the search string (regular expression)
+        @param options: the search options, e.g. 'i' for ignore case
+        @return: None: success otherwise: an error message
+        '''
+        rc = None
+        match = SearchData.__reRange.match(options)
+        if match is not None:
+            if options.startswith(':'):
+                self._rangeColumns = int(match.group(1))
+            else:
+                self._rangeLines = int(match.group(1))
+            options = options[len(match.group(0)):]
+        options = options.rstrip()
+        while options != '':
+            if options.startswith('i'):
+                self._ignoreCase = True
+            elif options.startswith('e'):
+                self._useEnd = True
+            else:
+                rc = 'unknown search option: ' + options[0]
+                break
+            options = options[1:].rstrip()
+        self._regExpr = re.compile(
+            string, base.Const.IGNORE_CASE if self._ignoreCase else 0)
+        return rc
diff --git a/base/StringUtils.py b/base/StringUtils.py
new file mode 100644 (file)
index 0000000..3271d3f
--- /dev/null
@@ -0,0 +1,767 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import re
+import os
+import datetime
+import codecs
+
+import base.JavaConfig
+import base.MemoryLogger
+
+
+LOGGER = None
+
+# .................................1.....1....2.....2....3.....3
+REG_EXPR_DATE = re.compile(r'^(\d{4})[.-](\d\d?)[.-](\d\d?)')
+REG_EXPR_DATE2 = re.compile(r'^(\d\d?)[.](\d\d?)[.](\d{4})')
+# ...................................1.....1.2....2 a..3.....3a
+REG_EXPR_TIME = re.compile(r'^(\d\d?):(\d\d?)(?::(\d\d?))?$')
+REG_EXPR_INT = re.compile(r'^0[xX]([0-9a-fA-F]+)|0o([0-7]+)|(\d+)$')
+REG_EXPR_SIZE = re.compile(
+    r'^(\d+)((?:[kmgt]i?)?(?:b(?:ytes?)?)?)?$', base.Const.IGNORE_CASE)
+# REG_EXPR_ESC =
+# re.compile(r'(\\U........|\\u....|\\x..|\\[0-7]{1,3}|\\N\{[^}]+\}|\\[\\'"abfnrtv])',
+# base.Const.RE_UNICODE)
+REG_EXPR_ESC = re.compile(r'''(\\U[0-9a-fA-F]{8}|\\u[0-9a-fA-F]{4}|\\x[0-9a-fA-F][0-9a-fA-F]|\\[0-7]{1,3}'
+    + '|\\N\{[^}]+\}|\\[\\'"abfnrtv])''', base.Const.RE_UNICODE)
+#    ( \\U........      # 8-digit hex escapes
+#    | \\u....          # 4-digit hex escapes
+#    | \\x..            # 2-digit hex escapes
+#    | \\[0-7]{1,3}     # Octal escapes
+#    | \\N\{[^}]+\}     # Unicode characters by name
+#    | \\[\\'"abfnrtv]  # Single-character escapes
+
+def _error(msg, logger=None):
+    global LOGGER
+    if logger is None:
+        logger = LOGGER
+    if logger is None:
+        print(f'+++ {msg}')
+    else:
+        logger.error(msg)
+
+def arrayContains(lines, regExpr):
+    '''Tests whether at least one line of the array lines contains a given regular expression.
+    @param lines: array of text lines
+    @param regExpr: a string or a regexpr object
+    @return: True: at least one item of lines contains the regular expression regExpr
+    '''
+    if isinstance(regExpr, str):
+        regExpr = re.compile(regExpr)
+    found = False
+    for line in lines:
+        if regExpr.search(line) is not None:
+            found = True
+            break
+    return found
+
+
+def asFloat(value, defaultValue=None):
+    '''Tests whether a value is an floating point number. If not the defaultValue is returned. Otherwise the float is returned.
+    @param value: string value to test
+    @param defaultValue: the return value if value is not an float
+    @return: defaultValue: the value is not an integer Otherwise: the value as float
+    '''
+    rc = defaultValue
+    try:
+        rc = float(value)
+    except ValueError:
+        # may be a hex number...
+        rc = asInt(value, defaultValue)
+        if rc is not None:
+            rc = float(rc)
+    return rc
+
+
+def asInt(value, defaultValue=None, signIsAllowed=True):
+    '''Tests whether a value is an integer. If not the defaultValue is returned. Otherwise the integer is returned.
+    @param value: string value to test
+    @param defaultValue: the return value if value is not an integer
+    @param signIsAllowed: False: a preceeding '-' or '+' in value is an error
+    @return: defaultValue: the value is not an integer Otherwise: the value as integer
+    '''
+    rc = defaultValue
+    if value is not None:
+        if isinstance(value, int):
+            rc = value
+        else:
+            negative = value.startswith('-')
+            if signIsAllowed and (negative or value.startswith('+')):
+                value = value[1:]
+            matcher = REG_EXPR_INT.match(value)
+            if matcher is None:
+                rc = defaultValue
+            else:
+                if value.startswith('0x') or value.startswith('0X'):
+                    rc = int(matcher.group(1), 16)
+                elif value.startswith('0'):
+                    rc = int(value, 8)
+                else:
+                    rc = int(value)
+                rc = -rc if negative else rc
+    return rc
+
+
+def avoidWarning(unusedVariable):
+    '''This function is used to avoid the warning "variable not used".
+    @param unusedVariable: variable to "hide"
+    '''
+    # do nothing
+
+
+def escChars(text):
+    '''Return the text with escaped meta characters like \n, \t, \\.
+    Inversion: @see unescChars()
+    @todo: handle more cases, performance optimization
+    @param text: text to convert
+    @return: the text with escaped chars.
+    '''
+    rc = text.replace('\\', '\\\\').replace('\n', '\\n').replace(
+        '\r', '\\r').replace('\t', '\\t').replace('\b', '\\b').replace('\a', '\\a')
+    return rc
+
+
+def fileToText(filename, sep=None, binaryTestLength=4096, ignoreBinary=False, maxLength=10*1000*1000):
+    '''Reads a (possible binary) file into a string.
+    @param filename: the name of the file to read
+    @param sep: None or the split separator
+    @param binaryTestLength: the test whether the file is binary is done with this length
+    @param ignoreBinary: True: if a file is binary the result is empty
+    @param maxLength: if the file length is larger than that the result is empty
+    @return the content of the file: If sep is None: a string. Otherwise an array of strings (lines)
+    '''
+    rc = ''
+    statInfo = os.stat(filename)
+    if statInfo is not None and statInfo.st_size <= maxLength:
+        with open(filename, 'rb') as fp:
+            content = fp.read()
+            if content and (not ignoreBinary or not base.StringUtils.isBinary(content, binaryTestLength)):
+                rc = toString(content, 'bytes')
+    if sep is not None:
+        rc = rc.split(sep)
+    return rc
+
+
+def firstMatch(aList, regExpr, start=0):
+    r'''Return the matching object of the first matching line of a given line list.
+    @param aList: an array of lines to inspect
+    @param regExpr: a compiled regular expression, e.g. re.compile(r'^\w+ =\s(.*)$')
+    @param start: the first line index to start searching
+    @return: None: nothing found
+        otherwise: the matching object of the hit
+    '''
+    matcher = None
+    while start < len(aList):
+        matcher = regExpr.search(aList[start])
+        if matcher is not None:
+            break
+        start += 1
+    return matcher
+
+
+def formatSize(size):
+    '''Formats the filesize with minimal length.
+    @param size: size in bytes
+    @return: a string with a number and a unit, e.g. '103 kByte'
+    '''
+    if size < 1000:
+        rc = str(size) + ' Byte'
+    else:
+        if size < 1000000:
+            unit = 'KB'
+            size /= 1000.0
+        elif size < 1000000000:
+            unit = 'MB'
+            size /= 1000000.0
+        elif size < 1000000000000:
+            unit = 'GB'
+            size /= 1000000000.0
+        else:
+            unit = 'TB'
+            size /= 1000000000000.0
+        rc = '{:.3f} {:s}'.format(size, unit)
+    return rc
+
+
+def fromFile(filename, sep=None):
+    '''Returns the file content as a string. Only UTF-8 is allowed.
+    @see fileToText() for other encodings
+    @param filename: the name of the file to read
+    @param sep: None or the split separator
+    @param content: the content of the file. If sep is None: a string. Otherwise an array
+    '''
+    rc = ''
+    if os.path.exists(filename):
+        with open(filename, 'r') as fp:
+            try:
+                rc = fp.read()
+            except UnicodeDecodeError as exc:
+                _error(f'{filename}: {exc}')
+    if sep is not None:
+        rc = rc.split(sep)
+    return rc
+
+
+def grepInFile(filename, regExpr, limit=None, group=None):
+    r'''Returns all lines of a given file matching a given regular expression.
+    @param filename: the name of the file to inspect
+    @param regExpr: a compiled regular expression, e.g. re.compile(r'^\w+ =')
+    @param limit: the maximal count of returned lines
+    @param group: None or: the content of the group (defined by the group-th parenthesis) will be returned
+    @return: a list of found lines or groups (see group), may be empty
+    '''
+    rc = []
+    if isinstance(regExpr, str):
+        regExpr = re.compile(regExpr)
+    if os.path.exists(filename):
+        with open(filename, 'r') as fp:
+            for line in fp:
+                line = line.strip()
+                matcher = regExpr.search(line)
+                if matcher is not None:
+                    if group is not None:
+                        rc.append(matcher.group(group))
+                    else:
+                        rc.append(line)
+                    if limit is not None:
+                        limit -= 1
+                        if limit <= 0:
+                            break
+    return rc
+
+
+def hasContent(filename, beginOfComment='#'):
+    '''Tests whether a file has a content without empty lines or comment lines.
+    @param beginOfComment    this string starts a comment line
+    @return: True: there are lines which are not empty and not comments.
+    '''
+    rc = False
+    if os.path.exists(filename):
+        with open(filename, 'r') as fp:
+            for line in fp:
+                line = line.strip()
+                if line != '' and not line.startswith(beginOfComment):
+                    rc = True
+                    break
+    return rc
+
+
+def indentLines(lines, indention, indentStep=' '):
+    '''Indents some lines given as string.
+    @param lines: a string with some lines delimited by '\n'
+    @param indention: the number of indention steps of the output
+    @param indentStep: the string representing one indention step, e.g. '\t'
+    @return: a string with the lines of lines with the given indention
+    '''
+    lines = lines.split('\n')
+    lines2 = []
+    for line in lines:
+        lines2.append(indentStep * indention + line.lstrip())
+    rc = '\n'.join(lines2)
+    return rc
+
+
+def isBinary(text, testLength=4096):
+    '''Tests whether the text is binary.
+    @param text: a str or a bytes instance
+    @param testLength: the test is done only in prefix of text in this length
+    @return True: the text is binary
+    '''
+    rc = False
+    if text is not None:
+        piece = text[0:testLength]
+        theType = type(piece)
+        if theType == str:
+            if '\x00' in piece:
+                rc = True
+            else:
+                for cc in piece:
+                    if cc < ' ' and cc not in ('\r', '\n', '\v', '\t', '\f'):
+                        rc = True
+                        break
+        elif theType == bytes:
+            if b'\x00' in piece:
+                rc = True
+            else:
+                for bb in piece:
+                    if bb < 0x20 and not (9 <= bb  <= 13):
+                        rc = True
+                        break
+        else:
+            rc = True
+    return rc
+
+def join(separator, args):
+    '''Joins all entries of a list into a string.
+    @param separator: the separator between the list items
+    @param args: list to join. Items may be not strings
+    @return: a string with all items of args separated by separator
+    '''
+    rc = ''
+    if args is not None:
+        for item in args:
+            if rc != '':
+                rc += separator
+            rc += str(item)
+    return rc
+
+
+def limitItemLength(array, maxLength, elipsis='...'):
+    '''Copies the input array and limits each item to the given maximum.
+    @param array:    source array
+    @param maxLength: the maximal length of each item of the result
+    @param suffix: the suffix for limited items, e.g. '...'
+    @return: the copy of the array with limited items
+    '''
+    rc = []
+    lenElipsis = len(elipsis)
+    for item in array:
+        if len(item) > maxLength:
+            if maxLength >= lenElipsis:
+                item = item[0:maxLength - lenElipsis] + elipsis
+            else:
+                item = item[0:maxLength]
+        rc.append(item)
+    return rc
+
+
+def limitLength(string, maxLength, ellipsis='..'):
+    '''Returns the string or the head of the string if it is too long.
+    @param string: the string to inspect
+    @param maxLength: if the length of string is longer the result is the head of the string with this length
+    @param ellipsis: a string at the end of the result to mark of a cut, e.g. ".."
+    @result: the string or the head of the string if it is longer than maxLength
+    '''
+    rc = string
+    if len(string) > maxLength:
+        lenElipsis = 0 if ellipsis is None else len(ellipsis)
+        if lenElipsis + 1 <= maxLength:
+            rc = string[0:maxLength - lenElipsis] + ellipsis
+        else:
+            rc = string[0:maxLength]
+    return rc
+
+
+def limitLength2(string, maxLength, ellipsis='..'):
+    '''Returns the string or the head and tail of the string if it is too long.
+    @param string: the string to inspect
+    @param maxLength: if the length of string is longer the result is the head of the string with this length
+    @param ellipsis: a string at the end of the result to mark of a cut, e.g. ".."
+    @result: the string or the head of the string if it is longer than maxLength
+    '''
+    if maxLength == 0:
+        rc = ''
+    else:
+        rc = string
+        if len(string) > maxLength:
+            lenElipsis = 0 if ellipsis is None else len(ellipsis)
+            if lenElipsis + 2 <= maxLength:
+                half = (maxLength - lenElipsis) // 2
+                rc = string[0:half] + (ellipsis if ellipsis is not None else '') + \
+                    string[-(maxLength - half - lenElipsis):]
+            else:
+                half = maxLength // 2
+                rc = string[0:half] + string[-(maxLength - half):]
+    return rc
+
+
+def minimizeArrayUtfError(lines, logger=None):
+    '''Converts a string array of bytes into an array of UTF-8 strings.
+    It minimizes the part which can not be converted.
+    @param lines: a list of byte lines
+    @param logger: None or the error logger
+    @param logError: True: conversion errors will be logged
+    '''
+    rc = []
+    for line in lines:
+        try:
+            rc.append(line.decode('utf-8'))
+        except UnicodeDecodeError:
+            rc.append(minimizeStringUtfError(line, logger))
+    return rc
+
+
+def minimizeStringUtfError(line, logger=None):
+    '''Converts a string of bytes into an UTF-8 string.
+    It minimizes the part which can not be converted.
+    @param lines: a list of byte lines
+    @param logger: None or the error logger
+    '''
+    def convert(part):
+        try:
+            rc = part.decode('utf-8')
+        except UnicodeDecodeError:
+            if logger is not None:
+                logger.error('cannot decode: ' +
+                             part.decode('ascii', 'ignore')[0:80])
+            rc = None
+        return rc
+    rc = ''
+    if len(line) < 10:
+        part = convert(line)
+        if part is not None:
+            rc += part
+        else:
+            try:
+                rc = line.decode('latin-1')
+            except:
+                rc = line.decode('ascii')
+    else:
+        half = int(len(line) / 2)
+        part = convert(line[0:half])
+        if part is not None:
+            rc += part
+        else:
+            rc += minimizeStringUtfError(line[0:half], logger)
+        part = convert(line[half:])
+        if part is not None:
+            rc += part
+        else:
+            rc += minimizeStringUtfError(line[half:], logger)
+    return rc
+
+
+def parseDateTime(text, errors, dateOnly=False):
+    '''Parses a string representing a date or a datetime.
+    @param text: the text to parse
+    @param errors: IN/OUT: a list: error message will be appended here
+    @param dateOnly: True: only dates are allowed
+    @return: None: text is not a date
+        a DateTime instance
+    '''
+    rc = None
+    matcher = REG_EXPR_DATE.match(text)
+    if matcher is not None:
+        length = len(matcher.group(0))
+        try:
+            rc = datetime.datetime(int(matcher.group(1)), int(
+                matcher.group(2)), int(matcher.group(3)))
+            text = text[length:]
+            if text and text[0] in ('-', '/', 'T', '\t', ' '):
+                text = text[1:]
+        except ValueError as exc:
+            errors.append(str(exc) + ': ' + text)
+    else:
+        matcher = REG_EXPR_DATE2.match(text)
+        if matcher is None:
+            errors.append(f'not a date: {text}')
+        else:
+            length = len(matcher.group(0))
+            try:
+                rc = datetime.datetime(int(matcher.group(3)), int(
+                    matcher.group(2)), int(matcher.group(1)))
+                text = text[length:]
+                if text and text[0] in ('-', '/', 'T', '\t', ' '):
+                    text = text[1:]
+            except ValueError as exc:
+                errors.append(str(exc) + ': ' + text)
+    if not dateOnly and rc is not None and len(text) >= 3:
+        matcher = REG_EXPR_TIME.match(text)
+        if matcher is not None:
+            sec = 0 if matcher.lastindex < 3 else int(matcher.group(3))
+            delta = datetime.timedelta(hours=int(matcher.group(
+                1)), minutes=int(matcher.group(2)), seconds=sec)
+            rc = rc + delta
+            text = text[len(matcher.group(0)):]
+    if rc is not None and text != '':
+        rc = None
+        errors.append(f'unexpected tail of a date: {text}')
+    return rc
+
+
+def parseSize(size, errors):
+    '''Parses string with a filesize syntax.
+    @param size: the string with the size to process, e.g. '44kiByte'
+    @param errors: OUT: error messages will be appended to this list
+    @return: None: wrong syntax otherwise: the size as integer
+    '''
+    rc = None
+    if size == '':
+        errors.append('size cannot be empty')
+    else:
+        matcher = REG_EXPR_SIZE.match(size)
+        if matcher is None:
+            errors.append(
+                f'not a valid size {size}. Expected <number>[<unit>], e.g. 10Mi')
+        else:
+            rc = int(matcher.group(1))
+            if matcher.lastindex > 1:
+                factor = 1
+                unit = matcher.group(2).lower()
+                if unit.startswith('ki'):
+                    factor = 1024
+                elif unit.startswith('k'):
+                    factor = 1000
+                elif unit.startswith('mi'):
+                    factor = 1024 * 1024
+                elif unit.startswith('m'):
+                    factor = 1000 * 1000
+                elif unit.startswith('gi'):
+                    factor = 1024 * 1024 * 1024
+                elif unit.startswith('g'):
+                    factor = 1000 * 1000 * 1000
+                elif unit.startswith('ti'):
+                    factor = 1024 * 1024 * 1024 * 1024
+                elif unit.startswith('t'):
+                    factor = 1000 * 1000 * 1000 * 1000
+                rc *= factor
+    return rc
+
+
+def privateConfig():
+    '''Returns the "private" configuration.
+    This is a configuration for private data. This file is not in the GIT repository.
+    @return: the JavaConfig instance
+    '''
+    fn = '/usr/share/snakeboxx/data/private.conf'
+    logger = base.MemoryLogger.MemoryLogger()
+    config = base.JavaConfig.JavaConfig(fn, logger)
+    return config
+
+
+def regExprCompile(pattern, location, logger=None, isCaseSensitive=False):
+    '''Compiles a regular expression.
+    @param pattern: a regular expression.
+    @param logger: for error logging
+    @param isCaseSensitive: true: the case is relevant
+    @return: None: error occurred Otherwise: the re.RegExpr instance
+    '''
+    rc = None
+    try:
+        rc = re.compile(
+            pattern, 0 if isCaseSensitive else base.Const.IGNORE_CASE)
+    except re.error as exc:
+        msg = f'error in regular expression in {location}: {exc}'
+        _error(msg, logger)
+    return rc
+
+
+def secondsToString(seconds):
+    '''Converts a number of seconds into a human readable string, e.g. '00:34:22'
+    @param seconds: the seconds to convert
+    @return: a string like '0:34:22'
+    '''
+    rc = '{:02d}:{:02d}:{:02d}'.format(
+        seconds // 3600, seconds // 60 % 60, seconds % 60)
+    return rc
+
+
+def setLogger(logger):
+    '''Sets the global logger.
+    '''
+    global LOGGER
+    LOGGER = logger
+
+
+def toFile(filename, content, separator='', fileMode=None, user=None, group=None, ensureParent=False):
+    '''Writes a string into a file.
+    @param filename: the name of the file to write
+    @param content: the string to write
+    @param fileMode: None or the access rights of the file, e.g. 0o755
+    @param user: None or the user name or user id to set (chown)
+    @param gid: None or the group name or group id to set (chown)
+    @param ensureParent: True: the parent directory is created if needed
+    '''
+    if ensureParent:
+        parent = os.path.dirname(filename)
+        if parent != '':
+            base.FileHelper.ensureDirectory(parent)
+    if isinstance(content, list):
+        content = separator.join(content)
+    mode = 'wb' if isinstance(content, bytes) else 'w'
+    try:
+        with open(filename, mode) as fp:
+            fp.write(content)
+        if fileMode is not None:
+            os.chmod(filename, fileMode)
+        if user is not None or group is not None:
+            os.chown(filename, base.LinuxUtils.userId(
+                user, -1), base.LinuxUtils.groupId(group, -1))
+    except OSError as exc:
+        _error(f'cannot write to {filename}: {exc} [{type(exc)}]')
+
+
+def toFloat(value):
+    '''Converts a string into a float.
+    Possible data types: int, date, datetime, float.
+    Value of date/datetime: seconds since 1.1.1970
+    Value of time: seconds since midnight
+    @param value: the string to convert
+    @return [float, dataType] or [error_message, dataType]
+    '''
+    if isinstance(value, float):
+        rc = value
+    elif isinstance(value, int):
+        rc = float(value)
+    else:
+        if not isinstance(value, str):
+            value = str(value)
+        matcher = REG_EXPR_DATE.match(value)
+        if matcher is not None:
+            length = len(matcher.group(0))
+            value = value[length + 1:]
+            rc = datetime.datetime(int(matcher.group(1)), int(
+                matcher.group(2)), int(matcher.group(3))).timestamp()
+            matcher = REG_EXPR_TIME.match(value)
+            if matcher is not None:
+                hours, mins = int(matcher.group(1)), int(matcher.group(2))
+                secs = (hours * 60 + mins) * 60
+                rc += secs
+                if matcher.group(3):
+                    rc += int(matcher.group(3))
+        else:
+            matcher = REG_EXPR_TIME.match(value)
+            if matcher is not None:
+                hours, mins = int(matcher.group(1)), int(matcher.group(2))
+                rc = (hours * 60 + mins) * 60
+                if matcher.group(3):
+                    rc += int(matcher.group(3))
+            else:
+                rc = asFloat(value)
+                if rc is None:
+                    rc = 'float (or int or date(time)) expected, found: ' + value
+    return rc
+
+
+def toFloatAndType(value):
+    '''Converts a string into a float.
+    Possible data types: int, date, datetime, float.
+    Value of date/datetime: seconds since 1.1.1970
+    Value of time: seconds since midnight
+    @param value: the string to convert
+    @return [float, dataType] or [error_message, dataType]
+    '''
+    dataType = 'undef'
+    if isinstance(value, float):
+        dataType = 'float'
+        rc = value
+    else:
+        matcher = REG_EXPR_DATE.match(value)
+        if matcher is not None:
+            dataType = 'date'
+            length = len(matcher.group(0))
+            value = value[length + 1:]
+            rc = datetime.datetime(int(matcher.group(1)), int(
+                matcher.group(2)), int(matcher.group(3))).timestamp()
+            matcher = REG_EXPR_TIME.match(value)
+            if matcher is not None:
+                dataType += 'time'
+                hours, mins = int(matcher.group(1)), int(matcher.group(2))
+                secs = (hours * 60 + mins) * 60
+                rc += secs
+                if matcher.group(3):
+                    rc += int(matcher.group(3))
+        else:
+            matcher = REG_EXPR_TIME.match(value)
+            if matcher is not None:
+                hours, mins = int(matcher.group(1)), int(matcher.group(2))
+                dataType = 'time'
+                rc = (hours * 60 + mins) * 60
+                if matcher.group(3):
+                    rc += int(matcher.group(3))
+            else:
+                matcher = REG_EXPR_INT.match(value)
+                if matcher is not None:
+                    dataType = 'int'
+                    if matcher.group(3):
+                        rc = float(matcher.group(3))
+                    elif matcher.group(1):
+                        rc = float(int(value[2:], 16))
+                    elif matcher.group(2):
+                        rc = float(int(value, 8))
+                else:
+                    try:
+                        rc = float(value)
+                        dataType = 'float'
+                    except ValueError:
+                        rc = 'float (or int or date(time)) expected, found: ' + value
+    return [rc, dataType]
+
+
+def toString(value, dataType=None, floatPrecision=None):
+    '''Converts a numeric value into a string.
+    @param value: a numeric value
+    @param dataType: None: derive it from value otherwise: 'date', 'datetime', 'time', 'float', 'int'
+    @param floatPrecision: None or if the type is a float, the number of digits behind the point
+    @return: the value as string
+    '''
+    if dataType is None:
+        dataType = type(value)
+    if dataType == 'bytes':
+        try:
+            rc = value.decode('utf-8')
+        except UnicodeDecodeError:
+            rc = value.decode('latin_1')
+            if rc == '':
+                rc = value.decode('ascii')
+    elif dataType == 'date':
+        date = datetime.datetime.fromtimestamp(value)
+        rc = date.strftime('%Y.%m.%d')
+    elif dataType == 'datetime':
+        if isinstance(value, str) and value.find(':') >= 0:
+            rc = value
+        else:
+            date = datetime.datetime.fromtimestamp(value)
+            rc = date.strftime('%Y.%m.%d %H:%M')
+    elif dataType == 'time':
+        if isinstance(value, str) and value.find(':') >= 0:
+            rc = value
+        else:
+            rc = '{:2d}:{:2d}'.format(value / 3600, value % 3600 / 60)
+    elif floatPrecision is not None:
+        if isinstance(value, str):
+            value = float(value)
+        aFormat = '{' + ':.{}f'.format(floatPrecision) + '}'
+        rc = aFormat.format(value)
+    else:
+        rc = '{}'.format(value)
+    return rc
+
+
+def tailOfWord(words, wordPrefix):
+    '''Returns the part of a word behind the word prefix.
+    Example: words: "-e! -m" wordPrefix: "-e" result: "!"
+    @param words: a string with words separated by space or tab
+    @param wordPrefix: the word starting with this prefix will be searched
+    @return: None: word prefix not found
+            the word suffix
+    '''
+    rc = None
+    if words.startswith(wordPrefix):
+        ixStart = 0
+    else:
+        ixStart = words.find(wordPrefix)
+        if ixStart > 0 and not words[ixStart - 1].isspace():
+            ixStart = words.find(' ' + wordPrefix)
+            if ixStart < 0:
+                ixStart = words.find('\t' + wordPrefix)
+    if ixStart >= 0:
+        ixStart += len(wordPrefix)
+        ixEnd = words.find(' ', ixStart)
+        ixEnd2 = words.find('\t', ixStart)
+        if ixEnd < 0 or 0 < ixEnd2 < ixEnd:
+            ixEnd = ixEnd2
+        if ixEnd < 0:
+            ixEnd = len(words)
+        rc = words[ixStart:ixEnd]
+    return rc
+
+
+def unescChars(text):
+    '''Returns the text without escaped meta characters like \n, \t, \\.
+    Inversion: @see escChar()
+    @param text: text to convert
+    @return: the text with unescaped chars
+    '''
+    def decode_match(match):
+        return codecs.decode(match.group(0), 'unicode-escape')
+
+    rc = REG_EXPR_ESC.sub(decode_match, text)
+    return rc
+
+
+if __name__ == '__main__':
+    pass
diff --git a/base/TextProcessor.py b/base/TextProcessor.py
new file mode 100644 (file)
index 0000000..0ecc149
--- /dev/null
@@ -0,0 +1,314 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import re
+import os.path
+import datetime
+
+import base.Const
+import base.StringUtils
+import base.SearchRule
+import base.SearchRuleList
+
+
+class TextProcessor:
+    '''A processor for finding/modifying text.
+    '''
+
+    def __init__(self, logger):
+        self._filename = None
+        self._lines = None
+        self._logger = logger
+        self._region = base.SearchRule.Region(self)
+        self._cursor = base.SearchRule.Position(0, 0)
+        self._endOfFile = base.SearchRule.Position(0, 0)
+        self._beginOfFile = base.SearchRule.Position(0, 0)
+        self._lastState = None
+        self._hasChanged = False
+        self._traceFile = None
+
+    def cursor(self, mode='both'):
+        '''Returns the cursor as pair (line, col), or the line or the column, depending on mode.
+        @param mode: 'both', 'line' or 'col'
+        @return [line, col], line or col, depending on mode
+        '''
+        rc = ([self._cursor._line, self._cursor._col] if mode == 'both' else
+              (self._cursor._col if mode == 'col' else self._cursor._line))
+        return rc
+
+    def executeRules(self, rulesAsString, maxLoops=1):
+        '''Compiles the rules and executes them.
+        @param rules: a sequence of rules given as string
+        @return True: success False: error
+        '''
+        ruleList = base.SearchRuleList.SearchRuleList(self._logger)
+        rc = ruleList.parseRules(rulesAsString)
+        if rc:
+            rc = ruleList.check()
+        if rc:
+            status = base.SearchRule.ProcessState(self._lines, self._region._startPosition, self._region._endPosition,
+                                                  self._cursor, self._logger, maxLoops)
+            if self._traceFile is not None:
+                ruleList.startTrace(self._traceFile, True)
+            ruleList.apply(status)
+            self._cursor.clone(status._cursor)
+            self._lastState = status
+            self._hasChanged = status._hasChanged
+            rc = status._success
+            if self._traceFile is not None:
+                ruleList.stopTrace()
+        return rc
+
+    def findLine(self, pattern, firstIndex=0, lastIndex=None):
+        '''Search a line matching a given regular expression.
+        @param pattern: the pattern to find: a string or a RegExpr instance
+        @param firstIndex: the index of the first line to inspect
+        @param endIndex: exclusive: the index below the last line to inspect
+        @return: -1: not found otherwise: the line index 0..N-1
+        '''
+        rc = -1
+        regExpr = re.compile(pattern) if isinstance(pattern, str) else pattern
+        ixLine = firstIndex
+        last = min(lastIndex, len(self._lines)
+                   ) if lastIndex is not None else len(self._lines)
+        while ixLine < last:
+            if regExpr.search(self._lines[ixLine]):
+                rc = ixLine
+                break
+            ixLine += 1
+        return rc
+
+    def insertOrReplace(self, key, line, anchor=None, above=False):
+        '''Replaces a a line or inserts it.
+        Searches the key. If found the line (with the key) is replaced by line.
+        If not the anchor is searched an the line is inserted at the anchor.
+        @param key: a regular expression identifying the line to replace
+        @param line: the line to replace or to insert
+        @param anchor: None: anchor is the end of the file
+            if key is not found this position is used for insertion
+        @param above: True: the insertion is done above the anchor
+        '''
+        if isinstance(key, str):
+            key = re.compile(key)
+        ix = self.findLine(key)
+        if ix >= 0:
+            if self._lines[ix] == line:
+                self._logger.log(
+                    f'key found, but same content at {ix}', base.Const.LEVEL_DETAIL)
+            else:
+                if self._logger._verboseLevel >= base.Const.LEVEL_DETAIL:
+                    line2 = base.StringUtils.limitLength2(self._lines[ix], 132)
+                    line3 = base.StringUtils.limitLength2(line, 132)
+                    self._logger.log(
+                        f'replacement at {ix}:\n{line2}\n{line3}', base.Const.LEVEL_DETAIL)
+                self._hasChanged = True
+                self._lines[ix] = line
+        else:
+            if anchor is None:
+                ix = len(self._lines)
+            else:
+                if isinstance(anchor, str):
+                    anchor = re.compile(anchor)
+                ix = self.findLine(anchor)
+                if ix < 0:
+                    ix = len(self._lines)
+                else:
+                    ix = ix if above else ix + 1
+                self._lines.insert(ix, line)
+                self._hasChanged = True
+                if self._logger._verboseLevel >= base.Const.LEVEL_DETAIL:
+                    line3 = base.StringUtils.limitLength2(line, 132)
+                    self._logger.log(
+                        f'insert at {ix}:\n{line2}', base.Const.LEVEL_DETAIL)
+
+    def readFile(self, filename, mustExists=True):
+        '''Reads a file into the internal buffer.
+        @param filename: the file to read
+        @param mustExists: True: errros will be logged
+        @return True: success False: cannot read
+        '''
+        self._filename = filename
+        rc = os.path.exists(filename)
+        if not rc:
+            if mustExists:
+                self._logger.error('{} does not exists'.format(filename))
+        else:
+            self._lines = base.StringUtils.fromFile(filename, '\n')
+        self.setEndOfFile(self._endOfFile)
+        self._region._startPosition.clone(self._beginOfFile)
+        self._region._endPosition.clone(self._endOfFile)
+        self._cursor.clone(self._beginOfFile)
+        return rc
+
+    def replace(self, pattern, replacement, groupMarker=None, noRegExpr=False, countHits=False,
+                wordOnly=False, ignoreCase=False, escActive=False):
+        r'''Replaces all occurrences of what with a replacement in the current region.
+        @param pattern: a regular expression of the string to search unless noRegExpr==True:
+        @param replacement: what will be replaced with this. May contain a placeholder for groups in what
+        @param groupMarker: None: no group placeholder otherwise: the prefix of a group placeholder
+            example: groupMarker='$' then "$1" means the first group in what
+        @param noRegExpr: True: pattern is a plain string, not a regular expression
+        @param countHits: False: the result is the number of changed lines True: the result is the number of replacements
+        @param wordOnly: True: only whole words will be found. Only relevant for regular expressions
+        @param ignoreCase: True: the search is not case sensitive
+        @param escActive: True: esc sequences '\n', '\r', \t', '\xXX' in replacement will be recognized
+        @return: the number of replaced lines/replacements depending on countHits
+        '''
+        rc = 0
+        verbose = self._logger._verboseLevel > base.Const.LEVEL_LOOP
+        prefix = (self._filename + '-') if self._filename is not None else ''
+        if noRegExpr:
+            for ix in range(len(self._lines)):
+                line = self._lines[ix]
+                if line.find(pattern) >= 0:
+                    hits = self._lines[ix].count(pattern) if countHits else 1
+                    rc += hits
+                    self._lines[ix] = self._lines[ix].replace(
+                        pattern, replacement)
+                    if verbose:
+                        line2 = base.StringUtils.limitLength2(line, 130)
+                        line3 = base.StringUtils.limitLength2(
+                            self._lines[ix], 130)
+                        self._logger.log(
+                            f'{prefix}{ix+1}: {hits} hit(s)\n{line2}\n{line3}')
+        else:
+            if wordOnly and not noRegExpr:
+                pattern = r'\b' + pattern + r'\b'
+            reWhat = re.compile(pattern, base.Const.IGNORE_CASE if ignoreCase else 0) if isinstance(
+                pattern, str) else pattern
+            if escActive:
+                replacement = base.StringUtils.unescChars(replacement)
+            repl = replacement if groupMarker is None else replacement.replace(
+                groupMarker, '\\')
+            for ix, line in enumerate(self._lines):
+                if reWhat.search(line):
+                    self._lines[ix], count = reWhat.subn(repl, line)
+                    hits = count if countHits else 1
+                    rc += hits
+                    if verbose:
+                        line2 = base.StringUtils.limitLength2(line, 130)
+                        line3 = base.StringUtils.limitLength2(
+                            self._lines[ix], 130)
+                        self._logger.log(
+                            f'{prefix}{ix+1}: {hits} hit(s)\n{line2}\n{line3}')
+        if rc > 0:
+            self._hasChanged = True
+            prefix = self._filename + ': ' if self._filename is not None else ''
+            self._logger.log(f'{prefix}{hits} hit(s)', base.Const.LEVEL_DETAIL)
+        return rc
+
+    def replaceMany(self, what, replacements):
+        '''Replaces a list of strings with replacement.
+        @param what: a list of strings to search
+        @param replacements: a list of replacements
+        '''
+        allHits = 0
+        verbose = self._logger._verboseLevel >= base.Const.LEVEL_LOOP
+        prefix = (self._filename + '-') if self._filename is not None else ''
+        for ix, line in enumerate(self._lines):
+            hits = 0
+            for ix2, item in enumerate(what):
+                hits2 = line.count(item)
+                if hits2 > 0:
+                    hits += hits2
+                    line = line.replace(item, replacements[ix2])
+            if hits > 0:
+                allHits += hits
+                if verbose:
+                    line2 = base.StringUtils.limitLength2(self._lines[ix], 130)
+                    line3 = base.StringUtils.limitLength2(line, 130)
+                    self._logger.log(
+                        f'{prefix}{ix+1}: {hits} hit(s)\n{line2}\n{line3}')
+                self._lines[ix] = line
+        if allHits > 0:
+            self._hasChanged = True
+            prefix = self._filename + ': ' if self._filename is not None else ''
+            self._logger.log(f'{prefix}{allHits} hit(s)',
+                             base.Const.LEVEL_DETAIL)
+        return allHits
+
+    def searchByGroup(self, pattern, groupNo=0):
+        '''Returns the first hit of a pattern defined by a group.
+        @param pattern: a regular expression to search in each line of the buffer
+        @param groupNo: the result is that group (defined by parentheses)
+        @result: None: not found Otherwise: the group content. example: pattern='ID=(\d+)' group=1 line='ID=443' result: '443'
+        '''
+        rc = None
+        regExpr = re.compile(pattern) if type(pattern) == str else pattern
+        for line in self._lines:
+            matcher = regExpr.match(line)
+            if matcher:
+                rc = matcher.group(groupNo)
+                break
+        return rc
+
+    def setContent(self, content):
+        '''Sets the lines without a file.
+        @param content: the content for later processing: a string or a list of strings.
+            the single string will be splitted by '\n'
+        '''
+        if isinstance(content, str):
+            self._lines = content.split('\n')
+        else:
+            self._lines = content
+        self.setEndOfFile(self._endOfFile)
+        self._region._startPosition.clone(self._beginOfFile)
+        self._region._endPosition.clone(self._endOfFile)
+        self._cursor.clone(self._beginOfFile)
+
+    def setEndOfFile(self, position):
+        '''Sets the position to end of file.
+        '''
+        position._line = len(self._lines)
+        position._col = 0
+
+    def simpleInsertOrReplace(self, filename, key, line, anchor=None, above=False):
+        '''Combination of readFile(), simpleInsertOrReplace() and writeFile().
+        Searches the key. If found the line (with the key) is replaced by line.
+        If not found: the anchor is searched an the line is inserted at the anchor.
+        @param filename: the file to modify
+        @param key: a regular expression identifying the line to replace
+        @param line: the line to replace or to insert
+        @param anchor: None: anchor is the end of the file
+            if key is not found this position is used for insertion
+        @param above: True: the insertion is done above the anchor
+        '''
+        self.readFile(filename)
+        self.insertOrReplace(key, line, anchor, above)
+        self.writeFile()
+
+    def writeFile(self, filename=None, backupExtension=None):
+        '''Writes the internal buffer to a file.
+        @param filename: the file to write: if None _filename is taken
+        @param backupExtension: None or: if the file already exists it will be renamed by this "rule":
+            if it contains os.sep and it is a directory: the file
+            if it contains os.sep and it does not exists:
+            otherwise: it is handled as a file extension
+            following placeholders are allowed:
+            '%date%' replace with the  current date %datetime%: replace with the date and time
+            '%seconds%' replace with the seconds from epoche
+        '''
+        filename = self._filename if filename is None else filename
+        if os.path.exists(filename) and backupExtension is not None:
+
+            if backupExtension.find('%') >= 0:
+                now = datetime.datetime.now()
+                backupExtension = backupExtension.replace(
+                    '%date%', now.strftime('%Y.%m.%d'))
+                backupExtension = backupExtension.replace(
+                    '%datetime%', now.strftime('%Y.%m.%d-%H_%M_%S'))
+                backupExtension = backupExtension.replace(
+                    '%seconds%', now.strftime('%a'))
+            if not backupExtension.startswith('.'):
+                backupExtension = '.' + backupExtension
+            parts = base.FileHelper.splitFilename(filename)
+            parts['ext'] = backupExtension
+            newNode = parts['fn'] + backupExtension
+            base.FileHelper.deepRename(filename, newNode, deleteExisting=True)
+        base.StringUtils.toFile(filename, self._lines, '\n')
+
+
+if __name__ == '__main__':
+    pass
diff --git a/base/UsageInfo.py b/base/UsageInfo.py
new file mode 100644 (file)
index 0000000..052cc5f
--- /dev/null
@@ -0,0 +1,552 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import sys
+import re
+import base.MemoryLogger
+
+
+class Option:
+    '''Stores a single option.
+    '''
+
+    def __init__(self, longName, shortName, description,
+                 dataType='string', defaultValue=None, mode=None, subMode=None, mayBeEmpty=False):
+        '''Constructor.
+        @param shortName: the short option name, e.g. 'p'. Usage: "-pabc" or "-p abc"
+        @param description: the description of the option,  e.g. 'a regular expr describing the dirs to process'
+        @param example: None or one or more examples of usage, 'PROG --dir-pattern=(home|opt)'
+        @param dataType: 'string', 'int', 'bool', 'date', 'datetime', 'regexpr'
+        @param defaultValue: if option is not given that value will be taken
+        @param mode: None or the mode @see UsageInfo
+        @param subMode: None or the sub mode for @see UsageInfo
+        @param mayBeEmpty: False: an empty option string is an error
+        '''
+        self._name = longName
+        self._longName = longName
+        self._shortName = shortName
+        self._description = description
+        self._dataType = dataType
+        self._mode = mode
+        self._subMode = subMode
+        self._value = False if dataType == 'bool' and defaultValue is None else defaultValue
+        self._defaultValue = defaultValue
+        # an OptionProcessor instance:
+        self._parent = None
+        self._caseSensitive = True
+        self._mayBeEmpty = mayBeEmpty
+
+    def check(self, value, isShort):
+        '''Checks a current option.
+        @param value: the current option value, e.g. '123'
+        @param isShort: True: the option is called as short option
+        @return: True: success False: error detected
+        '''
+        rc = True
+        errors = []
+        if self._dataType == 'int':
+            self._value = base.StringUtils.asInt(value)
+            if self._value is None:
+                if value in (None, ''):
+                    rc = self.error('missing int value', isShort)
+                else:
+                    rc = self.error('not an integer: ' + value, isShort)
+        elif self._dataType == 'float':
+            self._value = base.StringUtils.asFloat(value)
+            if self._value is None:
+                if value in (None, ''):
+                    rc = self.error('missing float value', isShort)
+                else:
+                    rc = self.error('not a float: ' + value, isShort)
+        elif self._dataType == 'bool':
+            value = value.lower() if value is not None else None
+            if value in (None, ''):
+                self._value = True
+            elif value in ('true', 't'):
+                self._value = True
+            elif value in ('false', 'f'):
+                self._value = False
+            else:
+                rc = self.error('not a bool value: ' + value, isShort)
+        elif self._dataType == 'regexpr':
+            try:
+                self._value = re.compile(
+                    value, base.Const.IGNORE_CASE if self._caseSensitive else 0)
+            except re.error as exc:
+                rc = self.error(str(exc), isShort)
+        elif self._dataType in ('date', 'datetime'):
+            dateOnly = self._dataType == 'date'
+            self._value = base.StringUtils.parseDateTime(
+                value, errors, dateOnly)
+            if errors:
+                rc = self.error(errors[0], isShort)
+        elif self._dataType == 'size':
+            self._value = base.StringUtils.parseSize(value, errors)
+            if errors:
+                rc = self.error(errors[0], isShort)
+        elif self._dataType == 'string':
+            self._value = value
+            if not self._mayBeEmpty and self._value == '':
+                self.error('empty string is not allowed', isShort)
+        return rc
+
+    def error(self, message, isShort):
+        '''Logs an error.
+        @param message: the error message
+        @param isShort: True: the option is called as short option
+        @return False
+        '''
+        msg = 'error on option {} [-{}{}]:\n{}\n+++ {}'.format(
+            self._name,
+            '' if isShort else '-',
+            self._shortName if isShort else self._longName,
+            base.StringUtils.indentLines(self._description, 1),
+            message)
+        self._parent._logger.error(msg)
+        return False
+
+
+class OptionProcessor:
+    '''Stores program options for automatic evaluation and usage building.
+    '''
+
+    def __init__(self, logger):
+        '''Constructor.
+        @param logger: the logger
+        '''
+        self._logger = logger
+        self._list = []
+        self._names = {}
+
+    def add(self, option):
+        '''Adds a single option to the list.
+        '''
+        if option._dataType not in ('bool', 'date', 'datetime', 'float', 'int', 'regexpr', 'size', 'string'):
+            self._logger.error('unknown data type {} in option {}'.format(
+                option._dataType, option._name))
+        option._parent = self
+        if option._name in self._names:
+            self._logger.error(
+                'option {} already defined'.format(option._name))
+        else:
+            for opt in self._list:
+                if option._shortName is not None:
+                    # a later defined shortname overwrites the previous
+                    # definition:
+                    if opt._shortName == option._shortName:
+                        opt._shortName = None
+                if option._longName == opt._longName:
+                    self._logger.error('--{} in option {} is already defined in {}'.format(
+                        option._longName, option._name, opt._name))
+            self._names[option._name] = option
+            self._list.append(option)
+            errors = []
+            if option._dataType == 'bool' and option._defaultValue is None:
+                option._defaultValue = option._value = False
+            elif option._dataType in ('date', 'datetime') and isinstance(option._defaultValue, str):
+                option._defaultValue = option._value = base.StringUtils.parseDateTime(
+                    option._defaultValue, errors)
+            elif option._dataType == 'size' and isinstance(option._defaultValue, str):
+                option._defaultValue = option._value = base.StringUtils.parseSize(
+                    option._defaultValue, errors)
+            if errors:
+                self._logger.error(f'option {option._name}: {errors[0]}')
+
+    def checkLong(self, current):
+        '''Checks a long name option.
+        @param current: the option to check, e.g. 'dir-pattern=abc'
+        @return True: success False: error recognized
+        '''
+        rc = False
+        [name, sep, value] = current.partition('=')
+        base.StringUtils.avoidWarning(sep)
+        names = []
+        lastOpt = None
+        for opt in self._list:
+            if UsageInfo.matches(name, opt._longName):
+                names.append(opt._longName)
+                lastOpt = opt
+        if not names:
+            rc = self._logger.error('unknown option --' + current)
+        elif len(names) > 1:
+            rc = self._logger.error(
+                f'--{current} is ambiguous: {" ".join(names)}')
+        else:
+            rc = lastOpt.check(value, False)
+        return rc
+
+    def checkShort(self, current):
+        '''Checks a short name option.
+        @param current: the option to check, e.g. 'd/home'
+        @return True: success False: error recognized
+        '''
+        rc = False
+        name = current[0]
+        value = current[1:]
+        found = False
+        for opt in self._list:
+            if opt._shortName == name:
+                found = True
+                rc = opt.check(value, True)
+                break
+        if not found:
+            rc = self._logger.error('unknown option -' + current)
+        return rc
+
+    def optionByName(self, name):
+        '''Returns the option given by name.
+        @param name: the option name
+        @return: None: not found otherwise: the option with the given name
+        '''
+        if name in self._names:
+            rc = self._names[name]
+        else:
+            rc = None
+            self._logger.error(f'internal error: option {name} not known')
+        return rc
+
+    def scan(self, programOptions):
+        '''Validates the current program options using the internal stored data.
+        @param programOptions: a list of the current program options, e.g. ['-i', '--mode=full']
+        @return True: success False: error occurred
+        '''
+        rc = True
+        for option in programOptions:
+            if option.startswith('--'):
+                rc = rc and self.checkLong(option[2:])
+            else:
+                rc = rc and self.checkShort(option[1:])
+        return rc
+
+    def valueOf(self, name):
+        '''Returns the option value given by name.
+        @param name: the option name (long name)
+        @return: None: not found otherwise: the option value with the given name
+        '''
+        rc = None
+        if name in self._names:
+            rc = self._names[name]._value
+        return rc
+
+
+class UsageInfo:
+    '''Simplicates the building of large usage information.
+    '''
+
+    def __init__(self, logger, separatorMode='<mode>:', indentStep=2):
+        '''Constructor.
+        @param logger: the logger
+        @param separatorMode: a text which will be put between global options and modes
+        @param indentStep: the width of one indent level
+        '''
+        self._singleIndent = ' ' * indentStep
+        self._logger = logger
+        self._separatorMode = separatorMode
+        self._description = ''
+        self._descriptions = {}
+        self._examples = {}
+        self._nested = {}
+        self._optionProcessors = {}
+        self._subModeProcessors = {}
+        # if not None: addMode() stores only the name here and do nothing else
+        self._modeNames = None
+        self._activeMode = None
+
+    def addMode(self, mode, description, example=None):
+        '''Adds an entry to the usage info.
+        @param mode: the mode defining the task to do
+        @param description: description of the mode
+        @param example: None or an example of the mode
+        '''
+        if self._activeMode is None or mode == self._activeMode:
+            if self._modeNames is not None:
+                self._modeNames.append(mode)
+            elif mode in self._descriptions:
+                self._logger.error('mode {} already exists'.format(mode))
+            else:
+                self._descriptions[mode] = description.rstrip()
+                self._examples[mode] = '' if example is None else example.rstrip()
+
+    def addModeOption(self, mode, option=None):
+        '''Adds an option related to the mode.
+        @param mode: the mode defining the task to do
+        @param option: an Option instance
+        '''
+        if mode not in self._optionProcessors:
+            self._optionProcessors[mode] = base.UsageInfo.OptionProcessor(
+                self._logger)
+        if option != None:
+            self._optionProcessors[mode].add(option)
+
+    def addSubMode(self, mode, subMode, description, example):
+        '''Adds an submode entry to the usage info.
+        @param mode: the mode defining the task to do
+        @param subMode: the subMode belonging to the mode
+        @param description: description of the sub mode
+        @param example: None or an example of the sub mode
+        '''
+        if mode not in self._nested:
+            self._logger.error(
+                'missing UsageInfo for {}: Is it initialized?'.format(mode))
+        elif subMode in self._descriptions:
+            self._logger.error(
+                'sub mode {} already exists in {}'.format(subMode, mode))
+        else:
+            subModeInfo = self._nested[mode]
+            subModeInfo._descriptions[subMode] = description.rstrip()
+            subModeInfo._examples[subMode] = '' if example is None else example
+
+    def addSubModeOption(self, mode, subMode, option=None):
+        '''Adds an entry to the usage info.
+        @param mode: the mode defining the task to do
+        @param description: description of the mode
+        @param example: None or an example of the mode
+        '''
+        key = f'{mode}-{subMode}'
+        if key not in self._subModeProcessors:
+            self._subModeProcessors[key] = base.UsageInfo.OptionProcessor(
+                self._logger)
+        if option is not None:
+            self._subModeProcessors[key].add(option)
+
+    def appendDescription(self, description):
+        '''Appends a string to the description.
+        @param description: the string to append
+        '''
+        if self._description == '':
+            self._description = description.rstrip()
+        else:
+            self._description += "\n" + description.rstrip()
+
+    def asString(self, pattern, indent, pattern2=''):
+        '''Assembles the usage message depending on pattern and pattern2.
+        @param pattern: only modes that matching this pattern will be assembled
+        @param indent: the indentition level of the output
+        @param pattern2: only sub modes that matching this pattern will be assembled
+        '''
+        rc = ''
+        modes = []
+        subModes = {}
+        rawPattern = pattern[1:] if pattern.startswith('=') else pattern
+        mode = None
+        if pattern == '' and pattern2 == '':
+            modes = [x for x in self._descriptions] + [x for x in self._nested]
+            #self._descriptions.keys() + self._nested.keys()
+        elif pattern2 == '':
+            # collect the modes:
+            self.hasPattern(pattern, modes)
+            for mode in self._nested:
+                subModes2 = list(self._nested.keys())
+                modes.append(mode)
+                subModes2.sort()
+                subModes[mode] = subModes2
+        else:
+            for mode in self._nested:
+                modes2 = []
+                if mode.find(rawPattern) >= 0 or self._nested[mode].hasPattern(pattern2, modes2):
+                    modes2.sort()
+                    subModes[mode] = modes2
+                    modes.append(mode)
+        if mode == '':
+            modes = self._descriptions.keys() + self._nested.keys()
+        modes.sort()
+        rc += self.indent(0, self._description)
+        separatedFound = False
+        for mode in modes:
+            if not separatedFound and not mode.startswith('<'):
+                separatedFound = True
+                rc += self.indent(0, self._separatorMode)
+            if mode in self._descriptions:
+                rc += self.indent(indent + 1, self._descriptions[mode])
+            else:
+                usage2 = self._nested[mode]
+                rc += self.indent(indent + 1, usage2._description)
+                array1 = self._nested[mode]._descriptions.keys(
+                ) if pattern == '' else subModes[mode]
+                rc += self.indent(indent + 2, usage2._separatorMode)
+                for subMode in array1:
+                    rc += self.indent(indent + 2,
+                                      usage2._descriptions[subMode])
+        rc += 'Examples:\n'
+        for mode in modes:
+            if mode in self._examples:
+                rc += self.indent(0, self._examples[mode])
+            else:
+                usage2 = self._nested[mode]
+                array1 = array1 = self._nested[mode]._descriptions.keys(
+                ) if pattern == '' else subModes[mode]
+                for subMode in array1:
+                    rc += self.indent(0, usage2._examples[subMode])
+        return rc
+
+    def currentOptionProcessor(self, mode, subMode=None):
+        '''Returns the current container of the options.
+        @param mode: the mode defining the task to do
+        @param subMode: the subMode belonging to the mode
+        @return: the OptionProcessor instance belonging to the mode/submode
+        '''
+        rc = self._optionProcessors[
+            mode] if subMode is None else self._subModeProcessors[f'{mode}-{subMode}']
+        return rc
+
+    def extendUsageInfoWithOptions(self, mode):
+        '''Adds the option descriptions to the mode description.
+        @param mode: handles that mode
+        '''
+        if mode in self._optionProcessors:
+            self._optionProcessors[mode]._list.sort(
+                key=lambda option: option._longName)
+            for ix, option in enumerate(self._optionProcessors[mode]._list):
+                if ix == 0:
+                    self._descriptions[mode] += '\n  <options>:'
+                value = '' if option._dataType == 'bool' else f'=<{option._dataType}>'
+                info = f'--{option._longName}{value}'
+                if option._shortName:
+                    info += f' or -{option._shortName}{value}'
+                self._descriptions[mode] += f'\n  {info}:\n   {option._description}'
+
+    def findMode(self, shortVersion):
+        '''Finds the "long version" of the mode in self._modeNames.
+        @param shortVersion: a abbrevation of the mode
+        @return: None: error occurred Othewise: the "long version" of shortVersion
+        '''
+        rc = None
+        names = []
+        for name in self._modeNames:
+            if UsageInfo.matches(shortVersion, name):
+                names.append(name)
+        if not names:
+            self._logger.error(f'unknown mode: {shortVersion}')
+        elif len(names) > 1:
+            self._logger.error(
+                f'ambigous mode {shortVersion}: {" ".join(names)}')
+        else:
+            rc = names[0]
+        self._modeNames = None
+        return rc
+
+    def hasPattern(self, pattern, modes):
+        '''Returns whether a mode or its description matches the [pattern].
+        Side effect: modes
+        @param pattern: the pattern to search
+        @param modes: OUT: the list of the modes matching the pattern
+        '''
+        rc = False
+        testModeOnly = False
+        if pattern.startswith('='):
+            pattern = pattern[1:]
+            testModeOnly = True
+        for mode in self._descriptions:
+            if pattern == '' or not testModeOnly and (self._descriptions[mode].find(pattern) > 0
+                                                      or self._examples[mode].find(pattern) > 0):
+                modes.append(mode)
+                rc = True
+        for mode in self._nested:
+            dummy = []
+            if pattern == '' or not testModeOnly and self._nested[mode].hasPattern(pattern, dummy) > 0:
+                modes.append(mode)
+                rc = True
+        return rc
+
+    def indent(self, indent, lines):
+        '''Formats a list of lines (given as one string) to a given indent.
+        @param indent: the indention level
+        @param lines: None or the text to process, e.g. 'doit\n does the thing'
+        @return the lines with the given indention level as a string, e.g. ' doit\n  does the thing'
+        '''
+        rc = ''
+        prefix = self._singleIndent * indent
+        if lines is not None:
+            for line in lines.rstrip().split('\n'):
+                line2 = line.lstrip()
+                level = len(line) - len(line2)
+                rc += prefix + self._singleIndent * level + line2 + '\n'
+        return rc
+
+    def initializeSubModes(self, mode, description=None):
+        '''Prepares the instance for sub modes for a given mode.
+        @param mode: the mode defining the task to do
+        @param description: None or the description of the sub mode
+        @param example: None or a string with examples how to use the sub mode,
+           e.g. 'APP_NAME btrfs list\nAPP_NAME btrfs list --human-readable'
+        '''
+        if self._activeMode is None or mode == self._activeMode:
+            if mode in self._nested:
+                self._logger.error(
+                    'mode {} already initialized (submodes)'.format(mode))
+            else:
+                self.addMode(mode, description)
+                self._nested[mode] = UsageInfo(self._logger, '<what>:')
+                self._nested[mode]._description = '' if description is None else description
+
+    @staticmethod
+    def matches(shortVersion, longVersion):
+        '''Tests whether shortVersion is a abbreviation of longVersion.
+        @param shortVersion: the possible shortVersion version of longVersion
+        @param longVersion: the "true" keyword
+        @return: True: shortVersion means longVersion
+        '''
+        rc = shortVersion == longVersion
+        if not rc:
+            if longVersion.find('-') < 0:
+                rc = longVersion.startswith(shortVersion)
+            else:
+                short2 = shortVersion.split('-')
+                long2 = longVersion.split('-')
+                rc = len(short2) <= len(long2)
+                if rc:
+                    for ix, shortItem in enumerate(short2):
+                        if not UsageInfo.matches(shortItem, long2[ix]):
+                            rc = False
+                            break
+        return rc
+
+    def replaceInDescription(self, placeholder, replacement):
+        '''Replaces a placeholder with a replacement in the description.
+        @param placeholder: the string to replace
+        @param replacement: the replacement
+        '''
+        self._description = self._description.replace(placeholder, replacement)
+
+    def replaceMacro(self, placeholder, replacement):
+        '''Replaces a placeholder with a replacement in descriptions and examples.
+        @param placeholder: the string to replace
+        @param replacement: the replacement
+        '''
+        self.replaceInDescription(placeholder, replacement)
+        for mode in self._descriptions:
+            self._descriptions[mode] = self._descriptions[mode].replace(
+                placeholder, replacement)
+            if self._examples[mode] is not None:
+                self._examples[mode] = self._examples[mode].replace(
+                    placeholder, replacement)
+
+    def valueOf(self, mode, name):
+        '''Returns the option value given by mode and name.
+        @param mode: the mode where the option is stored
+        @param name: the option name (long name)
+        @return: None: not found otherwise: the option value with the given name
+        '''
+        rc = None
+        if mode in self._optionProcessors:
+            rc = self._optionProcessors[mode].valueOf(name)
+        return rc
+
+
+def main(argv):
+    '''Main function.
+    '''
+    base.StringUtils.avoidWarning(argv)
+    logger = base.MemoryLogger.MemoryLogger()
+    info = UsageInfo(logger)
+    info.addMode('help', '''help <pattern>
+ display a help message
+  <pattern>: only matching modes will be displayed
+ ''', 'APP-NAME help')
+    print(info.asString('help', 1))
+
+
+if __name__ == '__main__':
+    main(sys.argv)
diff --git a/base/__init__.py b/base/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/data/.gitignore b/data/.gitignore
new file mode 100644 (file)
index 0000000..cb94157
--- /dev/null
@@ -0,0 +1,2 @@
+/private.conf
+/public.keys
diff --git a/data/config/pylint3.conf b/data/config/pylint3.conf
new file mode 100644 (file)
index 0000000..4c6d113
--- /dev/null
@@ -0,0 +1,585 @@
+[MASTER]
+
+# A comma-separated list of package or module names from where C extensions may
+# be loaded. Extensions are loading into the active Python interpreter and may
+# run arbitrary code.
+extension-pkg-whitelist=
+
+# Add files or directories to the blacklist. They should be base names, not
+# paths.
+ignore=CVS
+
+# Add files or directories matching the regex patterns to the blacklist. The
+# regex matches against base names, not paths.
+ignore-patterns=
+
+# Python code to execute, usually for sys.path manipulation such as
+# pygtk.require().
+#init-hook=
+
+# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
+# number of processors available to use.
+jobs=1
+
+# Control the amount of potential inferred values when inferring a single
+# object. This can help the performance when dealing with large functions or
+# complex, nested conditions.
+limit-inference-results=100
+
+# List of plugins (as comma separated values of python modules names) to load,
+# usually to register additional checkers.
+load-plugins=
+
+# Pickle collected data for later comparisons.
+persistent=yes
+
+# Specify a configuration file.
+#rcfile=
+
+# When enabled, pylint would attempt to guess common misconfiguration and emit
+# user-friendly hints instead of false-positive error messages.
+suggestion-mode=yes
+
+# Allow loading of arbitrary C extensions. Extensions are imported into the
+# active Python interpreter and may run arbitrary code.
+unsafe-load-any-extension=no
+
+
+[MESSAGES CONTROL]
+
+# Only show warnings with the listed confidence levels. Leave empty to show
+# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED.
+confidence=
+
+# Disable the message, report, category or checker with the given id(s). You
+# can either give multiple identifiers separated by comma (,) or put this
+# option multiple times (only on the command line, not in the configuration
+# file where it should appear only once). You can also use "--disable=all" to
+# disable everything first and then reenable specific checks. For example, if
+# you want to run only the similarities checker, you can use "--disable=all
+# --enable=similarities". If you want to run only the classes checker, but have
+# no Warning level messages displayed, use "--disable=all --enable=classes
+# --disable=W".
+disable=print-statement,
+        parameter-unpacking,
+        unpacking-in-except,
+        old-raise-syntax,
+        backtick,
+        long-suffix,
+        old-ne-operator,
+        old-octal-literal,
+        import-star-module-level,
+        non-ascii-bytes-literal,
+        raw-checker-failed,
+        bad-inline-option,
+        locally-disabled,
+        file-ignored,
+        suppressed-message,
+        useless-suppression,
+        deprecated-pragma,
+        use-symbolic-message-instead,
+        apply-builtin,
+        basestring-builtin,
+        buffer-builtin,
+        cmp-builtin,
+        coerce-builtin,
+        execfile-builtin,
+        file-builtin,
+        long-builtin,
+        raw_input-builtin,
+        reduce-builtin,
+        standarderror-builtin,
+        unicode-builtin,
+        xrange-builtin,
+        coerce-method,
+        delslice-method,
+        getslice-method,
+        setslice-method,
+        no-absolute-import,
+        old-division,
+        dict-iter-method,
+        dict-view-method,
+        next-method-called,
+        metaclass-assignment,
+        indexing-exception,
+        raising-string,
+        reload-builtin,
+        oct-method,
+        hex-method,
+        nonzero-method,
+        cmp-method,
+        input-builtin,
+        round-builtin,
+        intern-builtin,
+        unichr-builtin,
+        map-builtin-not-iterating,
+        zip-builtin-not-iterating,
+        range-builtin-not-iterating,
+        filter-builtin-not-iterating,
+        using-cmp-argument,
+        eq-without-hash,
+        div-method,
+        idiv-method,
+        rdiv-method,
+        exception-message-attribute,
+        invalid-str-codec,
+        sys-max-int,
+        bad-python3-import,
+        deprecated-string-function,
+        deprecated-str-translate-call,
+        deprecated-itertools-function,
+        deprecated-types-field,
+        next-method-defined,
+        dict-items-not-iterating,
+        dict-keys-not-iterating,
+        dict-values-not-iterating,
+        deprecated-operator-function,
+        deprecated-urllib-function,
+        xreadlines-attribute,
+        deprecated-sys-function,
+        exception-escape,
+        comprehension-escape,
+        C0330,
+        R0913,
+        W1308,
+        W0212,
+        R0902,
+        R0914,
+        R0904,
+        R0903,
+        R0912,
+        R1702,
+        R0915,
+        E1121,
+        W0603,
+# C0330: spaces on continuation
+# R0913: Too many arguments
+# W1308: Duplicate string formatting argument
+# W0212: Access to a protected member
+# R0902: Too many instance attributes
+# R0914: Too many local variables
+# R0904: Too many public methods
+# R0903: Too few public methods
+# R0912: Too many branches
+# R1702: Too many nested blocks
+# R0915: Too many statements
+# E1121: Too many positional arguments for function call
+# W0603: Using the global statement
+
+# Enable the message, report, category or checker with the given id(s). You can
+# either give multiple identifier separated by comma (,) or put this option
+# multiple time (only on the command line, not in the configuration file where
+# it should appear only once). See also the "--disable" option for examples.
+enable=c-extension-no-member
+
+
+[REPORTS]
+
+# Python expression which should return a note less than 10 (10 is the highest
+# note). You have access to the variables errors warning, statement which
+# respectively contain the number of errors / warnings messages and the total
+# number of statements analyzed. This is used by the global evaluation report
+# (RP0004).
+evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
+
+# Template used to display messages. This is a python new-style format string
+# used to format the message information. See doc for all details.
+#msg-template=
+
+# Set the output format. Available formats are text, parseable, colorized, json
+# and msvs (visual studio). You can also give a reporter class, e.g.
+# mypackage.mymodule.MyReporterClass.
+output-format=text
+
+# Tells whether to display a full report or only the messages.
+reports=no
+
+# Activate the evaluation score.
+score=yes
+
+
+[REFACTORING]
+
+# Maximum number of nested blocks for function / method body
+max-nested-blocks=5
+
+# Complete name of functions that never returns. When checking for
+# inconsistent-return-statements if a never returning function is called then
+# it will be considered as an explicit return statement and no message will be
+# printed.
+never-returning-functions=sys.exit
+
+
+[BASIC]
+
+# Naming style matching correct argument names.
+#argument-naming-style=snake_case
+
+# Regular expression matching correct argument names. Overrides argument-
+# naming-style.
+argument-rgx=[a-z][A-Z]*
+
+# Naming style matching correct attribute names.
+#attr-naming-style=snake_case
+
+# Regular expression matching correct attribute names. Overrides attr-naming-
+# style.
+attr-rgx=_?[a-z]\w+
+
+# Bad variable names which should always be refused, separated by a comma.
+#bad-names=foo,
+#          bar,
+#          baz,
+#          toto,
+#          tutu,
+#          tata
+
+# Naming style matching correct class attribute names.
+#class-attribute-naming-style=any
+
+# Regular expression matching correct class attribute names. Overrides class-
+# attribute-naming-style.
+class-attribute-rgx=__[a-z][A-Z]*
+
+# Naming style matching correct class names.
+class-naming-style=PascalCase
+
+# Regular expression matching correct class names. Overrides class-naming-
+# style.
+#class-rgx=
+
+# Naming style matching correct constant names.
+const-naming-style=UPPER_CASE
+
+# Regular expression matching correct constant names. Overrides const-naming-
+# style.
+#const-rgx=
+
+# Minimum line length for functions/classes that require docstrings, shorter
+# ones are exempt.
+docstring-min-length=-1
+
+# Naming style matching correct function names.
+#function-naming-style=snake_case
+
+# Regular expression matching correct function names. Overrides function-
+# naming-style.
+function-rgx=[a-z_][A-Z]*
+
+# Good variable names which should always be accepted, separated by a comma.
+good-names=ii,
+           ix,
+           jj,
+           exc,
+
+# Include a hint for the correct naming format with invalid-name.
+include-naming-hint=no
+
+# Naming style matching correct inline iteration names.
+inlinevar-naming-style=any
+
+# Regular expression matching correct inline iteration names. Overrides
+# inlinevar-naming-style.
+#inlinevar-rgx=
+
+# Naming style matching correct method names.
+method-naming-style=snake_case
+
+# Regular expression matching correct method names. Overrides method-naming-
+# style.
+method-rgx=[a-z][A-Z]*
+
+# Naming style matching correct module names.
+module-naming-style=PascalCase
+
+# Regular expression matching correct module names. Overrides module-naming-
+# style.
+module-rgx=
+
+# Colon-delimited sets of names that determine each other's naming style when
+# the name regexes allow several styles.
+name-group=
+
+# Regular expression which should only match function or class names that do
+# not require a docstring.
+no-docstring-rgx=^_
+
+# List of decorators that produce properties, such as abc.abstractproperty. Add
+# to this list to register other decorators that produce valid properties.
+# These decorators are taken in consideration only for invalid-name.
+property-classes=abc.abstractproperty
+
+# Naming style matching correct variable names.
+#variable-naming-style=snake_case
+
+# Regular expression matching correct variable names. Overrides variable-
+# naming-style.
+variable-rgx=[a-z][A-Z]*
+
+
+[FORMAT]
+
+# Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
+expected-line-ending-format=
+
+# Regexp for a line that is allowed to be longer than the limit.
+ignore-long-lines=^\s*(# )?<?https?://\S+>?$
+
+# Number of spaces of indent required inside a hanging or continued line.
+indent-after-paren=4
+
+# String used as indentation unit. This is usually "    " (4 spaces) or "\t" (1
+# tab).
+indent-string='    '
+
+# Maximum number of characters on a single line.
+max-line-length=130
+
+# Maximum number of lines in a module.
+max-module-lines=1000
+
+# List of optional constructs for which whitespace checking is disabled. `dict-
+# separator` is used to allow tabulation in dicts, etc.: {1  : 1,\n222: 2}.
+# `trailing-comma` allows a space between comma and closing bracket: (a, ).
+# `empty-line` allows space-only lines.
+no-space-check=trailing-comma,
+               dict-separator
+
+# Allow the body of a class to be on the same line as the declaration if body
+# contains single statement.
+single-line-class-stmt=no
+
+# Allow the body of an if to be on the same line as the test if there is no
+# else.
+single-line-if-stmt=no
+
+
+[LOGGING]
+
+# Format style used to check logging format string. `old` means using %
+# formatting, while `new` is for `{}` formatting.
+logging-format-style=old
+
+# Logging modules to check that the string format arguments are in logging
+# function parameter format.
+logging-modules=logging
+
+
+[MISCELLANEOUS]
+
+# List of note tags to take in consideration, separated by a comma.
+notes=FIXME,
+      XXX,
+      TODO
+
+
+[SIMILARITIES]
+
+# Ignore comments when computing similarities.
+ignore-comments=yes
+
+# Ignore docstrings when computing similarities.
+ignore-docstrings=yes
+
+# Ignore imports when computing similarities.
+ignore-imports=yes
+
+# Minimum lines number of a similarity.
+min-similarity-lines=4
+
+
+[SPELLING]
+
+# Limits count of emitted suggestions for spelling mistakes.
+max-spelling-suggestions=4
+
+# Spelling dictionary name. Available dictionaries: none. To make it working
+# install python-enchant package..
+spelling-dict=
+
+# List of comma separated words that should not be checked.
+spelling-ignore-words=
+
+# A path to a file that contains private dictionary; one word per line.
+spelling-private-dict-file=
+
+# Tells whether to store unknown words to indicated private dictionary in
+# --spelling-private-dict-file option instead of raising a message.
+spelling-store-unknown-words=no
+
+
+[TYPECHECK]
+
+# List of decorators that produce context managers, such as
+# contextlib.contextmanager. Add to this list to register other decorators that
+# produce valid context managers.
+contextmanager-decorators=contextlib.contextmanager
+
+# List of members which are set dynamically and missed by pylint inference
+# system, and so shouldn't trigger E1101 when accessed. Python regular
+# expressions are accepted.
+generated-members=
+
+# Tells whether missing members accessed in mixin class should be ignored. A
+# mixin class is detected if its name ends with "mixin" (case insensitive).
+ignore-mixin-members=yes
+
+# Tells whether to warn about missing members when the owner of the attribute
+# is inferred to be None.
+ignore-none=yes
+
+# This flag controls whether pylint should warn about no-member and similar
+# checks whenever an opaque object is returned when inferring. The inference
+# can return multiple potential results while evaluating a Python object, but
+# some branches might not be evaluated, which results in partial inference. In
+# that case, it might be useful to still emit no-member and other checks for
+# the rest of the inferred objects.
+ignore-on-opaque-inference=yes
+
+# List of class names for which member attributes should not be checked (useful
+# for classes with dynamically set attributes). This supports the use of
+# qualified names.
+ignored-classes=optparse.Values,thread._local,_thread._local
+
+# List of module names for which member attributes should not be checked
+# (useful for modules/projects where namespaces are manipulated during runtime
+# and thus existing member attributes cannot be deduced by static analysis. It
+# supports qualified module names, as well as Unix pattern matching.
+ignored-modules=
+
+# Show a hint with possible names when a member name was not found. The aspect
+# of finding the hint is based on edit distance.
+missing-member-hint=yes
+
+# The minimum edit distance a name should have in order to be considered a
+# similar match for a missing member name.
+missing-member-hint-distance=1
+
+# The total number of similar names that should be taken in consideration when
+# showing a hint for a missing member.
+missing-member-max-choices=1
+
+
+[VARIABLES]
+
+# List of additional names supposed to be defined in builtins. Remember that
+# you should avoid defining new builtins when possible.
+additional-builtins=
+
+# Tells whether unused global variables should be treated as a violation.
+allow-global-unused-variables=yes
+
+# List of strings which can identify a callback function by name. A callback
+# name must start or end with one of those strings.
+callbacks=cb_,
+          _cb
+
+# A regular expression matching the name of dummy variables (i.e. expected to
+# not be used).
+dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
+
+# Argument names that match this expression will be ignored. Default to name
+# with leading underscore.
+ignored-argument-names=_.*|^ignored_|^unused_
+
+# Tells whether we should check for unused import in __init__ files.
+init-import=no
+
+# List of qualified module names which can have objects that can redefine
+# builtins.
+redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io
+
+
+[CLASSES]
+
+# List of method names used to declare (i.e. assign) instance attributes.
+defining-attr-methods=__init__,
+                      __new__,
+                      setUp
+
+# List of member names, which should be excluded from the protected access
+# warning.
+exclude-protected=_asdict,
+                  _fields,
+                  _replace,
+                  _source,
+                  _make
+
+# List of valid names for the first argument in a class method.
+valid-classmethod-first-arg=cls
+
+# List of valid names for the first argument in a metaclass class method.
+valid-metaclass-classmethod-first-arg=cls
+
+
+[DESIGN]
+
+# Maximum number of arguments for function / method.
+max-args=5
+
+# Maximum number of attributes for a class (see R0902).
+max-attributes=7
+
+# Maximum number of boolean expressions in an if statement.
+max-bool-expr=5
+
+# Maximum number of branch for function / method body.
+max-branches=12
+
+# Maximum number of locals for function / method body.
+max-locals=15
+
+# Maximum number of parents for a class (see R0901).
+max-parents=7
+
+# Maximum number of public methods for a class (see R0904).
+max-public-methods=20
+
+# Maximum number of return / yield for function / method body.
+max-returns=6
+
+# Maximum number of statements in function / method body.
+max-statements=50
+
+# Minimum number of public methods for a class (see R0903).
+min-public-methods=2
+
+
+[IMPORTS]
+
+# Allow wildcard imports from modules that define __all__.
+allow-wildcard-with-all=no
+
+# Analyse import fallback blocks. This can be used to support both Python 2 and
+# 3 compatible code, which means that the block might have code that exists
+# only in one or another interpreter, leading to false positives when analysed.
+analyse-fallback-blocks=no
+
+# Deprecated modules which should not be used, separated by a comma.
+deprecated-modules=optparse,tkinter.tix
+
+# Create a graph of external dependencies in the given file (report RP0402 must
+# not be disabled).
+ext-import-graph=
+
+# Create a graph of every (i.e. internal and external) dependencies in the
+# given file (report RP0402 must not be disabled).
+import-graph=
+
+# Create a graph of internal dependencies in the given file (report RP0402 must
+# not be disabled).
+int-import-graph=
+
+# Force import order to recognize a module as part of the standard
+# compatibility libraries.
+known-standard-library=
+
+# Force import order to recognize a module as part of a third party library.
+known-third-party=enchant
+
+
+[EXCEPTIONS]
+
+# Exceptions that will emit a warning when being caught. Defaults to
+# "Exception".
+overgeneral-exceptions=Exception
diff --git a/data/private.template.conf b/data/private.template.conf
new file mode 100644 (file)
index 0000000..55513c0
--- /dev/null
@@ -0,0 +1,3 @@
+# Convention: <module>.<variable>=<value>
+EmailTest.code.hm.neutral=TopSecret
+StringUtil.test.entry=xyz
diff --git a/db/DbDriver.py b/db/DbDriver.py
new file mode 100644 (file)
index 0000000..83fb2b4
--- /dev/null
@@ -0,0 +1,53 @@
+'''
+Created on 07.10.2022
+
+@author: hm
+'''
+import base.Const
+from base.UsageInfo import OptionProcessor
+from abc import abstractmethod
+
+class DbDriver:
+    @staticmethod
+    def _removeFromArrayIfExists(anArray, item):
+        '''Removes a given item from an array if the array contains that.
+        @param anArray: the array to process
+        @param item: the item to remove
+        '''
+        for ix in reversed(range(len(anArray))):
+            if item == anArray[ix]:
+                del anArray[ix]
+
+
+    @abstractmethod
+    def allDbs(self):
+        '''List all databases.
+        '''
+        raise Exception('allDbs(): not implemented yet')
+
+    @abstractmethod
+    def createAdmin(self, user: str, code: str, readOnly: bool):
+        '''Creates an user with administrator rights.
+        @param user: the user to create
+        @param code: the password of the user
+        @param readonly: True: the user has not the right to modify a database
+        '''
+        raise Exception('createAdmin(): not implemented yet')
+
+    @abstractmethod
+    def createDbAndUser(self, db: str, user: str, code: str):
+        '''Creates an a database and an user with rights for the database.
+        @param db: the database name
+        @param user: the user to create
+        @param code: the password of the user
+        '''
+        raise Exception('createDbAndUser(): not implemented yet')
+
+    @abstractmethod
+    def deleteDb(self, db: str):
+        '''Deletes a database.
+        @param db: the database name
+        '''
+        raise Exception('deleteDb(): not implemented yet')
+
+
diff --git a/db/MySqlDriver.py b/db/MySqlDriver.py
new file mode 100644 (file)
index 0000000..90d3145
--- /dev/null
@@ -0,0 +1,103 @@
+'''
+Created on 07.10.2022
+
+@author: hm
+'''
+
+from db.DbDriver import DbDriver
+import base.Const
+
+
+class MySqlDriver (DbDriver):
+    def __init__(self, parent):
+        self._parent = parent
+
+    def _buildArgvMysql(self, command: str, needsAdmin: bool=False):
+        '''Builds an argument vector for a mysql relevant command (mysql or mysqldump...).
+        @param command: 'mysql' or 'mysqldump'
+        @param needsAdmin: True: the operation needs administrator rights
+        @return: the command string prefix, e.g. "mysql -ujoe -pSecret"
+        '''
+        rc = None
+        host = self._parent._configuration.getString('mysql.host')
+        port = self._parent._configuration.getString('mysql.port')
+        user = self._parent._optionProcessor.valueOf(
+            'adm-name' if needsAdmin else 'user-name')
+        if user is not None:
+            code = self._parent._optionProcessor.valueOf(
+                'adm-password' if needsAdmin else 'user-password')
+        else:
+            user = self._parent._configuration.getString('mysql.admin.user')
+            code = self._parent._configuration.getString('mysql.admin.code')
+        if user is None:
+            self._parent.abort('missing user (option or configuration file)')
+        elif code is None:
+            self._parent.abort(
+                'missing password (option or configuration file)')
+        else:
+            rc = [command]
+            if host != 'localhost':
+                rc.append('-h{host}')
+            if port != '3306':
+                rc.append('-p{host}')
+            rc.append(f'-u{user}')
+            if code != '':
+                rc.append(f'-p{code}')
+        return rc
+
+    def allDbs(self):
+        argv = self._buildArgvMysql('mysql', True)
+        sql = '''show databases;'''
+        rc = self._parent._processTool.executeInputOutput(
+            argv, sql, self._parent._logger._verboseLevel >= base.Const.LEVEL_DETAIL)
+        if rc and rc[0] == 'Database':
+            rc = rc[1:]
+        DbDriver._removeFromArrayIfExists(rc, '')
+        if not self._parent._optionProcessor.valueOf('internal-too'):
+            DbDriver._removeFromArrayIfExists(rc, 'mysql')
+            DbDriver._removeFromArrayIfExists(rc, 'information_schema')
+            DbDriver._removeFromArrayIfExists(rc, 'performance_schema')
+        return rc
+
+    def createAdmin(self, user: str, code: str, readOnly: bool):
+        rights = 'SELECT, SHOW VIEW' if readOnly else 'ALL'
+        tail = '' if readOnly else ' WITH GRANT OPTION'
+        sql = f'''GRANT {rights} ON *.* TO '{user}'@'localhost' IDENTIFIED BY '{code}'{tail};
+flush privileges;'''
+        self._parent._logger.log(
+            f'creating mysql admin {user}...', base.Const.LEVEL_SUMMARY)
+        self._parent._logger.log(sql, base.Const.LEVEL_FINE)
+        argv = self._buildArgvMysql('mysql', True)
+        self._parent._processTool.executeInput(
+            argv, self._parent._logger._verboseLevel >= base.Const.LEVEL_DETAIL, sql)
+
+    def createDbAndUser(self, db: str, user: str, code: str):
+        '''Creates a database and a user with rights to modify this db.
+        @param db: name of the database to create
+        @param user: the name of the user to create
+        @param code: the password
+        '''
+        if user is not None:
+            sql = f'''GRANT ALL ON {db}.* TO '{user}'@'localhost' IDENTIFIED BY '{code}' WITH GRANT OPTION;
+flush privileges;
+create database if not exists {db};'''
+        else:
+            sql = f'create database if not exists {db};'
+        self._parent._logger.log(
+            f'creating db {db}...', base.Const.LEVEL_SUMMARY)
+        self._parent._logger.log(sql, base.Const.LEVEL_FINE)
+        argv = self._buildArgvMysql('mysql', True)
+        self._parent._processTool.executeInput(
+            argv, self._parent._logger._verboseLevel >= base.Const.LEVEL_DETAIL, sql)
+
+    def deleteDb(self, db: str):
+        '''Deletes a database.
+        @param db: the database name
+        '''
+        sql = f'DROP database {db};'
+        self._parent._logger.log(
+            f'deleting db {db}...', base.Const.LEVEL_SUMMARY)
+        self._parent._logger.log(sql, base.Const.LEVEL_FINE)
+        argv = self._buildArgvMysql('mysql', False)
+        self._parent._processTool.executeInput(
+            argv, self._parent._logger._verboseLevel >= base.Const.LEVEL_DETAIL, sql)
diff --git a/db/PgDriver.py b/db/PgDriver.py
new file mode 100644 (file)
index 0000000..f3de850
--- /dev/null
@@ -0,0 +1,134 @@
+'''
+Created on 07.10.2022
+
+@author: hm
+'''
+
+from  db.DbDriver import DbDriver
+import base.Const
+
+class PgDriver (DbDriver):
+    '''Handles the PostGreSQL specific actions.
+    Rights in PostGreSQL:
+    Users are roles with the attribute "login".
+    Groups are roles to which other roles are assigned as members.
+    
+    The PostGreSQL right system used for this package:
+    There is a global group 'dbadmins' containing the global user 'dba'.
+    Each database has a group with the same name as the database.
+    That group contains an user specified by the commands and the group dbadmins.
+    '''
+    def __init__(self, parent):
+        '''Constructor.
+        @param._parent: the DbApp instance
+        '''
+        self._parent = parent
+
+    def _buildUrlDatabase(self, database: str, needsAdmin=False):
+        '''Builds an argument vector for a mysql relevant command (mysql or mysqldump...).
+        @param database: the database to connect
+        @param needsAdmin: True: the operation needs administrator rights
+        @return: the URL containing the connection data
+        '''
+        rc = None
+        user = self._parent._optionProcessor.valueOf('adm-name' if needsAdmin else 'user-name')
+        if user is not None:
+            code = self._parent._optionProcessor.valueOf(
+                'adm-password' if needsAdmin else 'user-password')
+        else:
+            user = self._parent._configuration.getString('postgresql.admin.user')
+            code = self._parent._configuration.getString('postgresql.admin.code')
+        host = self._parent._optionProcessor.valueOf('host')
+        if host is None:
+            host = self._parent._configuration.getString('postgresql.admin.host', 'localhost')
+        port = self._parent._optionProcessor.valueOf('port')
+        if port is None:
+            port = self._parent._configuration.getInt('postgresql.admin.port', 5432)
+        if user is None:
+            self._parent.abort('missing user (option or configuration file)')
+        elif code is None:
+            self._parent.abort('missing password (option or configuration file)')
+        else:
+            #  postgresql://myuser:secret_pw@localhost:5432/
+            rc = f'postgresql://{user}:{code}@{host}:{port}/{database}'
+        return rc
+
+    def allDbs(self):
+        '''List all databases.
+        '''
+        url = self._buildUrlDatabase('postgres', False)
+        sql = r'\list'
+        argv = ['psql', url]
+        raw = self._parent._processTool.executeInputOutput(
+            argv, sql, self._parent._logger._verboseLevel >= base.Const.LEVEL_DETAIL)
+        rc = []
+        internalsToo = self._parent._optionProcessor.valueOf('internal-too')
+        for line in raw[3:-3]:
+            line = line[1:]
+            if not line.startswith(' '):
+                name = line.split(' ')[0]
+                if internalsToo or name not in ['postgres', 'template0', 'template1']:
+                    rc.append(name)
+        return rc
+
+
+    def createAdmin(self, user: str, code: str, readOnly: bool):
+        group = 'roadmins' if readOnly else 'admins'
+        if readOnly:
+            sql = f'''CREATE ROLE {group};
+CREATE ROLE {user} WITH LOGIN PASSWORD '{code}';
+GRANT {group} TO {user};
+GRANT USAGE ON SCHEMA public TO {group};
+'''
+        else:
+            sql = f'''CREATE ROLE {group} WITH SUPERUSER CREATEDB CREATEROLE;
+CREATE ROLE {user} WITH SUPERUSER CREATEDB CREATEROLE LOGIN PASSWORD '{code}';
+GRANT {group} TO {user};
+'''
+        self._parent._logger.log(
+            f'creating pg admin {user}...', base.Const.LEVEL_SUMMARY)
+        self._parent._logger.log(sql, base.Const.LEVEL_FINE)
+        url = self._buildUrlDatabase('postgres', True)
+        command = 'sudo -u postgres psql postgres'
+        self._parent._resultLines = f'{command} <<EOS\n{sql}EOS'.split('\n')
+        print('\n'.join(self._parent._resultLines))
+
+    def createDbAndUser(self, db: str, user: str, code: str):
+        '''Creates a database and a user with rights to modify this db.
+        @param db: name of the database to create
+        @param user: the name of the user to create
+        @param code: the password
+        '''
+        group = f'g_{db}'
+        if user is not None:
+            sql = f'''CREATE ROLE {group};
+CREATE ROLE {user} WITH LOGIN PASSWORD '{code}';
+GRANT {group} TO {user}, admins;
+CREATE DATABASE {db} OWNER = {group};
+GRANT ALL ON {db} TO {group};
+GRANT SELECT ON {db} TO roadmins;
+GRANT CONNECT ON DATABASE {db} TO roadmins;'''
+        else:
+            sql = f'create database if not exists {db};'
+        self._parent._logger.log(
+            f'creating db {db}...', base.Const.LEVEL_SUMMARY)
+        self._parent._logger.log(sql, base.Const.LEVEL_FINE)
+        url = self._buildUrlDatabase('postgres', False)
+        argv = ['psql', url]
+        self._parent._processTool.executeInput(
+            argv, self._parent._logger._verboseLevel >= base.Const.LEVEL_DETAIL, sql)
+
+    def deleteDb(self, db: str):
+        '''Deletes a database.
+        @param db: the database name
+        '''
+        sql = f'''DROP database IF EXISTS {db};
+DROP ROLE IF EXISTS g_{db};
+'''
+        self._parent._logger.log(
+            f'deleting db {db}...', base.Const.LEVEL_SUMMARY)
+        self._parent._logger.log(sql, base.Const.LEVEL_FINE)
+        argv = self._buildUrlDatabase('postgres', False)
+        self._parent._processTool.executeInput(
+            argv, self._parent._logger._verboseLevel >= base.Const.LEVEL_DETAIL, sql)
+
diff --git a/net/EMail.py b/net/EMail.py
new file mode 100644 (file)
index 0000000..8fa8164
--- /dev/null
@@ -0,0 +1,170 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import smtplib
+import imghdr
+import email.message
+
+import base.MemoryLogger
+import base.StringUtils
+
+
+class EMail:
+    '''Simplifies sending of emails.
+    '''
+
+    def __init__(self, subject, text=None, html=None):
+        '''Constructor.
+        @param subject: the subject of the mail
+        @param text: the ascii text of the mail
+        @param html: the html text of the mail
+        '''
+        self._host = None
+        self._port = None
+        self._username = None
+        self._code = None
+        self._withTls = None
+        self._sender = None
+        self._subject = subject
+        self._signature = ''
+        self._text = text
+        self._html = html
+        self._multiPart = email.message.EmailMessage()
+        if subject is not None:
+            self._multiPart['Subject'] = subject
+        if self._text is None:
+            if self._html is None:
+                self._multiPart.set_content('\n')
+            else:
+                self._multiPart.set_content(self._html, subtype='html')
+        else:
+            self._multiPart.set_content(self._text)
+            if html is not None:
+                self._multiPart.add_alternative(self._html, subtype='html')
+
+    def addImage(self, filename):
+        '''Adds a image file as attachement.
+        @param filename: this file will be appended, should be MIME type "image"
+        '''
+        with open(filename, 'rb') as fp:
+            img_data = fp.read()
+            self._multiPart.add_attachment(
+                img_data, maintype='image', subtype=imghdr.what(None, img_data))
+
+    def lastSignature(self):
+        '''Returns a string with all communication information.
+        @return: the signature of the communication
+        '''
+        return self._signature
+
+    def sendTo(self, recipient, cc=None, bcc=None, logger=None):
+        '''
+        Sends the email to the given recipients.
+        @param sender: None or an email address of the sender
+        @param recipient: the recipient or a list of recipients
+        @param cc: None or carbon copy recipients separated by '+', e.g. 'a@b.c+x@y.z'
+        @param bcc: None or blind carbon copy recipients separated by '+', e.g. 'a@b.c+x@y.z'
+        @param logger: None or logger
+        @return: dictionary: empty: success otherwise: e.g. { "three@three.org" : ( 550 ,"User unknown" ) }
+        '''
+        def normEmail(email1):
+            rc = email1.strip(' ').replace('+', ', ')
+            return rc
+        self._signature = '{}|{}|{}|{}|{}|{}'.format(
+            self._host, self._port, self._username, self._code, self._sender, recipient)
+        rc = []
+        try:
+            server = smtplib.SMTP(self._host, self._port)
+            server.ehlo()
+            if self._withTls:
+                server.starttls()
+                server.ehlo()
+            server.login(self._username, self._code)
+            self._multiPart['From'] = self._sender
+            self._multiPart['To'] = normEmail(recipient)
+            if cc is not None:
+                self._multiPart['Cc'] = normEmail(cc)
+            if bcc is not None:
+                self._multiPart['BCC'] = normEmail(bcc)
+            rc = server.send_message(self._multiPart)
+            if logger is not None:
+                logger.log('email "{}" sent to {}'.format(
+                    self._subject, recipient), base.Const.LEVEL_SUMMARY)
+        except Exception as exc:
+            if logger is not None:
+                logger.error('sending email failed: {}\n{}\n{}'.format(
+                    str(exc), self._subject, self._text))
+        return rc
+
+    def setSmtpLogin(self, host, port, username, code, withTls=True, sender=None):
+        '''Sets the login data for the SMTP server.
+        @param host: the SMTP server, e.g. 'smtp.gmx.net'
+        @param port: the port of the SMTP service
+        @param username: the user known to the SMTP service
+        @param code: the password of the SMTP service
+        @param withTls: True: TSL encryption will be used
+        '''
+        self._host = host
+        self._port = port
+        self._username = username
+        self._code = code
+        self._withTls = withTls
+        self._sender = sender if sender is not None else username
+
+
+def sendSimpleEMail(recipients, subject, body, sender, host, port, user, code, withTls, logger):
+    '''Sends an email.
+    @param recipients: the email address of the recipients separated by '+', e.g. 'a@b.c+x@y.z'
+    @param subject: a short info
+    @param body: HTML or plain text
+    @param sender: the email address of the sender
+    @param host: the SMTP host
+    @param port: the SMTP port
+    @param user: the SMTP user
+    @param code: the SMTP password
+    @param withTls: True: TLS (encryption) is used
+    @param logger: for error logging
+    '''
+    if body.startswith('<'):
+        text, html = None, body
+        html = body
+    else:
+        text, html = body, None
+    email1 = EMail(subject, text, html)
+    parts = recipients.split('+')
+    email1.setSmtpLogin(host, port, user, code, withTls, sender)
+    cc = None if len(parts) < 2 else '+'.join(parts[1:])
+    rc = email1.sendTo(parts[0], cc, None, logger)
+    if not rc:
+        logger.log('email sent to ' + recipients, base.Const.LEVEL_SUMMARY)
+    else:
+        logger.error('sending email "{}" failed: {}'.format(subject, str(rc)))
+    rc = email1.lastSignature()
+    return rc
+
+
+def main():
+    '''Main function.
+    '''
+    logger = base.MemoryLogger.MemoryLogger(1)
+    email1 = EMail('Testmail von Python', 'Hi!\nHat funktioniert', '''
+<html>
+<body>
+<h1>Hi</h1>
+<p>Hat funktioniert!</p
+</body>
+</html>
+    ''')
+    config = base.StringUtils.privateConfig()
+    code = config.getString('EMailTest.code.hm.neutral')
+    user = 'hm.neutral@gmx.de'
+    email1.setSmtpLogin('smtp.gmx.de', 587, user, code, True, user)
+    email1.sendTo('wk64@gmx.de', None, None, logger)
+    signature = email1.lastSignature()
+    print(signature)
+
+
+if __name__ == '__main__':
+    main()
diff --git a/net/HttpClient.py b/net/HttpClient.py
new file mode 100644 (file)
index 0000000..60974aa
--- /dev/null
@@ -0,0 +1,189 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+
+# coding=utf8
+import json
+import urllib3
+
+import base.Logger
+
+
+class HttpClient:
+    '''Implements a HTTP or HTTPS client.
+    '''
+
+    def __init__(self, logger, timeout=10):
+        '''Constructor.
+        @param logger: the logger, type Logger
+        @param timeout: the request is aborted after this amount of seconds
+        '''
+        self._logger = logger
+        self._data = None
+        self._response = None
+        self._pool = urllib3.PoolManager()
+        self._timeout = timeout
+
+    def close(self):
+        '''Frees the resources.
+        '''
+
+    def _headers(self):
+        '''Returns the headers of the last response.
+        @return: None: nothing available otherwise: a dictionay with the headers, e.g. '{ 'Content-Type': 'text/plain' }
+        '''
+        map1 = {}
+        if self._response is not None:
+            for key in self._response.headers:
+                map1[key] = self._response.headers[key]
+        return map1
+
+    def _handleSingleRequest(self, url, method, content=None, contentType=None, timeout=None, retries=False):
+        '''Handles a single HTTP(S) request (not following relocations).
+        @param url: the URL of the website
+        @param method: the request method, e.g. 'HEAD'
+        @param content: only for 'PUT'/'POST': body of the request. If a dict: will be encoded as JSON
+        @param contentType: None: automatic selection
+        @param timeout: None: use _timeout otherwise: the request is aborted after this amount of seconds
+        @param retries: configure the number of retries to allow before raising a
+            @class:`~urllib3.exceptions.MaxRetryError` exception.
+            Pass ``None`` to retry until you receive a response. Pass a
+            @class:`~urllib3.util.retry.Retry` object for fine-grained control
+            over different types of retries.
+            Pass an integer number to retry connection errors that many times,
+            but no other types of errors. Pass zero to never retry.
+            If ``False``, then retries are disabled and any exception is raised
+            immediately. Also, instead of raising a MaxRetryError on redirects,
+            the redirect response will be returned.
+       '''
+        self._data = None
+        self._response = None
+        try:
+            if method in ('POST', 'PUT'):
+                if isinstance(content, dict):
+                    content2 = json.dumps(
+                        content, ensure_ascii=False)
+                    content = content.encode(
+                        'UTF-8') if isinstance(content2, bytes) else content2
+                if contentType is None:
+                    contentType = 'application/json; charset=UTF-8' if content.startswith(
+                        '{') else 'text/plain; charset=utf-8'
+                #self._logger.log('340: ' + content[340:], 4)
+                self._logger.log(
+                    'sending: ' + '<none>' if content is None else content, 4)
+                self._response = self._pool.request(method, url, body=content.encode('UTF-8'),
+                                                    headers={'Content-Type': contentType}, timeout=timeout, retries=retries)
+            else:
+                self._response = self._pool.request(
+                    method, url, timeout=timeout, retries=retries)
+                if method == 'GET':
+                    self._data = self._response.read()
+                    if self._data == b'' and self._response.data is not None:
+                        self._data = self._response.data
+        except Exception as exc:
+            self._logger.error('error on processing [{}] {}: {} [{}]'.format(
+                method, url, str(exc), str(type(exc))))
+        if self._response is None:
+            self._logger.error('url: {}: no response'.format(url))
+        elif self._response.status >= 400:
+            self._logger.error('status {} [{}] for {}'.format(
+                self._response.status, self._response.reason, url))
+        else:
+            self._logger.log('url: {} status: {} reason: {}'.format(
+                url, self._response.status, self._response.reason), 4)
+
+    def getContent(self, url, relocationCount=0):
+        '''Returns the body of a website.
+        @param url: the URL of the website
+        @param relocationCount: number of relocations to follow
+        @return: '' or the html content
+        '''
+        self.handleRequest(url, 'GET', relocationCount)
+        data = self._data
+        return data
+
+    def getHead(self, url, relocationCount=5):
+        '''Returns the header of a website.
+        @param url: the URL of the website
+        @param relocationCount: number of relocations to follow
+        @return: the dictionary with the headers
+        '''
+        self.handleRequest(url, 'HEAD', relocationCount)
+        rc = self._headers()
+        return rc
+
+    def getHeaderField(self, field, defaultValue=None):
+        '''Gets the value of a header field.
+        @param field: name of the header field, e.g. 'content-length'
+        @return defaultValue: the field is unknown
+            otherwise: the value of the field
+        '''
+        rc = defaultValue
+        field = field.lower()
+        if self._response is not None:
+            for key in self._response.headers:
+                if key.lower() == field:
+                    rc = self._response.headers[key]
+                    break
+        return rc
+
+    def getRealUrl(self, url):
+        '''Returns the first not relocated URL of a given URL.
+        @param url: URL to inspect
+        @return: <url>: url is not relocated otherwise: the first not relocated URL of a chain
+        '''
+        self._handleSingleRequest(url, 'HEAD')
+        while self._response is not None and self._response.status > 300 and self._response.status < 400:
+            url = self.getHeaderField('location', '')
+            self._handleSingleRequest(url, 'HEAD')
+        return url
+
+    def handleRequest(self, url, method, relocationCount, content=None, contentType=None, timeout=None, convertToText=True):
+        '''Handles a HTTP request.
+        @param url: the URL of the website
+        @param method: the request method, e.g. 'HEAD'
+        @param relocationCount: number of relocations to follow
+        @param content: only for 'PUT'/'POST': body of the request. If a dict: will be encoded as JSON
+        @param contentType: None: automatic selection
+        @param timeout: None: use _timeout otherwise: the request is aborted after this amount of seconds
+        @return: url of the end of the relocation chain
+        '''
+        self._handleSingleRequest(url, method, content, contentType, timeout)
+        status = 499 if self._response is None else self._response.status
+        while relocationCount > 0 and (301 <= status < 400):
+            relocationCount -= 1
+            url = self.getHeaderField('location', '')
+            self._handleSingleRequest(
+                url, method, content, contentType, timeout)
+            status = 499 if self._response is None else self._response.status
+        if convertToText and isinstance(self._data, bytes):
+            self._data = self._data.decode()
+        return url
+
+    def putSimpleRest(self, url, task, resource, data, timeout=None):
+        '''Puts a REST request with the Simple-REST standard.
+        @param url: the request target
+        @param task: the task name, e.g. 'send'
+        @param resource: a further specification of the request, e.g. 'db'
+        @param data: the data to put: a string or a dictionary
+        @param timeout: None: use _timeout otherwise: the request is aborted after this amount of seconds
+        '''
+        self._handleSingleRequest(
+            url + '/' + task + '/' + resource, 'PUT', data, None, timeout)
+
+
+def main():
+    '''Main function.
+    '''
+    logger = base.Logger.Logger('/tmp/httpclient.log', True)
+    client = HttpClient(logger, 1)
+    url = 'https://wiki.hamatoma.de'
+    data = client.getHead(url)
+    print('header of {}:\n{}'.format(url, str(data).replace(', ', ',\n')))
+    client.close()
+
+
+if __name__ == '__main__':
+    main()
diff --git a/net/RestServer.py b/net/RestServer.py
new file mode 100644 (file)
index 0000000..ad4f90e
--- /dev/null
@@ -0,0 +1,195 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+# coding=utf8
+import json
+import http.server
+
+import base.Const
+
+class TaskHandler:
+    '''Does a specific service.
+    '''
+
+    def __init__(self, logger):
+        '''Constructor.
+        '''
+        self._logger = logger
+        self._requestHandler = None
+
+    def setRequest(self, requestHandler):
+        '''Setter.
+        @param requestHandler: an instance of RestHTTPRequestHandler
+        '''
+        self._requestHandler = requestHandler
+
+    def isRelevant(self, method):
+        '''Tests whether the request can be serviced.
+        Abstract method, should be overridden.
+        @param method: the request method: 'DELETE', 'GET'
+        @return True: the service can be handled
+        '''
+        base.StringUtils.avoidWarning(method)
+        return False
+
+    def service(self, method):
+        '''Abstract method for doing the real service.
+        Should be overridden.
+        @param method: the request method: 'DELETE', 'GET'
+        @return True: OK False: break chain handling
+        '''
+        base.StringUtils.avoidWarning(method)
+        return False
+
+
+class RestHTTPRequestHandler(http.server.BaseHTTPRequestHandler):
+    '''Handles the requests for the REST service.
+    There may be no constructor (invisible instantiation).
+    '''
+    def __init__(self, request, client_address, server):
+        '''Constructor.
+        @param request
+        @param client_address
+        @param server
+        '''
+        http.server.BaseHTTPRequestHandler.__init__(self, request, client_address, server)
+        self.stringData = ''
+        self.byteData = b''
+        self.jsonData = None
+        self.httpStatus = 0
+        self.mediaType = None
+        self.inputBytes = b''
+        self.inputLength = 0
+        self.inputString = ''
+
+    def callHandler(self, method):
+        '''Search for the matching TaskHandler and calls it.
+        @param method: the request method
+        '''
+        self.server.logger.log('serving ' + method, base.Const.LEVEL_LOOP)
+        if not self.isValidPath(self.path):
+            self.server.logger.error('invalid path: ' + self.path)
+            self.send_response(500)
+            self.end_headers()
+        else:
+            self.stringData = ''
+            self.byteData = b''
+            self.jsonData = None
+            self.httpStatus = 200
+            self.mediaType = None
+            self.inputBytes = b''
+            if method in ('POST', 'PUT'):
+                self.inputLength = int(self.headers['Content-Length'])
+                if self.inputLength > 0:
+                    self.inputBytes = self.rfile.read(self.inputLength)
+                    self.inputString = self.inputBytes.decode('utf-8')
+                if self.inputString.startswith('{') or self.inputString.startswith('['):
+                    self.jsonData = json.loads(self.inputString)
+            found = False
+            for handler in self.server.restServer.taskHandlers:
+                handler.setRequest(self)
+                if handler.isRelevant(method):
+                    found = True
+                    if not handler.service(method):
+                        break
+            if not found:
+                self.httpStatus = 404
+            content = None
+            if self.jsonData is not None:
+                content = json.dumps(self.jsonData)
+                if self.mediaType is None:
+                    self.mediaType = 'text/json'
+            if self.byteData:
+                content = self.byteData
+            elif self.stringData:
+                content = self.stringData.encode('utf-8')
+            if self.mediaType is None:
+                self.mediaType = 'text/plain'
+            self.send_header('Content-Type', self.mediaType)
+            if content is not None:
+                self.send_header('Length', str(len(content)))
+            self.send_response(self.httpStatus)
+            self.end_headers()
+            if content is not None and content:
+                # self.wfile.write(b"\n")
+                self.wfile.write(content)
+
+    def do_DELETE(self):
+        '''Handles a request of the DELETE method.
+        '''
+        self.callHandler('DELETE')
+
+    def do_GET(self):
+        '''Handles a request of the GET method.
+        '''
+        self.callHandler('GET')
+
+    def do_POST(self):
+        '''Handles a request of the POST method.
+        '''
+        self.callHandler('POST')
+
+    def do_PUT(self):
+        '''Handles a request of the PUT method.
+        '''
+        self.callHandler('PUT')
+
+    def isValidPath(self, path):
+        '''Inspects the path (part of the URL) whether the service can be handled.
+        Should be overridden.
+        @param path: the path to inspect
+        @return True: the service can be handled
+        '''
+        base.StringUtils.avoidWarning(path)
+        rc = False
+        return rc
+
+class RestServer:
+    '''A REST server which serves the URLS /<topic>/<resource>.
+    Supports the methods PUT DELETE POST and GET.
+    '''
+
+    def __init__(self, address, port, logger):
+        '''Constructor.
+        @param addr: the address of the server, e.g. 'localhost'
+        @param port: the port for listening
+        @param logger: the logger
+        '''
+        self._address = address
+        self._port = port
+        self.logger = logger
+        self.taskHandlers = []
+        self.server = None
+
+    def getServerInstance(self):
+        '''Returns the instance of HTTPServer.
+        Note: must be overridden because of the last parameter: the request handler class
+        @return the the instance of HTTPServer
+        '''
+        rc = http.server.HTTPServer((self._address, self._port), RestHTTPRequestHandler)
+        return rc
+
+    def listen(self):
+        '''Listens for connections and handles them.
+        '''
+        self.logger.log('listening on {:s}-{:d}'.format(self._address, self._port), base.Const.LEVEL_SUMMARY)
+        self.server = self.getServerInstance()
+        self.server.logger = self.logger
+        self.server.restServer = self
+        self.server.serve_forever()
+
+    def registerTaskHandler(self, handler):
+        '''Registers a task handler.
+        @param handler: an instance of TaskHandler
+        '''
+        self.taskHandlers.append(handler)
+
+    def stopListening(self):
+        '''Stops the never ending loop.
+        '''
+        self.server.shutdown()
+
+if __name__ == '__main__':
+    pass
diff --git a/net/SimpleRestServer.py b/net/SimpleRestServer.py
new file mode 100644 (file)
index 0000000..5537806
--- /dev/null
@@ -0,0 +1,152 @@
+'''
+Created: 2020.06.24
+@license: CC0 https://creativecommons.org/publicdomain/zero/1.0
+@author: hm
+'''
+import datetime
+import sys
+import http.server
+
+import base.MemoryLogger
+import net.RestServer
+
+
+class SimpleTaskHandler(net.RestServer.TaskHandler):
+    '''Handles a task of the SimpleRestServer.
+    '''
+
+    def isRelevant(self, method):
+        '''Tests whether the request can be serviced.
+        Abstract method, should be overridden.
+        @param method: the request method: 'DELETE', 'GET'
+        @return True: the service can be handled
+        '''
+        base.StringUtils.avoidWarning(method)
+        return False
+
+    def service(self, method):
+        '''Abstract method for doing the real service.
+        @param method: the request method: 'DELETE', 'GET'
+        '''
+
+
+class EchoTaskHandler(SimpleTaskHandler):
+    '''Handles the echo command.
+    '''
+
+    def isRelevant(self, method):
+        '''Tests whether the request can be serviced.
+        Abstract method, should be overridden.
+        @param method: the request method: 'DELETE', 'GET'
+        @return True: the service can be handled
+        '''
+        rc = method in (
+            'GET', 'POST', 'PUT') and self._requestHandler.task == 'echo'
+        return rc
+
+    def service(self, method):
+        '''Abstract method for doing the real service.
+        @param method: the request method: 'DELETE', 'GET'
+        '''
+        if method == 'GET':
+            if self._requestHandler.resource == 'time':
+                self._requestHandler.stringData = datetime.datetime.now(
+                ).strftime('%Y.%m.%d %H:%M:%S\n')
+            elif self._requestHandler.resource == 'ip':
+                (host, port) = self._requestHandler.client_address
+                self._requestHandler.stringData = '{:s}:{:d}\n'.format(
+                    host, port)
+
+            else:
+                self._requestHandler.stringData = super._request.resource + "\n"
+            if self._requestHandler.paramMap:
+                self._requestHandler.stringData += repr(
+                    self._requestHandler.paramMap) + "\n"
+        else:
+            self._requestHandler.stringData = self._requestHandler.inputString + "\n"
+            if self._requestHandler.paramMap:
+                self._requestHandler.stringData += repr(
+                    self._requestHandler.paramMap) + "\n"
+
+
+class SimpleRestHTTPRequestHandler(net.RestServer.RestHTTPRequestHandler):
+    '''Request handler for the SimpleRestServer.
+    '''
+    def __init__(self, request, client_address, server):
+        '''Constructor.
+        @param request
+        @param client_address
+        @param server
+        '''
+        net.RestServer.RestHTTPRequestHandler.__init__(self, request, client_address, server)
+        self.paramMap = None
+        self.params = None
+        self.pathNodes = None
+        self.resources = None
+        self.task = None
+        self.resource = None
+
+    def isValidPath(self, path):
+        '''Inspects the path (part of the URL) whether the service can be handled.
+        @param path: the path to inspect
+        @return True: the service can be handled
+        '''
+        self.task = None
+        self.resource = None
+        if path.startswith('/'):
+            path = path[1:]
+        rc = False
+        parts = path.split('?', 1)
+        if parts[0].endswith('/'):
+            parts[0] = parts[0][0:-1]
+        self.params = []
+        self.paramMap = {}
+        if len(parts) == 1:
+            self.params = []
+            nodes = path.split('/')
+            if len(nodes) == 2:
+                self.task = nodes[0]
+                self.resource = nodes[1]
+                rc = True
+        else:
+            self.params = parts[1].split('&')
+            for param in self.params:
+                parts2 = param.split('=', 1)
+                if len(parts2) == 2:
+                    self.paramMap[parts2[0]] = parts2[1]
+        self.pathNodes = parts[0].split('/')
+        if len(self.pathNodes) >= 2:
+            self.task = self.pathNodes[0]
+            self.resource = self.pathNodes[1]
+            rc = True
+        return rc
+
+
+class SimpleRestServer(net.RestServer.RestServer):
+    '''A REST server which serves the URLS /<topic>/<resource>.
+    Supports the methods PUT DELETE POST and GET.
+    '''
+
+    def getServerInstance(self):
+        '''Returns the instance of HTTPServer.
+        Note: must be overridden because of the last parameter: the request handler class
+        @return the the instance of HTTPServer
+        '''
+        rc = http.server.HTTPServer(
+            (self._address, self._port), SimpleRestHTTPRequestHandler)
+        return rc
+
+
+def main(argv):
+    '''Main function.
+    '''
+    base.StringUtils.avoidWarning(argv)
+    logger = base.MemoryLogger.MemoryLogger(4)
+    taskHandler = EchoTaskHandler(logger)
+    server = SimpleRestServer('localhost', 58133, logger)
+    server.registerTaskHandler(taskHandler)
+    server.listen(SimpleRestHTTPRequestHandler)
+
+
+if __name__ == '__main__':
+    main(sys.argv[1:])
diff --git a/net/__init__.py b/net/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/snake_install.sh b/snake_install.sh
new file mode 100755 (executable)
index 0000000..8eb7329
--- /dev/null
@@ -0,0 +1,31 @@
+#! /bin/bash
+FN=/usr/lib/python3/dist-packages/snakeboxx.py
+
+function First(){
+  if [ ! -f $FN ]; then
+    cat >$FN <<EOS
+'''Prepare for usage of snakeboxx modules.
+'''
+import sys
+if '/usr/share/snakeboxx' not in sys.path:
+    sys.path.insert(0, '/usr/share/snakeboxx')
+if '/usr/share/pyrshell' in sys.path:
+    sys.path.remove('/usr/share/pyrshell')
+def startApplication():
+    '''Starts the application.
+    In this version: do nothing
+    '''
+EOS
+    echo "created: $FN"
+  fi
+}
+First
+CLAZZ=$1
+if [ -z "$CLAZZ" ]; then
+  echo "usage: snake_install <class>"
+  echo "example: snake_install DirApp"
+elif [ ! -f app/$CLAZZ.py ]; then
+  echo "not a class: $CLAZZ"
+else
+  python3 app/$CLAZZ.py -v4 install
+fi
diff --git a/tools/PrepUTest.sh b/tools/PrepUTest.sh
new file mode 100755 (executable)
index 0000000..20544ff
--- /dev/null
@@ -0,0 +1,2 @@
+#! /bin/bash
+sudo chown -R hm.hm /tmp/emailboxx
diff --git a/unittest/UnitTestCase.py b/unittest/UnitTestCase.py
new file mode 100644 (file)
index 0000000..03295b2
--- /dev/null
@@ -0,0 +1,404 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+
+import re
+import traceback
+import os.path
+import tempfile
+import posix
+import fnmatch
+
+import base.FileHelper
+import base.MemoryLogger
+
+class UnitTestAppInfo:
+    def __init__(self, usage):
+        self._usage = usage
+
+class UnitTestCase:
+    def __init__(self):
+        self._userId = posix.getuid()
+        self._isRoot = self._userId == 0
+        self._inTestSuite = False
+        self._errors = 0
+        self._summary = None
+        self._name = type(self).__name__
+        self._asserts = 0
+        self._application = UnitTestAppInfo(self.usage)
+        self._logger = base.MemoryLogger.MemoryLogger(True)
+        self._silentLogger = base.MemoryLogger.MemoryLogger(False)
+        base.FileHelper.setLogger(self._logger)
+
+    def _finish(self):
+        '''The last action of a test case.
+        Should be overwritten by sub classes
+        '''
+    def _describeDifference(self, str1, str2, prefix = ''):
+        '''Logs the difference of two strings.
+        @param str1: first string to compare
+        @param str2: second string to compare
+        @param prefix: '' or a prefix
+        @return: a string describing the difference
+        '''
+        count1 = len(str1)
+        count2 = len(str2)
+        ixDiff = -1
+        for ix in range(min(count1, count2)):
+            if str1[ix] != str2[ix]:
+                ixDiff = ix
+                break
+        if ixDiff != -1:
+            rc = '+++ {:s}different at pos {:d}: {:s}/{:s}\n'.format(prefix, ixDiff + 1, str1[ixDiff:ixDiff+5], str2[ixDiff:ixDiff+5])
+        elif count1 > count2:
+            rc = '+++ expected is longer:\n'
+        else:
+            rc = '+++ expected is shorter:\n'
+        rc += str1 + '\n' + str2
+        if ixDiff != -1:
+            rc += '\n' + ('=' * ixDiff) + '^'
+        return rc
+
+    def assertDirExists(self, current):
+        '''Tests whether a given directory exists.
+        @param current: the directory to inspect
+        @returns: True: the directory exists
+        '''
+        self._asserts += 1
+        rc = True
+        if not os.path.exists(current):
+            rc = self.error('directory does not exist: ' + current)
+        elif not os.path.isdir(current):
+            rc = self.error('file {} exists but it is not a directory'.format(current))
+        return rc
+
+    def assertIsEqual(self, expected, current):
+        '''Tests whether two values are equal.
+        @param expected: the expected value
+        @param current: the value to test
+        @return: True: values are equal
+        '''
+        rc = False
+        self._asserts += 1
+        if type(expected) != type(current):
+            self.error('different types: ' + str(type(expected)) + ' / ' + str(type(current)))
+        else:
+            rc = expected == current
+            if not rc:
+                if type(expected) is str:
+                    if expected.find('\n') < 0:
+                        self.error(self._describeDifference(expected, current))
+                    else:
+                        listExpected = expected.splitlines()
+                        listCurrent = current.splitlines()
+                        ixDiff = -1
+                        for ix in range(min(len(listExpected), len(listCurrent))):
+                            if listExpected[ix] != listCurrent[ix]:
+                                self.error(self._describeDifference(listExpected[ix], listCurrent[ix], 'in line {:d}: '.format(ix + 1)))
+                                ixDiff = ix
+                                break
+                        if ixDiff == -1 and len(listExpected) != len(listCurrent):
+                            if len(listExpected) < len(listCurrent):
+                                msg = 'expected has fewer lines: {:d}/{:d}\n'.format(len(listExpected), len(listCurrent)) + listCurrent[len(listExpected)]
+                            else:
+                                msg = 'expected has more lines: {:d}/{:d}\n'.format(len(listExpected), len(listCurrent)) + listExpected[len(listCurrent)]
+                            self.error(msg)
+                elif type(expected) is int:
+                    self.error('different: {:d}/{:d} [0x{:x}/0x{:x}]'.format(expected, current, expected, current))
+                else:
+                    self.error('different: {:s} / {:s}'.format(str(expected), str(current)))
+        return rc
+
+    def assertFalse(self, current):
+        '''Tests whether a value is False.
+        @param current: value to test
+        @returns: True: the value is False
+        '''
+        rc = True
+        self._asserts += 1
+        if current != False:
+            rc = self.error('+++ False expected, found: ' + str(current))
+        return rc
+
+    def assertFileContent(self, expectedContent, currentFile):
+        '''Compares a given string with an expected file content.
+        @param currentFile: the name of the file with the expected content, e.g. 'data/abc.xyz'
+        @param expectedContent: the content to compare
+        @returns: True: file content is the expected
+        '''
+        rc = True
+        self._asserts += 1
+        full = currentFile if currentFile.startswith(os.sep) else os.path.dirname(__file__) + os.sep + currentFile
+        if not os.path.exists(full):
+            rc =self.error('missing file: ' + currentFile)
+        else:
+            with open(full, 'r') as fp:
+                current = fp.read()
+            rc = self.assertIsEqual(expectedContent, current)
+            if not rc:
+                tempFile = self.tempFile(os.path.basename(currentFile))
+                with open(tempFile, "w") as fp:
+                    fp.write(expectedContent)
+                self.log('meld {} {}'.format(tempFile, full))
+        return rc
+
+    def assertFileContains(self, expected, currentFile):
+        '''Tests whether a given file contains a given content.
+        @param expected: content to search. May be a string or a re.RegExpr instance
+        @param currentFile: file to inspect
+        @returns: True: the file contains the expected string
+        '''
+        rc = True
+        self._asserts += 1
+        if not os.path.isfile(currentFile):
+            rc = self.error('missing file ' + currentFile)
+        else:
+            found = False
+            with open(currentFile) as fp:
+                # lineNo = 0
+                for line in fp:
+                    #lineNo += 1
+                    #if lineNo == 126:
+                    #    lineNo = 126
+                    if type(expected) == str:
+                        if line.find(expected) >= 0:
+                            found = True
+                            break
+                    else:
+                        if expected.search(line) is not None:
+                            found = True
+                            break
+            if not found:
+                text = expected if type(expected) == str else expected.pattern
+                rc = self.error('missing content {:s} in {:s}'.format(text[0:20], currentFile))
+        return rc
+
+    def assertFileExists(self, filename):
+        '''Tests whether a given file exists.
+        @param filename: the name of the file to test
+        @returns: True: the file exists
+        '''
+        rc = True
+        self._asserts += 1
+        if not os.path.exists(filename):
+            rc = self.error('file does not exist: ' + filename)
+        return rc
+
+    def assertFileNotContains(self, unexpectedContent, currentFile):
+        '''Tests whether a given file contains not a given content.
+        @param unexpectedContent: content to search
+        @param currentFile: file to inspect
+        '''
+        rc = True
+        self._asserts += 1
+        if not os.path.isfile(currentFile):
+            rc = self.error('missing file ' + currentFile)
+        else:
+            found = False
+            with open(currentFile) as fp:
+                for line in fp:
+                    if line.find(unexpectedContent) >= 0:
+                        found = True
+                        break
+            if found:
+                rc = self.error('unexpected content {:s} in {:s}'.format(unexpectedContent[0:20], currentFile))
+        return rc
+
+    def assertFileNotExists(self, filename):
+        '''Tests whether a given file does not exist.
+        @param filename: the name of the file to test
+        @returns: True: the file does not exist
+        '''
+        rc = True
+        self._asserts += 1
+        if os.path.exists(filename):
+            rc = self.error('file exists: ' + filename)
+        return rc
+
+    def assertMatches(self, expectedRegExpr, current, flags=0):
+        '''Tests whether a string matches a given regular expression.
+        @param expectedRegExpr: regular expression
+        @param current: string to test
+        @param flags: flags for re.match, e.g. re.IGNORECASE or re.MULTILINE
+        @returns: True: the value matches the expected
+        '''
+        rc = True
+        self._asserts += 1
+        if not re.search(expectedRegExpr, current, flags):
+            rc = self.error('+++ does not match\n' + expectedRegExpr + '\n' + current)
+        return rc
+
+    def assertNodeExists(self, path, nodePattern):
+        '''Tests whether at least one file exists in a given path with a given node pattern.
+        @param path: the directory to inspect
+        @param nodePattern: a pattern with unix wildcards to inspect
+        @return True: node found
+        '''
+        nodes = os.listdir(path)
+        found = False
+        for node in nodes:
+            if fnmatch.fnmatch(node, nodePattern):
+                found = True
+                break
+        if not found:
+            self.error('node {} not found in {}'.format(nodePattern, path))
+        return found
+
+    def assertNone(self, current):
+        '''Tests whether a value is None.
+        @param current: value to test
+        @returns: True: the value is None
+        '''
+        rc = True
+        self._asserts += 1
+        if current is not None:
+            rc = self.error('+++ None expected, found: ' + str(current))
+        return rc
+
+    def assertNotNone(self, current):
+        '''Tests whether a value is not None.
+        @param current: value to test
+        @returns: True: the value is not None
+        '''
+        self._asserts += 1
+        if current is None:
+            self.error('+++ unexpected None found')
+
+    def assertTrue(self, current):
+        '''Tests whether a value is True.
+        @param current: value to test
+        @returns: True: the value is True
+        '''
+        rc = True
+        self._asserts += 1
+        if current != True:
+            rc = self.error('+++ True expected, found: ' + str(current))
+        return rc
+
+    def clearDirectory(self, path):
+        '''Removes all files and subdirs in a given directory.
+        @param path: name of the directory
+        '''
+        base.FileHelper.clearDirectory(path)
+
+    def ensureDirectory(self, directory):
+        '''Ensures that the given directory exists.
+        @param directory: the complete name
+        @return: None: could not create the directory
+            otherwise: the directory's name
+        '''
+        rc = base.FileHelper.ensureDirectory(directory)
+        return rc
+
+    def ensureFileDoesNotExist(self, filename):
+        '''Ensures that a file does not exist.
+        @param filename: the file to delete if it exists.
+        '''
+        base.FileHelper.ensureFileDoesNotExist(filename)
+
+    def error(self, message):
+        '''Displays an error with backtrace.
+        @param message: error message
+        @returns: False
+        '''
+        self._errors += 1
+        print(message)
+        info = traceback.extract_stack()
+        # ignore runtime methods:
+        while len(info) > 1 and (info[0].filename.find('/pysrc/') > 0 or info[0]._line.startswith('tester.run()')
+                or info[0].filename.find('UnitTestCase.py') > 0 and info[0]._line.startswith('method()')):
+            del info[0]
+        # ignore UnitTest internals:
+        length = len(info)
+        while length > 1 and info[length - 1].filename.find('UnitTestCase.py') > 0:
+            del info[length - 1]
+            length -= 1
+        for entry in info:
+            print('{:s}:{:d} {:s}'.format(entry.filename, entry.lineno, entry.line))
+        return False
+
+    def getSummary(self):
+        '''Return the summary message.
+        @return the summary message
+        '''
+        return self._summary
+
+    def log(self, message):
+        '''Displays a message
+        @param message: message
+        '''
+        print(message)
+
+    def run(self):
+        '''Searches the methods starting with 'test' and call them.
+        '''
+        for item in self.__dir__():
+            if item.startswith('test'):
+                method = getattr(self, item)
+                print('= ' + item)
+                method()
+        self._summary = '=== unit {:s}: {:d} assert(s) with {:d} error(s)'.format(self._name, self._asserts, self._errors)
+        print(self._summary)
+        self._finish()
+
+    def setInTestSuite(self, value):
+        '''Sets the attribute.
+        @param value: the new value of _inTestSuite
+        '''
+        self._inTestSuite = value
+
+    def tempDir(self, node, subdir = None):
+        '''Builds the name of a directory and ensures that the directory exists.
+        @param node: the directory's name (without path)
+        @param subdir: None or the name of a directory inside the temp dir
+        @return: None: cannot create directory
+                otherwise: the name of an existing temporary directory (with path)
+        '''
+        rc = tempfile.gettempdir()
+        if subdir is not None:
+            rc += os.sep + subdir
+        if node is not None:
+            if rc[-1] != os.sep:
+                rc += os.sep
+            rc += node
+        rc = self.ensureDirectory(rc)
+        return rc
+
+    def tempFile(self, node, subdir = None, subdir2 = None):
+        '''Builds the name of a temporary file and ensures that the parent directories exist.
+        @param node: the file's name (without path)
+        @param subdir: None or the name of a directory inside the temp dir
+        @param subdir2: None or the name of a directory inside subdir
+        @return: the name of a temporary file (with path), e.g. /tmp/subdir/subdir2/node
+        '''
+        rc = tempfile.gettempdir() + os.sep
+        if subdir is not None:
+            rc += subdir
+            rc = self.ensureDirectory(rc)
+            if subdir[-1] != os.sep:
+                rc += os.sep
+            if subdir2 is not None:
+                rc += subdir2
+                self.ensureDirectory(rc)
+                if subdir2[-1] != os.sep:
+                    rc += os.sep
+        rc += node
+        return rc
+
+    def usage(self, message):
+        print(message)
+        self.assertFalse(True)
+
+    def xtestMyself(self):
+        self.assertIsEqual(3, 4)
+        self.assertIsEqual('Hello', 'Hallo')
+        self.assertIsEqual('abc\nhallo', 'abc\nhello')
+        self.assertNone('not none')
+        self.assertNotNone(None)
+
+if __name__ == '__main__':
+    tester = UnitTestCase()
+    tester.run()
diff --git a/unittest/UnitTestSuite.py b/unittest/UnitTestSuite.py
new file mode 100644 (file)
index 0000000..d881686
--- /dev/null
@@ -0,0 +1,126 @@
+'''
+Created on 22.04.2018
+
+@author: hm
+'''
+
+import os.path
+import re
+import sys
+import importlib
+
+sys.path.insert(0, '/usr/share/snakeboxx')
+
+
+class UnitTestSuite:
+    '''Tests a group of test cases.
+    '''
+
+    def __init__(self, name):
+        '''Constructor.
+        @param name: name of the suite (for logging)
+        '''
+        self._name = name
+        self._testCases = []
+        self._imports = []
+        self._base = '/home/ws/py/snakeboxx/'
+        self._summary = []
+        self._debugList = []
+
+    def addByPattern(self, relPath, pattern=r'.*[.]py$'):
+        '''Adds the test cases given by a directory and a filename pattern (of modules, not test cases).
+        @param relPath: the directory containing the modules to test, relative to the parent of 'unittest'
+        @param pattern: a regular expression for selecting the modules
+        '''
+        basePath = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
+        path = basePath + os.sep + relPath
+        files = os.listdir(path)
+        regExpr = re.compile(pattern)
+        for node in files:
+            if regExpr.match(node):
+                self.addFromFile(relPath, node)
+
+    def addFromFile(self, package, node):
+        '''Adds a test case given by the name of the module.
+        @param package: the package name of the module
+        @param node: the file containing the module
+        '''
+        moduleName = node[0:-3] + 'Test'
+        #moduleWithPackage = package + '.' + moduleName
+        #self._imports.append([moduleName, moduleWithPackage])
+        full = self._base + 'unittest/' + package + '/' + moduleName + '.py'
+        if os.path.exists(full):
+            self._imports.append([moduleName, package])
+            self._testCases.append(moduleName)
+
+    def addList(self, testCases):
+        '''Adds a list of test cases for inspecting.
+        @param testCases: a list of class names
+        '''
+        for item in testCases:
+            if item not in self._testCases:
+                self._testCases.append(item)
+
+    def instantiate(self, clazz):
+        '''Instantiate a class object given by name
+        @param clazz: the classes name
+        @return the instance
+        '''
+        parts = clazz.split('.')
+        moduleName = ".".join(parts[:-1])
+        className = parts[-1]
+        module = importlib.import_module(moduleName)
+        instance = getattr(module, className)
+        return instance
+
+    def process(self):
+        '''Instantiate the classes collected in _imports and call the class.run() method.
+        '''
+        tests = []
+        for name, package in self._imports:
+            if not name.startswith('__'):
+                if name.find('AppTest') > 0:
+                    package = 'app'
+                instance = self.instantiate(
+                    'unittest.' + package + '.' + name + '.' + name)()
+                clazz = self.instantiate(
+                    'unittest.' + package + '.' + name + '.' + name)
+                tests.append((clazz, instance))
+        for (clazz, instance) in tests:
+            clazz.__init__(instance)
+            clazz.setInTestSuite(instance, True)
+            clazz.run(instance)
+            if instance.debugFlag():
+                self._debugList.append(clazz.__name__)
+            self._summary.append(clazz.getSummary(instance))
+
+    def summary(self):
+        print('=== Summary ===')
+        errors = ''
+        countErrors = 0
+        asserts = 0
+        units = 0
+        for item in self._summary:
+            print(item)
+            units += 1
+            # 0...1....2...............3..4.........5....6
+            # === unit LinuxUtilsTest: 84 assert(s) with 0 error(s)
+            parts = item.split()
+            asserts += int(parts[3])
+            countErrors += int(parts[6])
+            if parts[6] != '0':
+                errors += '{}: {} '.format(parts[2][0:-1], parts[6])
+        if errors != '':
+            print('=== {} units with {} assert(s) and {} error(s) in:\n{}'.format(
+                units, asserts, countErrors, errors))
+        print('Debug flag is set in: ' + ' '.join(self._debugList))
+
+
+if __name__ == '__main__':
+    paths = sys.path
+    suite = UnitTestSuite('base')
+    suite.addByPattern('base')
+    suite.addByPattern('net')
+    suite.addByPattern('app')
+    suite.process()
+    suite.summary()
diff --git a/unittest/__init__.py b/unittest/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/unittest/app/DbAppTest.py b/unittest/app/DbAppTest.py
new file mode 100644 (file)
index 0000000..b3766ff
--- /dev/null
@@ -0,0 +1,377 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+
+import shutil
+import os
+
+import app.BaseApp
+import app.DbApp
+import base.StringUtils
+
+DEBUG = False
+
+
+class DbAppTest(UnitTestCase):
+    def __init__(self):
+        UnitTestCase.__init__(self)
+        app.BaseApp.BaseApp.setUnderTest(True)
+        self._baseDir = self.tempDir('unittest.db')
+        self._finish()
+        self._createConfig()
+
+    def _dbExists(self, db: str, driver: str='mysql'):
+        '''Tests whether a db exists.
+        @param db: name of the database
+        @result: True: the db exists
+        '''
+        app.DbApp.main(['-v0',
+                        'all-dbs', f'--driver={driver}'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        rc = db in application._resultLines
+        return rc
+
+    def _deleteDb(self, db: str, driver: str='mysql'):
+        if self._dbExists(db, driver):
+            app.DbApp.main(['-v0',
+                            'delete-db', f'--driver={driver}', db, '--force'
+                            ])
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def _createConfig(self):
+        self._configFile = self.tempFile(
+            'db.conf', 'dbboxx')
+        self._configDir = os.path.dirname(self._configFile)
+        self._logFile = os.path.join(self._configDir, 'test.log')
+        base.StringUtils.toFile(self._configFile, f'''# created by DbAppTest
+logfile={self._logFile}
+mysql.admin.user=tdba
+mysql.admin.code=TopSecret
+mysql.host=localhost
+mysql.port=3306
+postgresql.host=localhost
+postgresql.port=5432
+postgresql.admin.user=tdba
+postgresql.admin.code=TopSecret
+webapp.base=/tmp/cunit/www
+''')
+
+    def _finish(self):
+        if os.path.isdir(self._baseDir):
+            shutil.rmtree(self._baseDir)
+
+    def testInstall(self):
+        if DEBUG:
+            return
+        app.DbApp.main(['-v3', '--dir-unittest=' + self._configDir, '-c' + self._configDir,
+                        'install', 'dbboxx'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        fn = self._configDir + os.sep + 'db.conf'
+        self.assertFileExists(fn)
+        self.assertFileContent(f'''# created by DbAppTest
+logfile={self._logFile}
+mysql.admin.user=tdba
+mysql.admin.code=TopSecret
+mysql.host=localhost
+mysql.port=3306
+postgresql.host=localhost
+postgresql.port=5432
+postgresql.admin.user=tdba
+postgresql.admin.code=TopSecret
+webapp.base=/tmp/cunit/www
+''', fn)
+
+    def testUninstall(self):
+        if DEBUG:
+            return
+        base.FileHelper.clearDirectory(self._configDir)
+        fnApp = os.path.join(self._configDir, 'bin/dbboxx')
+        base.StringUtils.toFile(fnApp, 'application', ensureParent=True)
+        app.DbApp.main(['-v3', f'--dir-unittest={self._configDir}', f'-c{self._configDir}',
+                        'uninstall'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileNotExists(fnApp)
+
+    def testHelp(self):
+        if DEBUG:
+            return
+        app.DbApp.main(['-v3',
+                        'help', 'help'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual('''dbboxx <global-opts> <mode> [<options>]
+  Info and manipulation of mysql databases.
+<mode>:
+  help [<pattern-mode> [<pattern-submode>]]
+    Prints a description of the application
+    <pattern-mode>
+      if given: each mode is listed if the pattern matches
+    <pattern-submode>:
+      if given: only submodes are listed if this pattern matches
+Examples:
+dbboxx help
+dbboxx help help sub
+''', application._resultText)
+
+
+    def testHelpAll(self):
+        if 'test'.startswith('test'): return
+        if DEBUG: return
+        app.DbApp.main(['-v3',
+                        'help'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual('''dbboxx <global-opts> <mode> [<options>]
+  Info and manipulation of mysql databases.
+  <global-opt>:
+  -c<dir> or --config-directory=<dir>
+    the directory containing the configuration file
+  -r or --run-time
+    the runtime will be displayed at the end of the program
+  --test-source=<dir>
+    a directory used for unit tests
+  --test-target=<dir>
+    a directory used for unit tests
+  -v<level> or --verbose-level=<level>
+    sets the amount of logs: only log messages with a level <= <level> will be displayed
+<mode>:
+  all-dbs <opts>
+    Lists all databases.
+      <options>:
+      --adm-name=<string> or -N=<string>:
+        name of a db user with admin rights
+      --adm-password=<string> or -P=<string>:
+        password of the admin
+      --internal-too or -i:
+        the internal databases will be listed too
+  build-config
+    Creates a useful configuration file.
+  dbboxx create-admin <name> <password> [<options>]
+    Create a database user with admin rights.
+      <options>:
+      --adm-name=<string> or -N=<string>:
+        name of a db user with admin rights
+      --adm-password=<string> or -P=<string>:
+        password of the admin
+      --readonly or -r:
+        the admin gets only read rights (e.g. for backup)
+  dbboxx create-db-and-user <db> [<user> <password>] [<options>]
+    Create a database and a user with rights to modify this db.
+      <options>:
+      --adm-name=<string> or -N=<string>:
+        name of a db user with admin rights
+      --adm-password=<string> or -P=<string>:
+        password of the admin
+  help [<pattern-mode> [<pattern-submode>]]
+    Prints a description of the application
+    <pattern-mode>
+      if given: each mode is listed if the pattern matches
+    <pattern-submode>:
+      if given: only submodes are listed if this pattern matches
+  install
+    Installs the application.
+  uninstall [--service=<servicename>]
+    Removes the application.
+  version
+    Prints the version number.
+Examples:
+dbboxx -v3 -r list
+dbboxx all-dbs
+dbboxx all-dbs --admin=jonny --adm-password=ForgetNever
+dbboxx build-config
+dbboxx create-admin dbadm TopSecret
+dbboxx create-admin dbadmin MoreSecret --admin=root --adm-password=ForgetNever
+dbboxx create-db-and-user app dbadm TopSecret
+dbboxx create-admin dbadmin MoreSecret --admin=root --adm-password=ForgetNever
+dbboxx help
+dbboxx help help sub
+dbboxx install
+dbboxx uninstall --service=emailboxx
+dbboxx version
+''', application._resultText)
+
+
+    def testAllDbs(self):
+        if DEBUG: return
+        app.DbApp.main(['-v3',
+                        'all-dbs'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        current = '\n'.join(application._resultLines)
+        self.assertFalse(current == '')
+        app.DbApp.main(['-v3',
+                        'all-dbs', '--internal-too', '-i'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        current = application._resultLines
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertTrue(current.index('mysql') >= 0)
+        self.assertTrue(current.index('information_schema') >= 0)
+
+    def testCreateAdmin(self):
+        if DEBUG: return
+        app.DbApp.main(['-v4',
+                        'create-admin', 'testadm', 'TopSecret'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        app.DbApp.main(['-v4',
+                        'create-admin', 'testadm', 'TopSecret', '--readonly', '-r'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+
+    def testCreateDbAndUser(self):
+        if DEBUG: return
+        app.DbApp.main(['-v4',
+                        'create-db-and-user', 'dbutest1', 'utest1', 'TopSecret'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+
+    def testDeleteDb(self):
+        if DEBUG: return
+        target = self.tempFile('export-dbutest.sql')
+        app.DbApp.main(['-v4',
+                        'delete-db', 'dbutest1', target, '--force', '-f'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileExists(target)
+
+    def testDeleteUser(self):
+        if DEBUG: return
+        app.DbApp.main(['-v4',
+                        'delete-user', 'utest1', '--force', '-f'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+
+    def testExportDb(self):
+        if DEBUG: return
+        fn = self.tempFile('mysql.sql.gz', 'unittest.db')
+        self.ensureFileDoesNotExist(fn)
+        app.DbApp.main(['-v4',
+                        'export-db', 'mysql', fn
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileExists(fn)
+
+    def testImportDb(self):
+        if DEBUG: return
+        db = 'dbuimp1'
+        app.DbApp.main(['-v4',
+                        'create-db-and-user', db
+                        ])
+        fn = self.tempFile('newdb.sql', 'unittest.db')
+        base.StringUtils.toFile(fn, '''
+DROP TABLE IF EXISTS `users`;
+create table users (
+  id int(10) unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY,
+  name varchar(128)
+);
+''')
+        app.DbApp.main(['-v4',
+                        'import-db', db, fn, '--force', '-f'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileExists(fn)
+
+    def testCreateWebapp(self):
+        if DEBUG: return
+        domain, db, user, code = 'example.unittest', 'dbuimp1', 'utest', 'secret'
+        self._deleteDb(db)
+        home = base.FileHelper.tempFile(domain, 'unittest')
+        self.ensureDirectory(os.path.dirname(home))
+        fnConfig = os.path.join(self._configDir, 'webapps.d', domain)
+        self.ensureFileDoesNotExist(fnConfig)
+        self.ensureFileDoesNotExist(home)
+        app.DbApp.main(['-v4', f'--dir-unittest={self._configDir}',
+                        'create-webapp', domain, db, user, code, home,
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileExists(home)
+
+    def testCreateWebappFromConfig(self):
+        if DEBUG: return
+        domain, db, user, code = 'example2.unittest', 'dbuimp2', 'utest', 'secret'
+        self._deleteDb(db)
+        home = base.FileHelper.tempFile(domain, 'unittest')
+        self.ensureDirectory(os.path.dirname(home))
+        fnConfig = os.path.join(self._configDir, 'webapps.d', domain)
+        base.StringUtils.toFile(fnConfig, f'''db={db}
+user={user}
+password={code}
+sql=any
+directory={home}
+''')
+        self.ensureFileDoesNotExist(home)
+        app.DbApp.main(['-v4', f'--dir-unittest={self._configDir}',
+                        'create-webapp', domain
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileExists(home)
+
+    def testCreateAdminPg(self):
+        if DEBUG: return
+        app.DbApp.main(['-v4', f'--dir-unittest={self._configDir}',
+                        'create-admin', '--driver=pg', 'tdba2', 'NotSecret', '--adm-group=testadmins'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual('''sudo -u postgres psql postgres <<EOS
+CREATE ROLE admins WITH SUPERUSER CREATEDB CREATEROLE;
+CREATE ROLE tdba2 WITH SUPERUSER CREATEDB CREATEROLE LOGIN PASSWORD 'NotSecret';
+GRANT admins TO tdba2;
+EOS'''.split('\n'), application._resultLines)
+
+    def testCreateReadOnlyAdminPg(self):
+        if DEBUG: return
+        app.DbApp.main(['-v4', f'--dir-unittest={self._configDir}',
+                        'create-admin', '--driver=pg', '--readonly', 
+                        'tdba2', 'NotSecret', '--adm-group=testadmins'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual('''sudo -u postgres psql postgres <<EOS
+CREATE ROLE roadmins;
+CREATE ROLE tdba2 WITH LOGIN PASSWORD 'NotSecret';
+GRANT roadmins TO tdba2;
+GRANT USAGE ON SCHEMA public TO roadmins;
+EOS'''.split('\n'), application._resultLines)
+
+    def testCreateDbAndUserPg(self):
+        if 'x'.startswith('y'): return
+        db = 'dbunittest'
+        driver = 'pg'
+        self._deleteDb(db, driver)
+        app.DbApp.main(['-v4', f'--dir-unittest={self._configDir}',
+                        'create-db-and-user', f'--driver={driver}', db, 
+                        'tdba2', 'NotSecret', '--adm-group=testadmins'
+                        ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertTrue(self._dbExists(db, driver))
+        self._deleteDb(db, driver)
+
+if __name__ == '__main__':
+    # import sys;sys.argv = ['', 'Test.testName']
+    tester = DbAppTest()
+    tester.run()
diff --git a/unittest/app/DirAppTest.py b/unittest/app/DirAppTest.py
new file mode 100644 (file)
index 0000000..e9bdb32
--- /dev/null
@@ -0,0 +1,229 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+
+import shutil
+import os
+
+import app.BaseApp
+import app.DirApp
+import base.StringUtils
+
+DEBUG = True
+
+class DirAppTest(UnitTestCase):
+    def __init__(self):
+        UnitTestCase.__init__(self)
+        app.BaseApp.BaseApp.setUnderTest(True)
+        self._baseDir = self.tempDir('src', 'unittest.dir')
+        self._finish()
+        self._createConfig()
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def _createConfig(self):
+        self._configFile = self.tempFile('dirapp.conf', 'unittest.dir', 'dirboxx')
+        self._configDir = os.path.dirname(self._configFile)
+        self._logFile = self._configDir + os.sep + 'test.log'
+        base.StringUtils.toFile(self._configFile, '''# created by DirApp
+logger={}
+'''.format(self._logFile))
+
+    def _finish(self):
+        shutil.rmtree(self.tempDir('unittest.dir'))
+
+    def testInstall(self):
+        if DEBUG: return
+        app.DirApp.main(['-v3', f'--dir-unittest={self._configDir}', f'-c{self._configDir}',
+            'install', 'osboxx'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        fn = self._configDir + os.sep + 'dir.conf'
+        self.assertFileExists(fn)
+        self.assertFileContent('''# created by DirApp
+logfile=/var/log/local/dirboxx.log
+'''.format(), fn)
+
+    def testUninstall(self):
+        if DEBUG: return
+        base.FileHelper.clearDirectory(self._configDir)
+        fnApp = os.path.join(self._configDir, 'bin/dirboxx')
+        base.StringUtils.toFile(fnApp, 'application', ensureParent=True)
+        app.DirApp.main(['-v3', f'--dir-unittest={self._configDir}', f'-c{self._configDir}',
+            'uninstall', '--service=dirboxx'
+            ])
+        email = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, email._logger._errors)
+        self.assertFileNotExists(fnApp)
+
+    def testHelp(self):
+        if DEBUG: return
+        app.DirApp.main(['-v3',
+            'help', 'help'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual('''dirboxx <global-opts> <mode> [<options>]
+  Searching and modifying in text files.
+<mode>:
+  help [<pattern-mode> [<pattern-submode>]]
+    Prints a description of the application
+    <pattern-mode>
+      if given: each mode is listed if the pattern matches
+    <pattern-submode>:
+      if given: only submodes are listed if this pattern matches
+Examples:
+dirboxx help
+dirboxx help help sub
+''', application._resultText)
+
+    def testExtrema(self):
+        if DEBUG: return
+        base.FileHelper.createFileTree('''file1.txt|this is in file 123456|664|2020-01-22 02:44:32
+dir1/file2.txt|this is in file 1|664|2020-01-29 02:44:32
+dir1/file3.txt|this is in file 123456789|664|2020-01-23 02:44:32
+dir2/file4.txt|this is|123|2020-01-20 02:44:32
+file5.txt|this is|664|2020-01-25 02:44:32
+file6.txt||664|2020-01-23 02:44:32
+dir2/file7.txt|Wow!|664|2020-02-23 02:44:32
+dir1/file8.txt||664|2020-02-29 02:44:32
+''', self._baseDir)
+        app.DirApp.main(['-v3',
+            'extrema', 'all', '--count=3', '--min-length=1', '--file-type=f', self._baseDir
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual('''dir(s): 3 file(s): 8 / 82 Byte
+ignored: dir(s): 0 file(s): 0
+== the oldest files:
+2020.01.20 02:44:32       7 Byte /tmp/unittest.dir/src/dir2/file4.txt
+2020.01.22 02:44:32      22 Byte /tmp/unittest.dir/src/file1.txt
+2020.01.23 02:44:32       0 Byte /tmp/unittest.dir/src/file6.txt
+== the smallest files:
+      4 Byte 2020.02.23 02:44:32 /tmp/unittest.dir/src/dir2/file7.txt
+      7 Byte 2020.01.25 02:44:32 /tmp/unittest.dir/src/file5.txt
+      7 Byte 2020.01.20 02:44:32 /tmp/unittest.dir/src/dir2/file4.txt
+== the youngest files:
+2020.02.29 02:44:32       0 Byte /tmp/unittest.dir/src/dir1/file8.txt
+2020.02.23 02:44:32       4 Byte /tmp/unittest.dir/src/dir2/file7.txt
+2020.01.29 02:44:32      17 Byte /tmp/unittest.dir/src/dir1/file2.txt
+== the largest files:
+     25 Byte 2020.01.23 02:44:32 /tmp/unittest.dir/src/dir1/file3.txt
+     22 Byte 2020.01.22 02:44:32 /tmp/unittest.dir/src/file1.txt
+     17 Byte 2020.01.29 02:44:32 /tmp/unittest.dir/src/dir1/file2.txt
+''', '\n'.join(application._resultLines))
+
+    def testExtremaNoArg(self):
+        if DEBUG: return
+        baseDir = self.tempDir('noarg', 'extrema')
+        base.FileHelper.createFileTree('''file1.txt|this is in file 123456|664|2020-01-22 02:44:32
+''', baseDir)
+        os.chdir(baseDir)
+        app.DirApp.main(['-v3',
+            'extrema', 
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        current = '\n'.join(application._resultLines)
+        self.assertIsEqual('''dir(s): 1 file(s): 1 / 22 Byte
+ignored: dir(s): 0 file(s): 0
+== the oldest files:
+2020.01.22 02:44:32      22 Byte file1.txt
+== the smallest files:
+     22 Byte 2020.01.22 02:44:32 file1.txt
+== the youngest files:
+2020.01.22 02:44:32      22 Byte file1.txt
+== the largest files:
+     22 Byte 2020.01.22 02:44:32 file1.txt
+''', current)
+
+    def testList(self):
+        if DEBUG: return
+        baseDir = self.tempDir('noarg', 'list')
+        base.FileHelper.createFileTree('''dir1/|755|2020-02-29 04:24:32
+file1.txt|this is in file 123456|664|2020-01-22 02:44:32
+dir1/file2.dat|this is in file 123456xxxxxxxxx|664|2019-01-22 12:04:39
+''', baseDir)
+        os.chdir(baseDir)
+        app.DirApp.main(['-v3',
+            'list', 
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        current = '\n'.join(application._resultLines)
+        self.assertIsEqual('''2020.01.22 02:44:32      22 Byte file1.txt
+2019.01.22 12:04:39      31 Byte dir1/file2.dat
+2020.01.22 12:04:39      31 Byte dir1/file2.txt
+2020.01.22 12:04:39       3 Byte dir1/file3.txt
+dir(s): 2 file(s): 4 / 87 Byte
+ignored: dir(s): 0 file(s): 0
+''', current)
+
+    def testListExample(self):
+        if DEBUG: return
+        baseDir = self.tempDir('noarg', 'list')
+        base.FileHelper.createFileTree('''dir1/|755|2020-02-29 04:24:32
+file1.txt|1234|664|2020-01-01 02:44:32
+dir1/file2.txt|this is in file 123456xxxxxxxxx|664|2020-01-22 12:04:39
+dir1/file3.txt|123|664|2020-01-22 12:04:39
+''', baseDir)
+        os.chdir(baseDir)
+        app.DirApp.main(['-v3',
+            'list', '*.txt', '--dirs-excluded=.git', '--file-type=fl',
+            '--max-size=5', '--younger-than=2020.01.01-05:00:00'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        current = '\n'.join(application._resultLines)
+        self.assertIsEqual('''2020.01.22 12:04:39       3 Byte dir1/file3.txt
+dir(s): 2 file(s): 1 / 3 Byte
+ignored: dir(s): 0 file(s): 3
+''', current)
+
+    def testAdjust(self):
+        #if DEBUG: return
+        baseDir = self.tempDir('adjust', 'unittest.dir')
+        self.assertDirExists(baseDir)
+        base.FileHelper.createFileTree('''dir1/|755|2020-02-29 04:24:32
+dir1/file2.txt|this is in file 123456xxxxxxxxx|664|2020-01-22 12:04:39
+dir1/file3.jpg|123|664|2020-01-22 12:04:39
+dir1/s1/file4.txt|123|664|2020-01-22 12:06:39
+''', baseDir)
+        base.FileHelper.createFileTree('''dir2/file1.txt|1234|664|2020-02-01 02:44:32
+dir2/file2.txt|this is in file 123456xxxxxxxxx|664|2020-02-22 12:04:39
+dir2/file3.jpg|123|664|2020-02-22 12:04:39
+dir2/s1/file4.txt|123|664|2020-02-22 12:06:39
+''', baseDir)
+        os.chdir(baseDir)
+        app.DirApp.main(['-v4',
+            'adjust', os.path.join(baseDir, 'dir1'), os.path.join(baseDir, 'dir2'), '-p*.txt', '--pattern=*.txt', '-r', '--recursive'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertNotNone(os.stat(os.path.join(baseDir, 'dir2/file1.txt')))
+        trg = os.stat(os.path.join(baseDir, 'dir2/file2.txt')).st_mtime
+        src = os.stat(os.path.join(baseDir, 'dir1/file2.txt')).st_mtime
+        self.assertIsEqual(src, trg)
+        trg = os.stat(os.path.join(baseDir, 'dir2/file3.jpg')).st_mtime
+        src = os.stat(os.path.join(baseDir, 'dir1/file3.jpg')).st_mtime
+        self.assertFalse(src == trg)
+        trg = os.stat(os.path.join(baseDir, 'dir2/s1/file4.txt')).st_mtime
+        src = os.stat(os.path.join(baseDir, 'dir1/s1/file4.txt')).st_mtime
+        self.assertIsEqual(src, trg)
+        current = '\n'.join(application._resultLines)
+        self.assertIsEqual('''= /tmp/unittest.dir/adjust/dir2:
+file2.txt: 2020.02.22-12:04:39 -> 2020.01.22-12:04:39
+file3.jpg ignored
+= /tmp/unittest.dir/adjust/dir2/s1:
+file4.txt: 2020.02.22-12:06:39 -> 2020.01.22-12:06:39
+''', current)
+if __name__ == '__main__':
+    # import sys;sys.argv = ['', 'Test.testName']
+    tester = DirAppTest()
+    tester.run()
diff --git a/unittest/app/EMailAppTest.py b/unittest/app/EMailAppTest.py
new file mode 100644 (file)
index 0000000..8cb3281
--- /dev/null
@@ -0,0 +1,171 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+
+import shutil
+import os
+
+import app.BaseApp
+import app.EMailApp
+import base.StringUtils
+
+DEBUG = False
+
+def usage(msg=None):
+    base.StringUtils.avoidWarning(msg)
+    return 'test usage'
+
+class EMailAppTest(UnitTestCase):
+    def __init__(self):
+        UnitTestCase.__init__(self)
+        app.BaseApp.BaseApp.setUnderTest(True)
+        self._finish()
+        self._configFile = self.tempFile('email.conf', 'unittest', 'etc')
+        self._configDir = os.path.dirname(self._configFile)
+
+    def _finish(self):
+        shutil.rmtree(self.tempDir('unittest'))
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testSend(self):
+        if DEBUG: return
+        app.EMailApp.main(['-v3',
+            'send',
+            'test@hamatoma.de',
+            'testSend', '12345679 123456789 123456789'])
+        #    'testSend', 'unittest EMailTest.testSend()'])
+        #application = app.BaseApp.BaseApp.lastInstance()
+        #self.assertIsEqual(self._fn2, email.result())
+
+    def testInstall(self):
+        if DEBUG: return
+        app.EMailApp.main(['-v3', f'--dir-unittest={self._configDir}', f'-c{self._configDir}',
+            'install', 'emailboxx'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileContent('''[Unit]
+Description=Offers an email send service.
+After=syslog.target
+[Service]
+Type=simple
+User=emailboxx
+Group=emailboxx
+WorkingDirectory=/etc/snakeboxx
+#EnvironmentFile=-/etc/snakeboxx/emailboxx.env
+ExecStart=/usr/local/bin/emailboxx daemon emailboxx emailboxx
+ExecReload=/usr/local/bin/emailboxx reload emailboxx emailboxx
+SyslogIdentifier=emailboxx
+StandardOutput=syslog
+StandardError=syslog
+Restart=always
+RestartSec=3
+[Install]
+WantedBy=multi-user.target
+''', os.path.join(self._configDir, 'system/emailboxx.service'))
+        self.assertFileExists(os.path.join(self._configDir, 'bin/emailboxx'))
+        self.assertFileContent('''# created by EMailApp
+smtp.host=smtp.gmx.de
+smtp.port=587
+smtp.user=hm.neutral@gmx.de
+smtp.code=TopSecret
+smtp.with.tls=True
+sender=hm.neutral@gmx.de
+# jobs should be written to this dir:
+job.directory=/tmp/emailboxx/jobs
+# files older than this amount of seconds will be deleted (in job.directory):
+job.clean.interval=3600
+''', self._configDir + os.sep + 'email.conf')
+
+    def testUninstall(self):
+        if DEBUG: return
+        base.FileHelper.clearDirectory(self._configDir)
+        fnService = os.path.join(self._configDir, 'system/emailboxx.service')
+        fnApp = os.path.join(self._configDir, 'bin/emailboxx')
+        base.StringUtils.toFile(fnService, 'service...', ensureParent=True)
+        base.StringUtils.toFile(fnApp, 'app', ensureParent=True)
+        app.EMailApp.main(['-v3', f'--dir-unittest={self._configDir}', '-c{self._configDir',
+            'uninstall', '--service=emailboxx'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileNotExists(fnService)
+        self.assertFileNotExists(fnApp)
+
+    def testHelp(self):
+        if DEBUG: return
+        app.EMailApp.main(['-v3',
+            'help', 'help'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual('''emailboxx <global-opts> <mode> [<opts>]
+  Offers email services.
+<mode>:
+  help [<pattern-mode> [<pattern-submode>]]
+    Prints a description of the application
+    <pattern-mode>
+      if given: each mode is listed if the pattern matches
+    <pattern-submode>:
+      if given: only submodes are listed if this pattern matches
+Examples:
+emailboxx help
+emailboxx help help sub''', application._resultText)
+
+    def testReload(self):
+        if DEBUG: return
+        self._logger.log('@tester: /tmp/emailboxx must have rwx rights')
+        app.EMailApp.main(['-v4', '--log-file=',
+            'reload', 'emailboxx'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(1, application._logger._errors)
+        self.assertIsEqual('reload request was not processed', application._logger._firstErrors[0])
+        if os.path.exists('/tmp/reload.emailboxx.request'):
+            self.assertTrue(True)
+        else:
+            self.assertTrue(application._logger.contains('removing /tmp/emailboxx/reload.request'))
+
+    def testDaemon(self):
+        if DEBUG: return
+        self._logger.log('@tester: ensure rw permission for <temp>/emailboxx/jobs')
+        directory = self.tempDir('jobs', 'emailboxx')
+        base.JobController.JobController.writeJob('test', ['test@hamatoma.de'], directory, self._logger)
+        app.EMailApp.main(['-v3',
+            'daemon', 'emailboxx', 'emailboxx'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+
+    def testReloadRequest(self):
+        if DEBUG: return
+        self._logger.log('@precondition: ensure write permission on <tmp>/emailboxx/')
+        self._logger.log('expecting 1 trial with no success...')
+        app.EMailApp.main(['-v3',
+            'reload', 'emailboxx'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(1, application._logger._errors)
+        self.assertIsEqual('reload request was not processed', application._logger._firstErrors[0])
+
+    def testHandleReloadRequest(self):
+        if DEBUG: return
+        fn = self.tempFile('reload.request', 'emailboxx')
+        base.StringUtils.toFile(fn, '')
+        app.EMailApp.main(['-v3',
+            'daemon', 'emailboxx', 'emailboxx'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileNotExists(fn)
+
+if __name__ == '__main__':
+    # import sys;sys.argv = ['', 'Test.testName']
+    tester = EMailAppTest()
+    tester.run()
diff --git a/unittest/app/OperatingsSystemAppTest.py b/unittest/app/OperatingsSystemAppTest.py
new file mode 100644 (file)
index 0000000..d614930
--- /dev/null
@@ -0,0 +1,176 @@
+'''
+Created on 12.04.2020
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+
+import shutil
+import os
+
+import app.BaseApp
+import app.OperatingSystemApp
+import base.StringUtils
+
+DEBUG = False
+
+class OperatingSystemAppTest(UnitTestCase):
+    def __init__(self):
+        UnitTestCase.__init__(self)
+        app.BaseApp.BaseApp.setUnderTest(True)
+        self._finish()
+        self._createConfig()
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def _createConfig(self):
+        self._configFile = self.tempFile('satellite.conf', 'unittest.os', 'osboxx')
+        self._configDir = os.path.dirname(self._configFile)
+        self._logFile = os.path.join(self._configDir, 'test.log')
+        base.StringUtils.toFile(self._configFile, '''# created by OperatingSystemApp
+logger={}
+'''.format(self._logFile))
+
+    def _finish(self):
+        shutil.rmtree(self.tempDir('unittest.os'))
+
+    def testInstall(self):
+        if DEBUG: return
+        app.OperatingSystemApp.main(['-v3', f'--dir-unittest={self._configDir}', f'-c{self._configDir}',
+            'install', 'osboxx'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        fn = self._configDir + os.sep + 'operatingsystem.conf'
+        self.assertFileExists(fn)
+        self.assertFileContent('''# created by OperatingSystemApp
+logfile=/var/log/local/osboxx.log
+'''.format(), fn)
+
+    def testUninstall(self):
+        if DEBUG: return
+        base.FileHelper.clearDirectory(self._configDir)
+        fnApp = os.path.join(self._configDir, 'bin/osboxx')
+        base.StringUtils.toFile(fnApp, 'application', ensureParent=True)
+        app.OperatingSystemApp.main(['-v3', f'--dir-unittest={self._configDir}', f'-c{self._configDir}',
+            'uninstall', '--service=osboxx'
+            ])
+        email = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, email._logger._errors)
+        self.assertFileNotExists(fnApp)
+
+    def testHelp(self):
+        #if DEBUG: return
+        app.OperatingSystemApp.main(['-v3',
+            'help', 'help'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual('''osboxx <global-opts> <mode> [<opts>]
+  Offers service round about the operating system.
+<mode>:
+  help [<pattern-mode> [<pattern-submode>]]
+    Prints a description of the application
+    <pattern-mode>
+      if given: each mode is listed if the pattern matches
+    <pattern-submode>:
+      if given: only submodes are listed if this pattern matches
+  init <what>
+    Initializes a "sub system" defined as <what>
+Examples:
+osboxx help
+osboxx help help sub
+
+''', application._resultText)
+
+    def testTestAuthFile(self):
+        if DEBUG: return
+        fnPublic = '/tmp/public.keys'
+        base.StringUtils.toFile(fnPublic, '''ssh-rsa AAAAB3NIH...DnrEn09rg593stn/hm0blnUDBCr8AEZIj hm@caribou
+command="/usr/local/bin/rrsync /tmp",no-X11-forwarding ssh-rsa AABCEDON9999248X...TeLwGVjM1XTw== exttmp@dragon
+''')
+        home = self._configDir + '/home/bupsupply'
+        base.FileHelper.ensureDirectory(home)
+        fnAuth = home + '/.ssh/authorized_keys'
+        app.OperatingSystemApp.main(['-v3', f'--dir-unittest={self._configDir}',
+            'auth-keys', 'bupsupply'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        content = base.StringUtils.fromFile(fnAuth)
+        self.assertIsEqual('''ssh-rsa AAAAB3NIH...DnrEn09rg593stn/hm0blnUDBCr8AEZIj hm@caribou
+command="/usr/local/bin/rrsync /tmp",no-X11-forwarding ssh-rsa AABCEDON9999248X...TeLwGVjM1XTw== exttmp@dragon
+''', content)
+        fnPublic2 = '/tmp/public2.keys'
+        base.StringUtils.toFile(fnPublic2, '''ssh-rsa AAAAB3NIH...DnrEn09rg593stn/hm0blnUDBCr8AEZIj hm@caribou
+ssh-rsa ACXART9IH...DnrEn09rg593stn/hm0blnUDBCr8AEZIj jonny@thor
+command="/usr/local/bin/rrsync /tmp",no-X11-forwarding ssh-rsa AAAAB3NzaC1yc2EA...TeLwGVjM1XTw== exttmp@caribou
+command="/usr/local/bin/rrsync /tmp",no-X11-forwarding ssh-rsa AABCEDON9999248X...TeLwGVjM1XTw== exttmp@dragon
+''')
+        base.FileHelper.ensureDirectory(self._configDir + '/bupsupply')
+        app.OperatingSystemApp.main(['-v3', f'--dir-unittest={self._configDir}',
+            'auth-keys', 'bupsupply', r'--filter=\@caribou', fnPublic2
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        content = base.StringUtils.fromFile(fnAuth)
+        self.assertIsEqual('''ssh-rsa AAAAB3NIH...DnrEn09rg593stn/hm0blnUDBCr8AEZIj hm@caribou
+command="/usr/local/bin/rrsync /tmp",no-X11-forwarding ssh-rsa AABCEDON9999248X...TeLwGVjM1XTw== exttmp@dragon
+command="/usr/local/bin/rrsync /tmp",no-X11-forwarding ssh-rsa AAAAB3NzaC1yc2EA...TeLwGVjM1XTw== exttmp@caribou
+''', content)
+
+    def testTestInitEtc(self):
+        if DEBUG: return
+        baseDir = self.tempDir('linuxserver', 'unittest.os')
+        fnSysCtl = os.path.join(baseDir, 'etc/sysctl.conf')
+        base.StringUtils.toFile(fnSysCtl, '''# swappiness:
+# endOfFile''', ensureParent=True)
+        app.OperatingSystemApp.main(['-v4', f'--dir-unittest={baseDir}',
+            'init', 'etc'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileContent('''# swappiness:
+vm.swappiness = 20
+# endOfFile''', fnSysCtl)
+
+    def testTestInitDirs(self):
+        if DEBUG: return
+        baseDir = self.tempDir('linuxserver', 'unittest.os')
+        base.FileHelper.clearDirectory(baseDir)
+        app.OperatingSystemApp.main(['-v4', f'--dir-unittest={baseDir}',
+            'init', 'dirs'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertDirExists(os.path.join(baseDir, 'media/tmp'))
+        self.assertDirExists(os.path.join(baseDir, 'media/trg'))
+        self.assertDirExists(os.path.join(baseDir, 'media/src'))
+        self.assertDirExists(os.path.join(baseDir, 'log/local'))
+        self.assertDirExists(os.path.join(baseDir, 'cache/local'))
+
+    def testTestInitLinuxServer(self):
+        #if DEBUG: return
+        baseDir = self.tempDir('linuxserver', 'unittest.os')
+        base.FileHelper.clearDirectory(baseDir)
+        fnSysCtl = os.path.join(baseDir, 'etc/sysctl.conf')
+        base.StringUtils.toFile(fnSysCtl, '', ensureParent=True)
+        baseDir = self.tempDir('linuxserver', 'unittest.os')
+        app.OperatingSystemApp.main(['-v4', f'--dir-unittest={baseDir}',
+            'init', 'linuxserver'
+            ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertDirExists(os.path.join(baseDir, 'media/tmp'))
+        self.assertFileContent('''
+vm.swappiness = 20''', fnSysCtl)
+        self.assertFileContains('ExecStart=/usr/local/bin/bootboxx', os.path.join(baseDir, 'system/bootboxx.service'))
+        self.assertDirExists(os.path.join(baseDir, 'snakeboxx/boot.d'))
+        self.assertFileContains('#! /bin/bash', os.path.join(baseDir, 'bin/bootboxx'))
+
+if __name__ == '__main__':
+    # import sys;sys.argv = ['', 'Test.testName']
+    tester = OperatingSystemAppTest()
+    tester.run()
diff --git a/unittest/app/SatelliteAppTest.py b/unittest/app/SatelliteAppTest.py
new file mode 100644 (file)
index 0000000..6623545
--- /dev/null
@@ -0,0 +1,182 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+
+import shutil
+import os
+
+import app.BaseApp
+import app.SatelliteApp
+import base.StringUtils
+
+DEBUG = False
+
+
+class SatelliteAppTest(UnitTestCase):
+    def __init__(self):
+        UnitTestCase.__init__(self)
+        app.BaseApp.BaseApp.setUnderTest(True)
+        self._finish()
+        self._createConfig()
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def _createConfig(self):
+        self._configFile = self.tempFile(
+            'satellite.conf', 'unittest', 'satboxx')
+        base.StringUtils.toFile(self._configFile, '''# created by SatelliteApp
+wdfiller.active=true
+wdfiller.url=https://wiki.hamatoma.de
+# separator ' ': possible modes cloud filesystem stress
+wdfiller.kinds=cloud
+# interval between 2 send actions in seconds
+wdfiller.cloud.interval=2
+wdfiller.cloud.directory=/opt/clouds
+wdfiller.cloud.excluded=cloud.test|cloud.huber.de
+wdfiller.filesystem.interval=2
+wdfiller.filesystem.devices=sda6|
+wdfiller.stress.interval=2
+hostname=testhost
+''')
+        self._configDir = os.path.dirname(self._configFile)
+
+    def _finish(self):
+        shutil.rmtree(self.tempDir('unittest'))
+
+    def testInstall(self):
+        if DEBUG:
+            return
+        app.SatelliteApp.main(['-v3', f'--dir-unittest={self._configDir}', f'-c{self._configDir}',
+                               'install', 'satboxx'
+                               ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileContent('''[Unit]
+Description=satboxx: sends data via REST to servers.
+After=syslog.target
+[Service]
+Type=simple
+User=satboxx
+Group=satboxx
+WorkingDirectory=/etc/snakeboxx
+#EnvironmentFile=-/etc/snakeboxx/satboxx.env
+ExecStart=/usr/local/bin/satboxx daemon satboxx satboxx
+ExecReload=/usr/local/bin/satboxx reload satboxx satboxx
+SyslogIdentifier=satboxx
+StandardOutput=syslog
+StandardError=syslog
+Restart=always
+RestartSec=3
+[Install]
+WantedBy=multi-user.target
+''', os.path.join(self._configDir, 'system/satboxx.service'))
+        fn = os.path.join(self._configDir, 'satellite.conf')
+        self.assertFileExists(fn)
+        self.assertFileContent('''# created by SatelliteApp
+wdfiller.active=true
+wdfiller.url=https://wiki.hamatoma.de
+# separator ' ': possible modes cloud filesystem stress
+wdfiller.kinds=cloud
+# interval between 2 send actions in seconds
+wdfiller.cloud.interval=2
+wdfiller.cloud.directory=/opt/clouds
+wdfiller.cloud.excluded=cloud.test|cloud.huber.de
+wdfiller.filesystem.interval=2
+wdfiller.filesystem.devices=sda6|
+wdfiller.stress.interval=2
+hostname=testhost
+''', fn)
+
+    def testUninstall(self):
+        if DEBUG:
+            return
+        base.FileHelper.clearDirectory(self._configDir)
+        fnService = os.path.join(self._configDir, 'system/satboxx.service')
+        fnApp = os.path.join(self._configDir, 'bin/satboxx')
+        base.StringUtils.toFile(fnService, 'service...')
+        base.StringUtils.toFile(fnApp, 'application')
+        app.SatelliteApp.main(['-v3', f'--dir-unittest={self._configDir}', f'-c{self._configDir}',
+                               'uninstall', '--service=satboxx'
+                               ])
+        email = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, email._logger._errors)
+        self.assertFileNotExists(fnService)
+        self.assertFileNotExists(fnApp)
+
+    def testHelp(self):
+        if DEBUG:
+            return
+        app.SatelliteApp.main(['-v3',
+                               'help', 'help'
+                               ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual('''satboxx <global-opts> <mode> [<opts>]
+  Sends data via REST to some servers. Possible servers are WebDashFiller and Monitor.
+<mode>:
+  help [<pattern-mode> [<pattern-submode>]]
+    Prints a description of the application
+    <pattern-mode>
+      if given: each mode is listed if the pattern matches
+    <pattern-submode>:
+      if given: only submodes are listed if this pattern matches
+Examples:
+satboxx help
+satboxx help help sub''', application._resultText)
+
+    def testReload(self):
+        if DEBUG:
+            return
+        self._logger.log('=== expecting 1 error...')
+        app.SatelliteApp.main(['-v3',
+                               'reload', 'satboxx'
+                               ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(1, application._logger._errors)
+        self.assertTrue(
+            application._logger._firstErrors[0].find('not processed') > 0)
+
+    def testDaemon(self):
+        if DEBUG:
+            return
+        self._createConfig()
+        self._logger.log('=== expecting 4 errors...')
+        app.SatelliteApp.main(['-v3', f'--dir-unittest={self._configDir}', f'-c{self._configDir}',
+                               'daemon', 'satboxx', 'satboxx', '--count=1', '--interval=2'
+                               ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(4, application._logger._errors)
+        for item in application._logger._firstErrors:
+            self.assertMatches(r'status 405 \[Not Allowed\]', item)
+
+    def testReloadRequest(self):
+        if DEBUG:
+            return
+        app.SatelliteApp.main(['-v3',
+                               'reload', 'satboxx'
+                               ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(1, application._logger._errors)
+        self.assertIsEqual('reload request was not processed',
+                           application._logger._firstErrors[0])
+
+    def testTestFilesystem(self):
+        # if DEBUG: return
+        fn = self.tempFile('reload.request', 'satboxx')
+        base.StringUtils.toFile(fn, '')
+        app.SatelliteApp.main(['-v3',
+                               'test', 'fs', '2', '2'
+                               ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(6, application._logger._errors)
+
+
+if __name__ == '__main__':
+    # import sys;sys.argv = ['', 'Test.testName']
+    tester = SatelliteAppTest()
+    tester.run()
diff --git a/unittest/app/TextAppTest.py b/unittest/app/TextAppTest.py
new file mode 100644 (file)
index 0000000..0053756
--- /dev/null
@@ -0,0 +1,356 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+
+import shutil
+import os
+
+import app.BaseApp
+import app.TextApp
+import base.StringUtils
+
+DEBUG = False
+
+
+class TextAppTest(UnitTestCase):
+    def __init__(self):
+        UnitTestCase.__init__(self)
+        app.BaseApp.BaseApp.setUnderTest(True)
+        self._finish()
+        self._createConfig()
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def _createConfig(self):
+        self._configFile = self.tempFile(
+            'text.conf', 'unittest.txt')
+        self._configDir = os.path.dirname(self._configFile)
+        self._logFile = os.path.join(self._configDir, 'test.log')
+        base.StringUtils.toFile(self._configFile, f'''# created by TextApp
+logfile={self._logFile}
+''')
+
+    def _finish(self):
+        shutil.rmtree(self.tempDir('unittest.txt'))
+
+    def testInstall(self):
+        if DEBUG:
+            return
+        app.TextApp.main(['-v3', f'--log-file={self._logFile}', f'--dir-unittest={self._configDir}', f'-c{self._configDir}',
+                          'install', 'osboxx'
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        fn = os.path.join(self._configDir, 'text.conf')
+        self.assertFileExists(fn)
+        self.assertFileContent(f'''# created by TextApp
+logfile={self._logFile}
+''', fn)
+
+    def testUninstall(self):
+        if DEBUG:
+            return
+        base.FileHelper.clearDirectory(self._configDir)
+        fnApp = os.path.join(self._configDir, 'bin/textboxx')
+        base.StringUtils.toFile(fnApp, 'application', ensureParent=True)
+        app.TextApp.main(['-v3', f'--dir-unittest={self._configDir}', f'-c{self._configDir}',
+                          'uninstall', '--service=textboxx'
+                          ])
+        email = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, email._logger._errors)
+        self.assertFileNotExists(fnApp)
+
+    def testHelp(self):
+        if DEBUG:
+            return
+        app.TextApp.main(['-v3',
+                          'help', 'help'
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual('''textboxx <global-opts> <mode> [<opts>]
+  Searching and modifying in text files.
+<mode>:
+  help [<pattern-mode> [<pattern-submode>]]
+    Prints a description of the application
+    <pattern-mode>
+      if given: each mode is listed if the pattern matches
+    <pattern-submode>:
+      if given: only submodes are listed if this pattern matches
+Examples:
+textboxx help
+textboxx help help sub
+''', application._resultText)
+
+    def testExecRules(self):
+        if DEBUG:
+            return
+        fn = self.tempFile('exec.test', 'execrules')
+        base.StringUtils.toFile(fn, '''abc
+xy123
+def''')
+        app.TextApp.main(['-v3',
+                          'exec-rules', '>/2/', fn
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        state = application._processor._lastState
+        self.assertIsEqual(1, state._cursor._line)
+        self.assertIsEqual(3, state._cursor._col)
+
+    def testCsvDescribe(self):
+        if DEBUG:
+            return
+        app.TextApp.main(['-v3',
+                          'describe-csv'
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+
+    def testCsvExecute(self):
+        if DEBUG:
+            return
+        fn = self.tempFile('test.csv', 'csv')
+        base.StringUtils.toFile(fn, '''id,name
+1,jonny
+2,eve
+''')
+        app.TextApp.main(['-v3',
+                          'csv-execute', 'info:summary', fn
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+
+    def testExecRules2(self):
+        if DEBUG:
+            return
+        fn = self.tempFile('exec.test', 'execrules')
+        base.StringUtils.toFile(fn, '''abc
+xy123
+def''')
+        app.TextApp.main(['-v3',
+                          'exec-rules', '>/2/ </Y/i', fn
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        state = application._processor._lastState
+        self.assertIsEqual(1, state._cursor._line)
+        self.assertIsEqual(1, state._cursor._col)
+
+    def testGrep(self):
+        if DEBUG:
+            return
+        fn = self.tempFile('test1.txt', 'grep')
+        base.StringUtils.toFile(fn, '''abc
+xy123
+def''')
+        app.TextApp.main(['-v3',
+                          'grep', r'\d+', fn
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual(1, len(application._resultLines))
+        self.assertMatches('test1.txt:xy123', application._resultLines[0])
+
+    def testGrepFormat(self):
+        if DEBUG:
+            return
+        fn = self.tempFile('test1.txt', 'grep')
+        base.StringUtils.toFile(fn, '''abc
+xy123
+def''')
+        app.TextApp.main(['-v3',
+                          'grep', r'\d+', fn, '-f%%%T%# %0', '--format-line=%%%T%# %0', '-F== File %p %n%L', '--format-file=== File %p %n%L'
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual(2, len(application._resultLines))
+        self.assertMatches('== File \S+grep test1.txt\n',
+                           application._resultLines[0])
+        self.assertIsEqual('%\t2 123', application._resultLines[1])
+
+    def testGrepIgnoreInvertLineNumber(self):
+        if DEBUG:
+            return
+        fn = self.tempFile('test1.txt', 'grep')
+        base.StringUtils.toFile(fn, '''abc
+xy123
+BCD''')
+        app.TextApp.main(['-v3',
+                          'grep', r'B', fn, '-v', '--invert-match', '-i', '--ignore-case', '-n', '--line-number'
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual(1, len(application._resultLines))
+        self.assertMatches('test1.txt-2:xy123', application._resultLines[0])
+
+    def testGrepWordMatchOnly(self):
+        if DEBUG: return
+        fn = self.tempFile('test1.txt', 'grep')
+        base.StringUtils.toFile(fn, '''ab.c
+xy123
+B._C.D''')
+        app.TextApp.main(['-v3',
+                          'grep', r'\w\w', fn, '-o', '-w', '-n', '--word-regexpr', '--only-matching'
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual(2, len(application._resultLines))
+        self.assertMatches('test1.txt-1:ab', application._resultLines[0])
+        self.assertMatches('test1.txt-3:_C', application._resultLines[1])
+
+    def testGrepAboveContext(self):
+        if DEBUG: return
+        fn = self.tempFile('test1.txt', 'grep')
+        base.StringUtils.toFile(fn, 'a\nb\nc\nd\ne\nf')
+        app.TextApp.main(['-v3',
+                          'grep', r'[abe]', fn, '-A1', '--above-context=1', '--line-number'
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual(4, len(application._resultLines))
+        self.assertMatches('test1.txt-1:a', application._resultLines[0])
+        self.assertMatches('test1.txt-2:b', application._resultLines[1])
+        self.assertMatches('test1.txt-4:d', application._resultLines[2])
+        self.assertMatches('test1.txt-5:e', application._resultLines[3])
+
+    def testGrepBelowContext(self):
+        if DEBUG:
+            return
+        fn = self.tempFile('test1.txt', 'grep')
+        base.StringUtils.toFile(fn, 'a\nb\nc\nd\ne\nf\ng')
+        app.TextApp.main(['-v3',
+                          'grep', r'[abef]', fn, '-B1', '--below-context=1', '--line-number'
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual(6, len(application._resultLines))
+        self.assertMatches('test1.txt-1:a', application._resultLines[0])
+        self.assertMatches('test1.txt-2:b', application._resultLines[1])
+        self.assertMatches('test1.txt-3:c', application._resultLines[2])
+        self.assertMatches('test1.txt-5:e', application._resultLines[3])
+        self.assertMatches('test1.txt-6:f', application._resultLines[4])
+        self.assertMatches('test1.txt-7:g', application._resultLines[5])
+
+    def testGrepBelowAboveContext(self):
+        if DEBUG: return
+        fn = self.tempFile('test1.txt', 'grep')
+        base.StringUtils.toFile(fn, 'a\nb\nc\nd\ne\nf\ng')
+        app.TextApp.main(['-v3',
+                          'grep', r'[abf]', fn, '-C1', '--context=1', '--line-number'
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        if self.assertIsEqual(6, len(application._resultLines)):
+            self.assertMatches('test1.txt-1:a', application._resultLines[0])
+            self.assertMatches('test1.txt-2:b', application._resultLines[1])
+            self.assertMatches('test1.txt-3:c', application._resultLines[2])
+            self.assertMatches('test1.txt-5:e', application._resultLines[3])
+            self.assertMatches('test1.txt-6:f', application._resultLines[4])
+            self.assertMatches('test1.txt-7:g', application._resultLines[5])
+
+    def testGrepAboveBelowChars(self):
+        if DEBUG: return
+        fn = self.tempFile('test1.txt', 'grep')
+        base.StringUtils.toFile(fn, '''Version: 12.33
+1.1+2*4.99
+''')
+        app.TextApp.main(['-v3',
+                          'grep', r'\d+(\.\d+)?', fn, '-b1', '--below-chars=1', '--line-number', '-a2', '--above-chars=2', '-f%t'
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        if self.assertIsEqual(4, len(application._resultLines)):
+            self.assertIsEqual(': 12.33', application._resultLines[0])
+            self.assertIsEqual('1.1+', application._resultLines[1])
+            self.assertIsEqual('1+2*', application._resultLines[2])
+            self.assertIsEqual('2*4.99', application._resultLines[3])
+
+    def testReplace(self):
+        if DEBUG: return
+        fn = self.tempFile('test1.txt', 'replace')
+        base.StringUtils.toFile(fn, '''line 1
+version: 12.33
+bla bla
+''')
+        app.TextApp.main(['-v4',
+                          'replace', r'Version: (\d+\.\d+)', '\\x56%1', fn, '-i', '-b%', '-B.bak', '--backup=.bak', '-e', '--esc-active'
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileContent('''line 1
+V12.33
+bla bla
+''', fn)
+        self.assertFileExists(fn.replace('.txt', '.bak'))
+
+    def testReplaceNotRegexpr(self):
+        if DEBUG:
+            return
+        fn = self.tempFile('test2.txt', 'replace')
+        base.StringUtils.toFile(fn, r'(\d+)')
+        app.TextApp.main(['-v4',
+                          'replace', r'(\d+)', '...', fn, '-R', '--raw-string'
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileContent('...', fn)
+
+    def testReplaceString(self):
+        if DEBUG:
+            return
+        app.TextApp.main(['-v4',
+                          'string-replacement', r'(Dirs|Files): (\d+)', '%2 %1', 'dirs: 3 files: 12', '-b%', '--ignore-case'
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertIsEqual('3 dirs 12 files', application._resultText)
+
+    def testReplaceMany(self):
+        if DEBUG: return
+        fn = self.tempFile('test3.txt', 'replace')
+        base.StringUtils.toFile(fn, r'''abc
+a bcabc 11
+ abc 1 a
+''')
+        fnData = self.tempFile('data.txt', 'replace')
+        base.StringUtils.toFile(fnData, '''abc\tY
+1\tXX
+''')
+
+        app.TextApp.main(['-v4',
+                          'many-replacements', fnData, fn
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileContent('''Y
+a bcY XXXX
+ Y XX a
+''', fn)
+
+    def testInsertOrReplace(self):
+        if DEBUG: return
+        fn = self.tempFile('php.ini', 'replace')
+        base.StringUtils.toFile(fn, r'''#
+max_memory=2048M
+# blub
+''')
+        app.TextApp.main(['-v4',
+                          'insert-or-replace', r'^max_memory=', 'max_memory=1G', fn
+                          ])
+        application = app.BaseApp.BaseApp.lastInstance()
+        self.assertIsEqual(0, application._logger._errors)
+        self.assertFileContent('''#
+max_memory=1G
+# blub
+''', fn)
+
+if __name__ == '__main__':
+    # import sys;sys.argv = ['', 'Test.testName']
+    tester = TextAppTest()
+    tester.run()
diff --git a/unittest/base/BaseRandomTest.py b/unittest/base/BaseRandomTest.py
new file mode 100644 (file)
index 0000000..7876496
--- /dev/null
@@ -0,0 +1,43 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+import base.BaseRandom as rnd
+import datetime
+import random as rnd2
+
+DEBUG = False
+
+class BaserandomTest(UnitTestCase):
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testBasic(self):
+        random = rnd.BaseRandom()
+        random.setSeed(1, 2, 3)
+        self.assertIsEqual(1703684863, random.nextInt())
+        self.assertIsEqual(8, random.nextInt(-10, 10))
+
+    def testDistribution(self):
+        random = rnd.BaseRandom()
+        rnd.BaseRandom.testDistribution(random, 20000000, 20000)
+
+    def testRuntime(self):
+        random = rnd.BaseRandom()
+        start = datetime.datetime.now()
+        loops = 20000
+        for ix in range(loops):
+            rnd2.randint(0, 20000000)
+        end = datetime.datetime.now()
+        diff = end - start
+        seconds = diff.seconds + diff.microseconds * 1E-6
+        print(f'calls/microseconds: {loops/seconds*1E-6:.3}')
+
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = BaserandomTest()
+    tester.run()
diff --git a/unittest/base/CryptoEngineTest.py b/unittest/base/CryptoEngineTest.py
new file mode 100644 (file)
index 0000000..a2f33cc
--- /dev/null
@@ -0,0 +1,178 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+import base.CryptoEngine
+import base.MemoryLogger
+import os.path
+import base64
+
+DEBUG = False
+
+class CryptoEngineTest(UnitTestCase):
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testBasic(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        engine = base.CryptoEngine.CryptoEngine(logger)
+        #self.log('random: ' + engine.nextString(60, 'ascii95'))
+
+    def testEncode(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        engine = base.CryptoEngine.CryptoEngine(logger)
+        text = 'Hi_World'
+        encoded = engine.encode(text, 'word')
+        self.log('=' + encoded)
+        decoded = engine.decode(encoded, 'word')
+        self.assertIsEqual(text, decoded)
+        self.assertIsEqual(0, len(logger.getMessages()))
+
+    def testDecode(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        engine = base.CryptoEngine.CryptoEngine(logger)
+        for aSet in engine.getCharSetNames():
+            text = engine.nextString(20, aSet)
+            encoded = engine.encode(text, aSet)
+            decoded = engine.decode(encoded, aSet)
+            self.assertIsEqual(text, decoded)
+            self.assertIsEqual(0, len(logger.getMessages()))
+        for aSet in engine.getCharSetNames():
+            text = engine.getCharSet(aSet)
+            encoded = engine.encode(text, aSet)
+            decoded = engine.decode(encoded, aSet)
+            self.assertIsEqual(text, decoded)
+            self.assertIsEqual(0, len(logger.getMessages()))
+
+    def buildBinary(self, length):
+        logger = base.MemoryLogger.MemoryLogger()
+        engine = base.CryptoEngine.CryptoEngine(logger)
+        engine.setSeedRandomly()
+        rc = ''
+        for ix in range(length):
+            rc += chr(engine.nextInt(127, 1))
+        return rc
+
+    def testEncodeBinaryBase(self):
+        if DEBUG:
+            return
+        logger = base.MemoryLogger.MemoryLogger()
+        engine = base.CryptoEngine.CryptoEngine(logger)
+        text = '12'
+        encoded = engine.encodeBinary(text)
+        decoded = engine.decodeBinary(encoded)
+        self.assertIsEqual(text, decoded)
+        text = '123'
+        encoded = engine.encodeBinary(text)
+        decoded = engine.decodeBinary(encoded)
+        self.assertIsEqual(text, decoded)
+        text = '1235'
+        encoded = engine.encodeBinary(text)
+        decoded = engine.decodeBinary(encoded)
+        self.assertIsEqual(text, decoded)
+
+    def testEncodeBinary(self):
+        if DEBUG:
+            return
+        if self.assertTrue(False):
+            logger = base.MemoryLogger.MemoryLogger()
+            engine = base.CryptoEngine.CryptoEngine(logger)
+            for length in range(20, 256):
+                text = self.buildBinary(length)
+                print(length)
+                encoded = engine.encodeBinary(text)
+                try:
+                    decoded = engine.decodeBinary(encoded)
+                except Exception as exc:
+                    self.assertIsEqual('', str(exc))
+                    break
+                self.assertIsEqual(text, decoded)
+                self.assertIsEqual(0, len(logger.getMessages()))
+
+    def testTestCharSet(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        engine = base.CryptoEngine.CryptoEngine(logger)
+        for name in engine.getCharSetNames():
+            aSet = engine.getCharSet(name)
+            self.assertIsEqual(-1, engine.testCharSet(aSet, name))
+            aSet += "\t"
+            self.assertIsEqual(len(aSet) - 1, engine.testCharSet(aSet, name))
+
+    def testOneTimePad(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        engine = base.CryptoEngine.CryptoEngine(logger)
+        fn = '/tmp/otp_request.txt'
+        with open(fn, 'w') as fp:
+            for user in range(1, 100):
+                data = 'X{:04x}y'.format(user)
+                pad = engine.oneTimePad(user, data)
+                padData = engine.unpackOneTimePad(pad)
+                self.assertIsEqual(user, padData[1])
+                self.assertIsEqual(data, padData[2])
+                fp.write('{:d}\t{:s}\t{:s}'.format(user, data, pad))
+
+    def testExternOneTimePad(self):
+        if "x"+"y" == "xy":
+            return
+        logger = base.MemoryLogger.MemoryLogger()
+        engine = base.CryptoEngine.CryptoEngine(logger)
+        fn = '/tmp/otp.txt'
+        if self.assertTrue(os.path.exists(fn)):
+            with open(fn, 'r') as fp:
+                for line in fp:
+                    [user, data, pad] = line.rstrip().split("\t")
+                    padData = engine.unpackOneTimePad(pad, 3600)
+                    self.assertIsEqual(int(user), padData[1])
+                    self.assertIsEqual(data, padData[2])
+
+    def testSetSeedFromString(self):
+        if DEBUG:
+            return
+        logger = base.MemoryLogger.MemoryLogger()
+        engine = base.CryptoEngine.CryptoEngine(logger)
+        engine.setSeedFromString('')
+        self.assertIsEqual(231702727, engine.nextInt())
+        engine.setSeedFromString('x')
+        self.assertIsEqual(1157398379, engine.nextInt())
+        engine.setSeedFromString('blubber')
+        self.assertIsEqual(604275342, engine.nextInt())
+
+    def testSaveRestore(self):
+        if DEBUG:
+            return
+        logger = base.MemoryLogger.MemoryLogger()
+        engine = base.CryptoEngine.CryptoEngine(logger)
+        engine.setSeedFromString('')
+        seed1 = engine.saveSeed()
+        value1 = engine.nextString(10, 'ascii94')
+        engine.restoreSeed(seed1)
+        value2 = engine.nextString(10, 'ascii94')
+        self.assertIsEqual(value1, value2)
+
+    def testBase64(self):
+        if False and DEBUG:
+            return
+        buffer = b'x'
+        '''
+        for ix in range(256):
+            buffer = buffer[0:-1]
+            print("ix: " + str(ix))
+            encoded = base64.encodebytes(buffer)
+            decoded = base64.decodebytes(encoded)
+            if decoded != buffer:
+                print("Different: {:02x}".format(ix))
+            for ix2 in range(32, 128):
+                buffer += bytes(ix2)
+                encoded = base64.encodebytes(buffer)
+                decoded = base64.decodebytes(encoded)
+                if decoded != buffer:
+                    print("Different: {:02x}, {:02x}".format(ix, ix2))
+        '''
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = CryptoEngineTest()
+    tester.run()
diff --git a/unittest/base/CsvProcessorTest.py b/unittest/base/CsvProcessorTest.py
new file mode 100644 (file)
index 0000000..e60ed0c
--- /dev/null
@@ -0,0 +1,178 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+import base.StringUtils
+import base.CsvProcessor
+
+DEBUG = False
+
+class CsvProcessorTest(UnitTestCase):
+
+    def __init__(self):
+        UnitTestCase.__init__(self)
+        self._fn = self.tempFile('test.csv', 'csvprocessor')
+        self.buildData()
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def buildData(self):
+        base.StringUtils.toFile(self._fn, '''id,name,age
+1,Jonny,22
+2,Eve,22
+3,Eve,
+''')
+
+    def testBasics(self):
+        if DEBUG: return
+        processor = base.CsvProcessor.CsvProcessor(self._logger)
+        self.assertIsEqual(0, processor._logger._errors)
+
+    def testRead(self):
+        if DEBUG: return
+        processor = base.CsvProcessor.CsvProcessor(self._logger)
+        processor.readFile(self._fn)
+        self.assertIsEqual('id;name;age', ';'.join(processor._colNames))
+        self.assertIsEqual(3, len(processor._rows))
+        self.assertIsEqual(3, len(processor._rows[0]))
+        self.assertIsEqual(3, len(processor._rows[1]))
+        self.assertIsEqual('1', processor._rows[0][0])
+        self.assertIsEqual('Jonny', processor._rows[0][1])
+        self.assertIsEqual('22', processor._rows[0][2])
+        self.assertIsEqual(3, processor._maxCols)
+        self.assertIsEqual(3, processor._minCols)
+        self.assertIsEqual(2, processor._rowMinCols)
+        self.assertIsEqual(2, processor._rowMaxCols)
+
+    def testSetFilterIndexes(self):
+        if DEBUG: return
+        processor = base.CsvProcessor.CsvProcessor(self._logger)
+        processor.readFile(self._fn)
+        processor.setFilterIndexes([2, '0'])
+        self.assertIsEqual(2, len(processor._indexes))
+        self.assertIsEqual(0, processor._indexes[0])
+        self.assertIsEqual(2, processor._indexes[1])
+
+    def testSetFilterCols(self):
+        if DEBUG: return
+        processor = base.CsvProcessor.CsvProcessor(self._logger)
+        processor.readFile(self._fn)
+        processor.setFilterCols(['na*', 'a*'])
+        self.assertIsEqual(2, len(processor._indexes))
+        self.assertIsEqual(1, processor._indexes[0])
+        self.assertIsEqual(2, processor._indexes[1])
+
+    def testInfoSummary(self):
+        #if DEBUG: return
+        processor = base.CsvProcessor.CsvProcessor(self._logger)
+        processor.readFile(self._fn)
+        processor.setFilterIndexes([0, 1, 2])
+        processor.info('summary')
+        self._logger.contains('= su')
+        self._logger.contains("0 \"id\": <class 'int'>")
+        self._logger.contains("1 \"name\": <class 'str'>")
+        self._logger.contains("2 \"age\": <class 'int'> hasEmpty")
+
+    def testInfoUniqueMinMax(self):
+        if DEBUG: return
+        processor = base.CsvProcessor.CsvProcessor(self._logger)
+        processor.readFile(self._fn)
+        processor.setFilterIndexes([0, 1, 2])
+        processor.info('unique,min,max')
+        self._logger.contains('eve')
+
+    def testSetColumnOrder(self):
+        if DEBUG: return
+        processor = base.CsvProcessor.CsvProcessor(self._logger)
+        processor.readFile(self._fn)
+        processor.setColumnOrder(['a*', '*d', 'n*e'])
+        self.assertIsEqual(3, len(processor._columnOrder))
+        self.assertIsEqual(2, processor._columnOrder[0])
+        self.assertIsEqual(0, processor._columnOrder[1])
+        self.assertIsEqual(1, processor._columnOrder[2])
+
+    def testWriteFile(self):
+        if DEBUG: return
+        processor = base.CsvProcessor.CsvProcessor(self._logger)
+        processor.readFile(self._fn)
+        processor.setColumnOrder(['a*', '*d', 'n*e'])
+        processor.writeFile(self._fn, '.bak', ';')
+        self.assertFileContent('''id,name,age
+1,Jonny,22
+2,Eve,22
+3,Eve,
+''', self._fn.replace('.csv', '.bak'))
+        self.assertFileContent('''age;id;name
+22;1;Jonny
+22;2;Eve
+;3;Eve
+''', self._fn)
+
+    def testExecute(self):
+        if DEBUG: return
+        processor = base.CsvProcessor.CsvProcessor(self._logger)
+        processor.readFile(self._fn)
+        fn2 = self._fn.replace('.csv', '.bak')
+        self.ensureFileDoesNotExist(fn2)
+        processor.execute('''#test_of_execute:
+set-filter:id
+info:summary,max
+set-order:ag*,id,name
+write:,semicolon,.bak
+''')
+        self.assertFileContent('''age;id;name
+22;1;Jonny
+22;2;Eve
+;3;Eve
+''', self._fn)
+
+    def testAddColumn(self):
+        if DEBUG: return
+        processor = base.CsvProcessor.CsvProcessor(self._logger)
+        self.buildData()
+        processor.readFile(self._fn)
+        fn2 = self.tempFile('with_no.csv', 'csv')
+        processor.addColumn('No', 1, 33, 44)
+        processor.addColumn('No2', 99, 1, 2)
+        processor.writeFile(fn2)
+        self.assertFileContent('''id,No,name,age,No2
+1,33,Jonny,22,1
+2,44,Eve,22,2
+3,55,Eve,,3
+''', fn2)
+
+    def testExecuteInfoMultiple(self):
+        #if DEBUG: return
+        processor = base.CsvProcessor.CsvProcessor(self._logger)
+        processor.readFile(self._fn)
+        fn2 = self._fn.replace('.csv', '.bak')
+        self.ensureFileDoesNotExist(fn2)
+        processor.execute('''#test_of_execute:
+set-filter:age
+info:multiple
+''')
+        self._logger.contains('22: 2')
+
+    def testExecuteInfoMaxLength(self):
+        #if DEBUG: return
+        processor = base.CsvProcessor.CsvProcessor(self._logger)
+        processor.readFile(self._fn)
+        fn2 = self._fn.replace('.csv', '.bak')
+        self.ensureFileDoesNotExist(fn2)
+        processor.execute('''#test_of_execute:
+set-filter:name
+info:max-length
+set-filter:id
+info:max
+''')
+        self._logger.contains('22: 2')
+
+
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = CsvProcessorTest()
+    tester.run()
diff --git a/unittest/base/DirTraverserTest.py b/unittest/base/DirTraverserTest.py
new file mode 100644 (file)
index 0000000..38f47df
--- /dev/null
@@ -0,0 +1,202 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+import sys
+print(sys.path)
+from unittest.UnitTestCase import UnitTestCase
+
+import shutil
+import datetime
+import time
+import os.path
+
+import base.DirTraverser
+import base.StringUtils
+import base.FileHelper
+import base.MemoryLogger
+
+DEBUG = False
+
+class DirTraverserTest(UnitTestCase):
+    def __init__(self):
+        UnitTestCase.__init__(self)
+        self._base = self.tempDir('unittest.dtrav')
+        self._logger = base.MemoryLogger.MemoryLogger(3)
+        self._finish()
+        base.FileHelper.ensureDirectory(self._base)
+        base.FileHelper.createFileTree('''data1.txt|123
+data2.conf
+tree1/
+tree1/file1.conf|blaBla|660|2020-04-05 11:22:33
+tree2/
+tree2/file2.txt|Jonny
+tree2/file3.txt|charly7890|700
+tree1/file4.conf|Judith
+tree.txt/
+tree.txt/x.conf/
+tree.txt/x.conf/depth2.txt
+tree2/link.txt|->file3.txt
+link.x.conf|->tree2/x.conf
+''', self._base)
+
+    def _finish(self):
+        shutil.rmtree(self.tempDir('unittest.dtrav'))
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testAsListAll(self):
+        if DEBUG: return
+        traverser = base.DirTraverser.DirTraverser(self._base)
+        files = ' ' + ' '.join(traverser.asList()).replace(os.sep, '/') + ' '
+        self.assertIsEqual(files.count(' '), 13+1)
+        self.assertTrue(files.find('data1.txt') >= 0)
+        self.assertTrue(files.find('data2.conf') >= 0)
+        self.assertTrue(files.find(' tree1 ') >= 0)
+        self.assertTrue(files.find('tree1/file1.conf') >= 0)
+        self.assertTrue(files.find(' tree2 ') >= 0)
+        self.assertTrue(files.find('tree2/file2.txt') >= 0)
+        self.assertTrue(files.find('tree2/file3.txt') >= 0)
+        self.assertTrue(files.find('tree1/file4.conf') >= 0)
+        self.assertTrue(files.find(' tree.txt ') >= 0)
+        self.assertTrue(files.find(' tree.txt/x.conf ') >= 0)
+        self.assertTrue(files.find('tree.txt/x.conf/depth2.txt') >= 0)
+        self.assertTrue(files.find('tree2/link.txt') >= 0)
+        self.assertTrue(files.find('link.x.conf ') >= 0)
+
+    def testAsListFilePattern(self):
+        if DEBUG: return
+        traverser = base.DirTraverser.DirTraverser(self._base, filePattern="*.txt", dirPattern="*.txt")
+        files = ' ' + ' '.join(traverser.asList()).replace(os.sep, '/') + ' '
+        self.assertIsEqual(files.count(' '), 6+1)
+        self.assertTrue(files.find('data1.txt') >= 0)
+        self.assertFalse(files.find('data2.conf') >= 0)
+        self.assertFalse(files.find(' tree1 ') >= 0)
+        self.assertFalse(files.find('tree1/file1.conf') >= 0)
+        self.assertFalse(files.find(' tree2 ') >= 0)
+        self.assertTrue(files.find('tree2/file2.txt') >= 0)
+        self.assertTrue(files.find('tree2/file3.txt') >= 0)
+        self.assertFalse(files.find('tree1/file4.conf') >= 0)
+        self.assertTrue(files.find(' tree.txt ') >= 0)
+        self.assertFalse(files.find('tree.txt/x.conf ') >= 0)
+        self.assertTrue(files.find('tree2/link.txt') >= 0)
+        self.assertTrue(files.find('tree.txt/x.conf/depth2.txt') >= 0)
+
+    def testAsListExclude(self):
+        if DEBUG: return
+        traverser = base.DirTraverser.DirTraverser(self._base, reDirExcludes='.txt|2', reFileExcludes='.txt|2')
+        files = ' ' +  ' '.join(traverser.asList()).replace(os.sep, '/') + ' '
+        self.assertIsEqual(files.count(' '), 4+1)
+        self.assertTrue(files.find(' tree1 ') >= 0)
+        self.assertTrue(files.find('tree1/file1.conf') >= 0)
+        self.assertTrue(files.find('tree1/file4.conf') >= 0)
+        self.assertTrue(files.find('link.x.conf ') >= 0)
+
+    def testAsListFileFileTypeDir(self):
+        if DEBUG: return
+        traverser = base.DirTraverser.DirTraverser(self._base, fileType='d')
+        files = ' ' + ' '.join(traverser.asList()).replace(os.sep, '/') + ' '
+        self.assertIsEqual(files.count(' '), 4+1)
+        self.assertTrue(files.find(' tree1 ') >= 0)
+        self.assertTrue(files.find(' tree2 ') >= 0)
+        self.assertTrue(files.find(' tree.txt ') >= 0)
+        self.assertTrue(files.find('tree.txt/x.conf ') >= 0)
+
+    def testAsListFileTypeFile(self):
+        if DEBUG: return
+        traverser = base.DirTraverser.DirTraverser(self._base, fileType='f')
+        files = ' ' + ' '.join(traverser.asList()).replace(os.sep, '/') + ' '
+        self.assertIsEqual(files.count(' '), 7+1)
+        self.assertTrue(files.find('data1.txt') >= 0)
+        self.assertTrue(files.find('data2.conf') >= 0)
+        self.assertTrue(files.find('tree1/file1.conf') >= 0)
+        self.assertTrue(files.find('tree2/file2.txt') >= 0)
+        self.assertTrue(files.find('tree2/file3.txt') >= 0)
+        self.assertTrue(files.find('tree1/file4.conf') >= 0)
+        self.assertTrue(files.find('tree.txt/x.conf/depth2.txt') >= 0)
+
+    def testAsListFileTypeLink(self):
+        if DEBUG: return
+        traverser = base.DirTraverser.DirTraverser(self._base, fileType='l')
+        files = ' ' + ' '.join(traverser.asList()).replace(os.sep, '/') + ' '
+        self.assertIsEqual(files.count(' '), 2+1)
+        self.assertTrue(files.find('tree2/link.txt') >= 0)
+        self.assertTrue(files.find('link.x.conf ') >= 0)
+
+    def testAsListDepth(self):
+        if DEBUG: return
+        traverser = base.DirTraverser.DirTraverser(self._base, minDepth=1, maxDepth=1)
+        files = ' ' + ' '.join(traverser.asList()).replace(os.sep, '/') + ' '
+        self.assertIsEqual(files.count(' '), 6+1)
+        self.assertTrue(files.find('tree1/file1.conf') >= 0)
+        self.assertTrue(files.find('tree2/file2.txt') >= 0)
+        self.assertTrue(files.find('tree2/file3.txt') >= 0)
+        self.assertTrue(files.find('tree1/file4.conf') >= 0)
+        self.assertTrue(files.find('tree2/link.txt') >= 0)
+        self.assertTrue(files.find(' tree.txt/x.conf ') >= 0)
+
+    def testAsListMaxYields(self):
+        if DEBUG: return
+        traverser = base.DirTraverser.DirTraverser(self._base, maxYields=4)
+        files = ' ' +  ' '.join(traverser.asList()).replace(os.sep, '/') + ' '
+        self.assertIsEqual(files.count(' '), 4+1)
+        self.assertTrue(files.find('data1.txt') >= 0)
+        self.assertTrue(files.find('data2.conf') >= 0)
+        self.assertTrue(files.find(' tree1 ') >= 0)
+        self.assertTrue(files.find(' tree2 ') >= 0)
+
+    def testAsListYoungerThan(self):
+        #if DEBUG: return
+        date = datetime.datetime.strptime('2020-04-05 11:22:34', '%Y-%m-%d %H:%M:%S')
+        traverser = base.DirTraverser.DirTraverser(self._base, youngerThan=date)
+        files = ' ' +  ' '.join(traverser.asList()).replace(os.sep, '/') + ' '
+        self.assertIsEqual(files.count(' '), 12+1)
+        self.assertTrue(files.find('data1.txt') >= 0)
+        self.assertTrue(files.find('data2.conf') >= 0)
+        self.assertTrue(files.find(' tree1 ') >= 0)
+        self.assertFalse(files.find('tree1/file1.conf') >= 0)
+        self.assertTrue(files.find(' tree2 ') >= 0)
+        self.assertTrue(files.find('tree2/file2.txt') >= 0)
+        self.assertTrue(files.find('tree2/file3.txt') >= 0)
+        self.assertTrue(files.find('tree1/file4.conf') >= 0)
+        self.assertTrue(files.find(' tree.txt ') >= 0)
+        self.assertTrue(files.find(' tree.txt/x.conf ') >= 0)
+        self.assertTrue(files.find('tree.txt/x.conf/depth2.txt') >= 0)
+        self.assertTrue(files.find('tree2/link.txt') >= 0)
+        self.assertTrue(files.find('link.x.conf ') >= 0)
+
+    def testAsListOlderThan(self):
+        if DEBUG: return
+        date = datetime.datetime.strptime('2020-04-05 11:22:34', '%Y-%m-%d %H:%M:%S')
+        traverser = base.DirTraverser.DirTraverser(self._base)
+        files = ' ' +  ' '.join(traverser.asList()).replace(os.sep, '/') + ' '
+        self.assertTrue(files.find('tree1/file1.conf') >= 0)
+
+    def testAsListMinSize(self):
+        if DEBUG: return
+        traverser = base.DirTraverser.DirTraverser(self._base, minSize=6, fileType='f')
+        files = ' ' +  ' '.join(traverser.asList()).replace(os.sep, '/')
+        self.assertIsEqual(files.count(' '), 2+1)
+        self.assertTrue(files.find('tree2/file3.txt') >= 0)
+        self.assertTrue(files.find('tree1/file4.conf') >= 0)
+
+    def testAsListMaxSize(self):
+        if DEBUG: return
+        traverser = base.DirTraverser.DirTraverser(self._base, maxSize=5, fileType='f')
+        files = ' ' +  ' '.join(traverser.asList()).replace(os.sep, '/') + ' '
+        self.assertIsEqual(files.count(' '), 4+1)
+        self.assertTrue(files.find('data1.txt') >= 0)
+        self.assertTrue(files.find('data2.conf') >= 0)
+        self.assertTrue(files.find('tree2/file2.txt') >= 0)
+        self.assertFalse(files.find('tree2/file3.txt') >= 0)
+        self.assertFalse(files.find('tree1/file4.conf') >= 0)
+        self.assertTrue(files.find('tree.txt/x.conf/depth2.txt') >= 0)
+
+
+if __name__ == '__main__':
+    # import sys;sys.argv = ['', 'Test.testName']
+    tester = DirTraverserTest()
+    tester.run()
diff --git a/unittest/base/FileHelperTest.py b/unittest/base/FileHelperTest.py
new file mode 100644 (file)
index 0000000..920e09d
--- /dev/null
@@ -0,0 +1,622 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+import sys
+print(sys.path)
+from unittest.UnitTestCase import UnitTestCase
+
+import shutil
+import datetime
+import time
+import os.path
+
+import base.MemoryLogger
+import base.FileHelper
+import base.StringUtils
+
+DEBUG = False
+
+class FileHelperTest(UnitTestCase):
+    def __init__(self):
+        UnitTestCase.__init__(self)
+        self._logger = base.MemoryLogger.MemoryLogger(1)
+        base.FileHelper.setLogger(self._logger)
+        self._baseNode = 'unittest.fh'
+        self._baseDir = self.tempDir('filetool', self._baseNode)
+        self._fn = self.tempFile('first.txt', self._baseNode, 'filetool')
+        base.StringUtils.toFile(self._fn, "line 1\nline 2\nThis file is in line 3")
+
+    def _finish(self):
+        shutil.rmtree(self.tempDir(self._baseNode))
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def checkPart(self, container, full, path, node, fn, ext):
+        self.assertIsEqual(path, container['path'])
+        self.assertIsEqual(full, container['full'])
+        self.assertIsEqual(node, container['node'])
+        self.assertIsEqual(fn, container['fn'])
+        self.assertIsEqual(ext, container['ext'])
+        self.assertIsEqual(full, base.FileHelper.joinFilename(container))
+
+    def testSplitFilenameJoinFilename(self):
+        if DEBUG: return
+        container = base.FileHelper.splitFilename('/tmp/jonny.txt')
+        self.checkPart(container, '/tmp/jonny.txt', '/tmp/', 'jonny.txt', 'jonny', '.txt')
+        container = base.FileHelper.splitFilename('/home/authors/jonny.txt')
+        self.checkPart(container, '/home/authors/jonny.txt', '/home/authors/', 'jonny.txt', 'jonny', '.txt')
+        container = base.FileHelper.splitFilename('jonny.v2.txt')
+        self.checkPart(container, 'jonny.v2.txt', '', 'jonny.v2.txt', 'jonny.v2', '.txt')
+        container = base.FileHelper.splitFilename('.config')
+        self.checkPart(container, '.config', '', '.config', '.config', '')
+
+    def testTail(self):
+        if DEBUG: return
+        tail = base.FileHelper.tail(self._fn)
+        self.assertIsEqual(1, len(tail))
+        self.assertIsEqual('This file is in line 3', tail[0])
+
+    def testTailNumbers(self):
+        if DEBUG: return
+        tail = base.FileHelper.tail(self._fn, 2, True)
+        self.assertIsEqual(2, len(tail))
+        asString = ''.join(tail)
+        self.assertIsEqual('2: line 2\n3: This file is in line 3', asString)
+
+    def testDirectoryInfo(self):
+        if DEBUG: return
+        info = base.FileHelper.directoryInfo('/etc', r'.*\.conf')
+        self.assertTrue(info._fileCount > 0)
+        self.assertTrue(info._fileSizes > 0)
+        self.assertTrue(info._dirCount > 0)
+        self.assertTrue(info._ignoredDirs > 0)
+        # self.assertTrue(info._ignoredFiles > 0)
+        self.assertIsEqual(5, len(info._youngest))
+        self.assertIsEqual(5, len(info._largest))
+
+    def testPathToNode(self):
+        if DEBUG: return
+        self.assertIsEqual('x__abc_def_x.txt', base.FileHelper.pathToNode('x:/abc/def/x.txt'))
+
+    def testSetModified(self):
+        if DEBUG: return
+        fn = self.tempFile('test.txt', self._baseNode)
+        base.StringUtils.toFile(fn, 'Hi')
+        yesterday = int(time.time()) - 86400
+        januar = datetime.datetime(2016, 1, 2, 10, 22, 55)
+        januar2 = time.mktime(januar.timetuple())
+        base.FileHelper.setModified(fn, yesterday)
+        self.assertIsEqual(yesterday, int(os.path.getmtime(fn)))
+        base.FileHelper.setModified(fn, None, januar)
+        self.assertIsEqual(januar2, os.path.getmtime(fn))
+
+    def testDistinctPaths(self):
+        if DEBUG: return
+        tempDir = self.tempDir('disticts', self._baseNode)
+        self.clearDirectory(tempDir)
+        dir1 = tempDir + os.sep + 'abc'
+        dir2 = tempDir + os.sep + 'def'
+        dirLink = tempDir + os.sep + 'link'
+        dirChild = dir1 + os.sep + 'child'
+        dirChildInLink = dirLink + os.sep + 'childInLink'
+        dirLinkLink = dir1 + os.sep + 'linkLink'
+        self.ensureDirectory(dir1)
+        self.ensureDirectory(dir2)
+        self.ensureDirectory(dirChild)
+        os.symlink(dir2, dirLink)
+        os.symlink(dirChildInLink, dirLinkLink)
+        # base/abc
+        # base/abc/child
+        # base/abc/linkInLink -> def
+        # base/def
+        # base/link -> def
+        # base/def/childInLink
+        # base/def/linkLink -> def/childInLink
+        self.assertTrue(base.FileHelper.distinctPaths(dir1, dir2))
+        self.assertTrue(base.FileHelper.distinctPaths(dir2, dir1))
+        self.assertTrue(base.FileHelper.distinctPaths(dirChild, dir2))
+        self.assertTrue(base.FileHelper.distinctPaths(dir2, dirChild))
+        self.assertTrue(base.FileHelper.distinctPaths(dir1, dirLink))
+        self.assertTrue(base.FileHelper.distinctPaths(dirLink, dir1))
+
+        self.assertFalse(base.FileHelper.distinctPaths(dirChild, dir1))
+        self.assertFalse(base.FileHelper.distinctPaths(dir1, dirChild))
+        self.assertFalse(base.FileHelper.distinctPaths(dir2, dirLink))
+        self.assertFalse(base.FileHelper.distinctPaths(dirLink, dir2))
+        self.assertFalse(base.FileHelper.distinctPaths(dir2, dirChildInLink))
+        self.assertFalse(base.FileHelper.distinctPaths(dirChildInLink, dir2))
+        self.assertFalse(base.FileHelper.distinctPaths(dir2, dirLinkLink))
+        self.assertFalse(base.FileHelper.distinctPaths(dirLinkLink, dir2))
+        self.assertFalse(base.FileHelper.distinctPaths(dirChildInLink, dirLinkLink))
+        self.assertFalse(base.FileHelper.distinctPaths(dirLinkLink, dirChildInLink))
+        self.assertFalse(base.FileHelper.distinctPaths(dirLinkLink, dir2))
+        self.assertFalse(base.FileHelper.distinctPaths(dir2, dirLinkLink))
+
+    def testFromBytes(self):
+        if DEBUG: return
+        self.assertIsEqual('ascii', base.FileHelper.fromBytes(b'ascii'))
+        self.assertIsEqual('äöüÖÄÜß', base.FileHelper.fromBytes('äöüÖÄÜß'.encode('utf_8')))
+        line = 'äöüÖÄÜß'.encode('latin-1')
+        self.assertIsEqual('äöüÖÄÜß', base.FileHelper.fromBytes(line))
+        line = 'äöüÖÄÜß'.encode('cp850')
+        self.assertFalse('äöüÖÄÜß' == base.FileHelper.fromBytes(line))
+        line = b''
+        hexString = ''
+        for ix in range(1, 255):
+            hexString += "{:02x}".format(ix)
+        line = bytes.fromhex(hexString)
+        self.assertFalse('äöüÖÄÜß' == base.FileHelper.fromBytes(line))
+
+    def testEnsureDir(self):
+        if DEBUG: return
+        temp = self.tempDir('dir1', self._baseNode)
+        # already exists
+        base.FileHelper.ensureDirectory(temp)
+        self.assertTrue(os.path.isdir(temp))
+        # does not exist with logger
+        self.ensureFileDoesNotExist(temp)
+        base.FileHelper.ensureDirectory(temp)
+        self.assertTrue(os.path.isdir(temp))
+        # does not exist without logger
+        self.ensureFileDoesNotExist(temp)
+        base.FileHelper.ensureDirectory(temp)
+        self.assertTrue(os.path.isdir(temp))
+        # file exists, with logger
+        self.ensureFileDoesNotExist(temp)
+        base.StringUtils.toFile(temp, 'anything')
+        base.FileHelper.ensureDirectory(temp)
+        self.assertTrue(os.path.isdir(temp))
+        # file exists, with logger
+        self.ensureFileDoesNotExist(temp)
+        base.StringUtils.toFile(temp, 'anything')
+        base.FileHelper.ensureDirectory(temp)
+        self.assertTrue(os.path.isdir(temp))
+        # invalid link, with logger
+        self.ensureFileDoesNotExist(temp)
+        os.symlink('../does-not-exist', temp)
+        base.FileHelper.ensureDirectory(temp)
+        self.assertTrue(os.path.isdir(temp))
+        # invalid link, without logger
+        self.ensureFileDoesNotExist(temp)
+        os.symlink('../does-not-exist2', temp)
+        base.FileHelper.ensureDirectory(temp)
+        self.assertTrue(os.path.isdir(temp))
+
+    def testEnsureFileDoesNotExist(self):
+        if DEBUG: return
+        temp = self.tempDir('file', self._baseNode)
+        # directory exists
+        base.FileHelper.ensureFileDoesNotExist(temp)
+        self.assertFalse(os.path.exists(temp))
+        # does not exists:
+        base.FileHelper.ensureFileDoesNotExist(temp)
+        self.assertFalse(os.path.exists(temp))
+        base.FileHelper.ensureFileDoesNotExist(temp)
+        self.assertFalse(os.path.exists(temp))
+        # file exists
+        base.StringUtils.toFile(temp, 'x')
+        base.FileHelper.ensureFileDoesNotExist(temp)
+        self.assertFalse(os.path.exists(temp))
+        base.StringUtils.toFile(temp, 'x')
+        base.FileHelper.ensureFileDoesNotExist(temp)
+        self.assertFalse(os.path.exists(temp))
+        # invalid link exists
+        os.symlink('../invalid-link-source', temp)
+        base.FileHelper.ensureFileDoesNotExist(temp)
+        self.assertFalse(os.path.exists(temp))
+        os.symlink('../invalid-link-source', temp)
+        base.FileHelper.ensureFileDoesNotExist(temp)
+        self.assertFalse(os.path.exists(temp))
+
+    def testEnsureSymbolicLink(self):
+        if DEBUG: return
+        tempDir = self.tempDir('jail', self._baseNode)
+        target = tempDir + os.sep + 'parent'
+        # creating base dir and target:
+        self.ensureFileDoesNotExist(tempDir)
+        self.tempDir('sibling', self._baseNode)
+        base.FileHelper.ensureSymbolicLink('../../sibling', target)
+        self.assertTrue(os.path.islink(target))
+        self.assertIsEqual('../../sibling', os.readlink(target))
+        # changing link source:
+        self.tempDir('sibling2', self._baseNode)
+        base.FileHelper.ensureSymbolicLink('../../sibling2', target, True)
+        self.assertTrue(os.path.islink(target))
+        self.assertIsEqual('../../sibling2', os.readlink(target))
+        # removing existing target:
+        self.ensureFileDoesNotExist(target)
+        base.StringUtils.toFile(target, 'anything')
+        base.FileHelper.ensureSymbolicLink('../../sibling2', target, True)
+        self.assertTrue(os.path.islink(target))
+        self.assertIsEqual('../../sibling2', os.readlink(target))
+
+    def testEnsureSymbolicLinkErrors(self):
+        if DEBUG: return
+        tempDir = self.tempDir('jail', self._baseNode)
+        target = tempDir + os.sep + 'parent'
+        self.ensureDirectory(target)
+        # creating base dir and target:
+        self.ensureFileDoesNotExist(tempDir)
+        self.tempDir('sibling', self._baseNode)
+        self._logger.log('= expecting error is directory')
+        base.FileHelper.ensureSymbolicLink('../../sibling', target, True)
+        self.assertFalse(os.path.exists(target))
+        # must not create parent:
+        self._logger.log('= expecting error missing parent')
+        self.ensureFileDoesNotExist(os.path.dirname(target))
+        base.FileHelper.ensureSymbolicLink('../../sibling', target, False)
+        self.assertFalse(os.path.exists(target))
+
+    def testFileClass(self):
+        if DEBUG: return
+        baseDir = '/usr/share/snakeboxx/unittest/data/'
+        aClass, subClass = base.FileHelper.fileClass(baseDir + 'example.zip')
+        self.assertIsEqual('container', aClass)
+        self.assertIsEqual('zip', subClass)
+        aClass, subClass = base.FileHelper.fileClass(baseDir + 'example.tar')
+        self.assertIsEqual('container', aClass)
+        self.assertIsEqual('tar', subClass)
+        aClass, subClass = base.FileHelper.fileClass(baseDir + 'example.tgz')
+        self.assertIsEqual('container', aClass)
+        self.assertIsEqual('tar', subClass)
+        aClass, subClass = base.FileHelper.fileClass(baseDir + 'example.tbz')
+        self.assertIsEqual('container', aClass)
+        self.assertIsEqual('tar', subClass)
+        aClass, subClass = base.FileHelper.fileClass(baseDir + 'example.html')
+        self.assertIsEqual('text', aClass)
+        self.assertIsEqual('xml', subClass)
+        aClass, subClass = base.FileHelper.fileClass(baseDir + 'example.sh')
+        self.assertIsEqual('text', aClass)
+        self.assertIsEqual('shell', subClass)
+        aClass, subClass = base.FileHelper.fileClass(baseDir + 'example.txt')
+        self.assertIsEqual('text', aClass)
+        self.assertIsEqual('text', subClass)
+
+    def testEnsureFileExists(self):
+        if DEBUG: return
+        fn = self.tempFile('should.exist.txt', self._baseNode)
+        base.FileHelper.ensureFileDoesNotExist(fn)
+        base.FileHelper.ensureFileExists(fn, 'Hi world')
+        self.assertFileContains('Hi world', fn)
+
+    def testEnsureFileExistsError(self):
+        if DEBUG: return
+        fn = self.tempDir('blocking.dir', self._baseNode)
+        self._logger.log('expectig error: blocking dir')
+        base.FileHelper.ensureFileExists(fn, 'Hi')
+        self.assertDirExists(fn)
+
+    def testCopyDirectoryClear(self):
+        if DEBUG: return
+        source = self.tempDir('src', self._baseNode)
+        target = self.tempDir('trg', self._baseNode)
+        base.StringUtils.toFile(source + '/hi.txt', 'Hi')
+        os.symlink('hi.txt', source + os.sep + 'hi.link.txt')
+        source2 = self.tempDir('src/dir1', self._baseNode)
+        base.StringUtils.toFile(source2 + '/wow.txt', 'Wow')
+        if not os.path.exists(source2 + '/wow.symlink.txt'):
+            os.symlink('wow.txt', source2 + '/wow.symlink.txt')
+        base.FileHelper.copyDirectory(source, target, 'clear', 3)
+        self.assertFileContains('Hi', target + '/hi.txt')
+        self.assertDirExists(target + '/dir1')
+        self.assertFileContains('Wow', target + '/dir1/wow.txt')
+        trg2 = target + '/dir1/wow.symlink.txt'
+        self.assertFileContains('Wow', trg2)
+        self.assertTrue(os.path.islink(trg2))
+        fn = target + os.sep + 'hi.link.txt'
+        self.assertFileExists(fn)
+        self.assertIsEqual('hi.txt', os.readlink(fn))
+
+    def testCopyDirectoryUpdate(self):
+        if DEBUG: return
+        source = self.tempDir('src', self._baseNode)
+        target = self.tempDir('trg', self._baseNode)
+        base.StringUtils.toFile(source + '/hi.txt', 'Hi')
+        source2 = self.tempDir('src/dir1', self._baseNode)
+        base.StringUtils.toFile(source2 + '/wow.txt', 'Wow')
+        base.FileHelper.copyDirectory(source, target, 'clear', 3)
+        time.sleep(1)
+        base.StringUtils.toFile(source + '/hi.txt', 'hi!')
+        base.FileHelper.setModified(source + '/hi.txt', 365*24*3600)
+        base.StringUtils.toFile(source + '/hi2.txt', 'hi!')
+        base.StringUtils.toFile(source2 + '/wow2.txt', 'wow!')
+        base.FileHelper.setModified(source2 + '/wow2.txt', 365*24*3600)
+        base.FileHelper.copyDirectory(source, target, 'update')
+        self.assertFileContains('Hi', target + '/hi.txt')
+        self.assertFileContains('hi!', target + '/hi2.txt')
+        self.assertDirExists(target + '/dir1')
+        self.assertFileContains('Wow', target + '/dir1/wow.txt')
+        self.assertFileContains('wow!', target + '/dir1/wow2.txt')
+
+    def testUnpackTgz(self):
+        if DEBUG: return
+        target = self.tempDir(self._baseNode)
+        fn = target + os.sep + 'dummy'
+        base.StringUtils.toFile(fn, '')
+        base.FileHelper.unpack('/usr/share/snakeboxx/unittest/data/etc.work.tgz', target, True)
+        self.assertFileNotExists(fn)
+        self.assertFileExists(target + '/etc/passwd')
+        self.assertFileExists(target + '/etc/nginx/sites-available/default')
+
+    def testUnpackZip(self):
+        if DEBUG: return
+        target = self.tempDir('archive', self._baseNode)
+        base.FileHelper.unpack('/usr/share/snakeboxx/unittest/data/example.zip', target, True)
+        self.assertFileExists(target + '/All.sh')
+
+    def testTempFile(self):
+        if DEBUG: return
+        fn = base.FileHelper.tempFile('test.txt', 'unittest.2')
+        parent = os.path.dirname(fn)
+        self.assertIsEqual('test.txt', os.path.basename(fn))
+        self.assertIsEqual('unittest.2', os.path.basename(parent))
+        self.assertFileExists(parent)
+        self.ensureFileDoesNotExist(parent)
+
+    def testCreateTree(self):
+        if DEBUG: return
+        base.FileHelper.ensureDirectory(self._baseDir)
+        base.FileHelper.createFileTree('''tree1/
+tree1/file1|blaBla|660|2020-04-05 11:22:33
+tree2/|744|2020-04-06 12:23:34
+tree2/file2
+tree2/file3|1234|700
+tree1/file4
+link|->tree1
+''', self._baseDir)
+        dirName = self._baseDir + os.sep + 'tree1'
+        self.assertDirExists(dirName)
+        fn = dirName + os.sep + 'file1'
+        self.assertFileExists(fn)
+        statInfo = os.stat(fn)
+        self.assertNotNone(statInfo)
+        self.assertIsEqual('blaBla', base.StringUtils.fromFile(fn))
+        self.assertIsEqual(0o660, statInfo.st_mode % 0o1000)
+        current = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(statInfo.st_mtime))
+        self.assertIsEqual('2020-04-05 11:22:33', current)
+        self.assertFileExists(dirName + os.sep + 'file4')
+        dirName = self._baseDir + os.sep + 'tree2'
+        self.assertDirExists(dirName)
+        statInfo = os.lstat(dirName)
+        self.assertIsEqual(0o744, statInfo.st_mode % 0o1000)
+        current = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(statInfo.st_mtime))
+        self._logger.log('== time test for dirs deactivated')
+        #self.assertIsEqual('2020-04-06 12:23:34', current)
+        self.assertFileExists(dirName + os.sep + 'file2')
+        fn = dirName + os.sep + 'file3'
+        self.assertFileExists(dirName + os.sep + 'file3')
+        statInfo = os.stat(fn)
+        self.assertNotNone(statInfo)
+        self.assertIsEqual(0o700, statInfo.st_mode % 0o1000)
+        self.assertIsEqual('1234', base.StringUtils.fromFile(fn))
+        fn = self._baseDir + os.sep + 'link'
+        self.assertFileExists(fn)
+        self.assertTrue(os.path.islink(fn))
+        self.assertIsEqual('tree1', os.readlink(fn))
+
+    def testCopyByRules(self):
+        if DEBUG: return
+        base.FileHelper.ensureDirectory(self._baseDir)
+        base.FileHelper.createFileTree('''skeleton/
+skeleton/.list|app
+skeleton/app/
+skeleton/app/test/
+skeleton/app/.gitignore|test/
+skeleton/app/common/
+skeleton/app/common/sql/
+skeleton/app/common/sql/common.sql|select * from x;
+skeleton/app/users/
+skeleton/app/roles/
+skeleton/public/
+skeleton/public/index.php|<?php
+skeleton/public/js/
+skeleton/public/js/file1.js|.name { width:3 }
+skeleton/public/js/file2.js|.name { width:4 }
+skeleton/public/js/global.js|->file1.js
+''', self._baseDir)
+        rules = '''
+# symlinks+except
+app/*:*:symlink,dirsonly,except test
+# single dir in base dir
+.list:*
+# single dir
+public:*
+# single file with replacement
+public/index.php:*:replace /php/php>/
+# dirtree
+public/js:*:recursive
+:tmp/down
+'''.split('\n')
+        baseSource = self._baseDir + os.sep + 'skeleton'
+        baseTarget = self._baseDir + os.sep + 'project'
+        self.ensureFileDoesNotExist(baseTarget)
+        base.FileHelper.copyByRules(rules, baseSource, baseTarget)
+        self.assertFileContent('app', baseTarget + '/.list')
+        self.assertDirExists(baseTarget + '/app')
+        self.assertFileNotExists(baseTarget + '/app/test')
+        self.assertFileNotExists(baseTarget + '/app/.gitignore')
+        self.assertFileExists(baseTarget + '/app/common/sql/common.sql')
+        self.assertFileContent('select * from x;', baseTarget + '/app/common/sql/common.sql')
+        self.assertFileExists(baseTarget + '/app/users')
+        self.assertFileExists(baseTarget + '/app/roles')
+        self.assertFileContent('<?php>', baseTarget + '/public/index.php')
+        self.assertDirExists(baseTarget + '/public/js')
+        self.assertFileContent('.name { width:3 }', baseTarget + '/public/js/file1.js')
+        self.assertFileContent('.name { width:4 }', baseTarget + '/public/js/file2.js')
+        self.assertFileContent('.name { width:3 }', baseTarget + '/public/js/global.js')
+        self.assertDirExists(baseTarget + '/tmp/down')
+
+    def testEndOfLinkChain(self):
+        if DEBUG: return
+        end = self._baseDir + os.sep + 'end.txt'
+        base.StringUtils.toFile(end, 'endOfLink')
+        link1 = self._baseDir + os.sep + 'link1'
+        base.FileHelper.ensureFileDoesNotExist(link1)
+        os.symlink('link2', link1)
+        link2 = self._baseDir + os.sep + 'link2'
+        base.FileHelper.ensureFileDoesNotExist(link2)
+        os.symlink('end.txt', link2)
+        self.assertIsEqual(end, base.FileHelper.endOfLinkChain(link1))
+        base.FileHelper.ensureFileDoesNotExist(end)
+        self.assertNone(base.FileHelper.endOfLinkChain(link1))
+
+    def testDeepRename(self):
+        if DEBUG: return
+        first = self._baseDir + os.sep + 'first.txt'
+        base.StringUtils.toFile(first, 'first')
+        second = self._baseDir + os.sep + 'second.txt'
+        base.FileHelper.ensureFileDoesNotExist(second)
+        self.assertTrue(base.FileHelper.deepRename(first, 'second.txt'))
+        self.assertFileNotExists(first)
+        self.assertFileContent('first', second)
+
+        third = self._baseDir + os.sep + 'third.txt'
+        base.StringUtils.toFile(third, 'third')
+        self.assertTrue(base.FileHelper.deepRename(second, third, deleteExisting=True))
+        self.assertFileNotExists(second)
+        self.assertFileContent('first', third)
+
+    def testDeepRenameLink(self):
+        if DEBUG: return
+        first = self._baseDir + os.sep + 'first.txt'
+        base.StringUtils.toFile(first, 'first')
+        second = self._baseDir + os.sep + 'second.txt'
+        base.StringUtils.toFile(second, '2nd')
+        base.FileHelper.ensureFileDoesNotExist(second)
+        link1 = self._baseDir + os.sep + 'link1'
+        base.FileHelper.ensureFileDoesNotExist(link1)
+        os.symlink('link2', link1)
+        link2 = self._baseDir + os.sep + 'link2'
+        base.FileHelper.ensureFileDoesNotExist(link2)
+        os.symlink('first.txt', link2)
+        self.assertTrue(base.FileHelper.deepRename(link2, 'second.txt', deleteExisting=True))
+        self.assertFileNotExists(first)
+        self.assertFileContent('first', second)
+
+    def testDeepRenameLink2(self):
+        if DEBUG: return
+        first = self.tempFile('first.txt', 'renamedir')
+        base.StringUtils.toFile(first, 'first')
+        second = self.tempFile('second.txt', 'renamedir')
+        base.StringUtils.toFile(second, '2nd')
+        base.FileHelper.ensureFileDoesNotExist(second)
+        link1 = self._baseDir + os.sep + 'link1'
+        base.FileHelper.ensureFileDoesNotExist(link1)
+        os.symlink('link2', link1)
+        link2 = self._baseDir + os.sep + 'link2'
+        base.FileHelper.ensureFileDoesNotExist(link2)
+        os.symlink(first, link2)
+        self.assertTrue(base.FileHelper.deepRename(link2, 'second.txt', deleteExisting=True))
+        self.assertFileNotExists(first)
+        self.assertFileContent('first', second)
+
+    def testDeepRenameError(self):
+        if DEBUG: return
+        self._logger.clear()
+        self.assertFalse(base.FileHelper.deepRename('not#existising#file', 'realy#not#existising#file'))
+        self.assertTrue(self._logger.contains('old name does not exist', errorsToo=True))
+
+        self._logger.clear()
+        first = self.tempFile('first.txt', 'renamedir')
+        base.StringUtils.toFile(first, '')
+        link1 = self._baseDir + os.sep + 'link1'
+        base.FileHelper.ensureFileDoesNotExist(link1)
+        os.symlink(first, link1)
+        self.assertFalse(base.FileHelper.deepRename(link1, 'first.txt', deleteExisting=True))
+        self.assertTrue(self._logger.contains('link target has the same name', errorsToo=True))
+
+        self._logger.clear()
+        second = self.tempFile('second.txt', 'renamedir')
+        base.StringUtils.toFile(second, '')
+        self.assertFalse(base.FileHelper.deepRename(first, 'second.txt', deleteExisting=False))
+        self.assertTrue(self._logger.contains('new name exists', errorsToo=True))
+
+        self._logger.clear()
+        base.FileHelper.setUnitTestMode('deepRename-no-unlink')
+        self.assertFalse(base.FileHelper.deepRename(first, 'second.txt', deleteExisting=True))
+        self.assertTrue(self._logger.contains('cannot remove new name', errorsToo=True))
+        base.FileHelper.setUnitTestMode(None)
+
+    def testMoveFileRename(self):
+        if DEBUG: return
+        first = self.tempFile('first.txt', 'move')
+        second = self.tempFile('second.txt', 'move', 'trg')
+        base.StringUtils.toFile(first, '')
+        base.FileHelper.moveFile(first, second)
+        self.assertFileExists(second)
+        self.assertFileNotExists(first)
+        
+    def testMoveFileCopy(self):
+        if DEBUG: return
+        srcDir = '/opt/tmp'
+        if not os.path.exists(srcDir):
+            self._logger.log(f'>>> missing {srcDir}: cannot do the unit test')
+        else:
+            first = srcDir + os.sep + 'first'
+            second = self.tempFile('second.txt', 'move', 'trg')
+            base.StringUtils.toFile(first, '')
+            base.FileHelper.moveFile(first, second)
+            self.assertFileExists(second)
+            self.assertFileNotExists(first)
+
+    def testReplaceExtension(self):
+        if DEBUG: return
+        self.assertIsEqual('/abc/def.abc', base.FileHelper.replaceExtension('/abc/def.txt', '.abc'))
+        self.assertIsEqual('/abc/.def.abc', base.FileHelper.replaceExtension('/abc/.def', '.abc'))
+
+    def testMountPointOf(self):
+        #if DEBUG: return
+        mounts = self.tempFile('proc_mounts', 'unittest.files')
+        base.StringUtils.toFile(mounts, '''sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
+proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
+udev /dev devtmpfs rw,nosuid,relatime,size=15347716k,nr_inodes=3836929,mode=755 0 0
+devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
+tmpfs /run tmpfs rw,nosuid,noexec,relatime,size=3082092k,mode=755 0 0
+/dev/nvme0n1p7 / btrfs rw,relatime,ssd,space_cache,subvolid=5,subvol=/ 0 0
+securityfs /sys/kernel/security securityfs rw,nosuid,nodev,noexec,relatime 0 0
+tmpfs /sys/fs/cgroup tmpfs ro,nosuid,nodev,noexec,mode=755 0 0
+cgroup2 /sys/fs/cgroup/unified cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate 0 0
+cgroup /sys/fs/cgroup/systemd cgroup rw,nosuid,nodev,noexec,relatime,xattr,name=systemd 0 0
+pstore /sys/fs/pstore pstore rw,nosuid,nodev,noexec,relatime 0 0
+efivarfs /sys/firmware/efi/efivars efivarfs rw,nosuid,nodev,noexec,relatime 0 0
+none /sys/fs/bpf bpf rw,nosuid,nodev,noexec,relatime,mode=700 0 0
+cgroup /sys/fs/cgroup/devices cgroup rw,nosuid,nodev,noexec,relatime,devices 0 0
+systemd-1 /proc/sys/fs/binfmt_misc autofs rw,relatime,fd=40,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=1421 0 0
+hugetlbfs /dev/hugepages hugetlbfs rw,relatime,pagesize=2M 0 0
+mqueue /dev/mqueue mqueue rw,relatime 0 0
+debugfs /sys/kernel/debug debugfs rw,relatime 0 0
+sunrpc /run/rpc_pipefs rpc_pipefs rw,relatime 0 0
+nfsd /proc/fs/nfsd nfsd rw,relatime 0 0
+/dev/nvme0n1p5 /home btrfs rw,relatime,compress=zlib:3,ssd,space_cache,autodefrag,subvolid=256,subvol=/home 0 0
+/dev/nvme0n1p5 /opt btrfs rw,relatime,compress=zlib:3,ssd,space_cache,autodefrag,subvolid=257,subvol=/opt 0 0
+tmpfs /run/user/1000 tmpfs rw,nosuid,nodev,relatime,size=3082088k,mode=700,uid=1000,gid=1000 0 0
+/dev/sda5 /media/space-nocow ext4 rw,relatime 0 0
+''')
+        mount, fsType = base.FileHelper.mountPointOf('/home/jonny/data', mounts)
+        self.assertIsEqual('/home', mount)
+        self.assertIsEqual('btrfs', fsType)
+        mount, fsType = base.FileHelper.mountPointOf('/var/lib/mysql', mounts)
+        self.assertIsEqual('/', mount)
+        self.assertIsEqual('btrfs', fsType)
+        mount, fsType = base.FileHelper.mountPointOf('/media/space-nocow', mounts)
+        self.assertIsEqual('/media/space-nocow', mount)
+        self.assertIsEqual('ext4', fsType)
+
+    def testExtendedAttributesOf(self):
+        if DEBUG: return
+        fn = self.tempFile('attributes.data', 'unittest.files')
+        base.StringUtils.toFile(fn, '')
+        base.FileHelper.changeExtendedAttributes(fn, 'cA')
+        self.assertIsEqual('Ac', base.FileHelper.extendedAttributesOf(fn))
+        base.FileHelper.changeExtendedAttributes(fn, toDelete='c')
+        self.assertIsEqual('A', base.FileHelper.extendedAttributesOf(fn))
+
+
+if __name__ == '__main__':
+    sys.argv = ['', 'Test.testName']
+    tester = FileHelperTest()
+    tester.run()
diff --git a/unittest/base/JavaConfigTest.py b/unittest/base/JavaConfigTest.py
new file mode 100644 (file)
index 0000000..333af0a
--- /dev/null
@@ -0,0 +1,74 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+import os
+from unittest.UnitTestCase import UnitTestCase
+import base.JavaConfig
+import base.StringUtils
+import base.MemoryLogger
+
+DEBUG = False
+
+class JavaConfigTest(UnitTestCase):
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testBasic(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        fn = self.tempFile('javaconf.conf')
+        base.StringUtils.toFile(fn, '# comment\nabc.def=/dev\n\t\n\tFile = /tmp/x')
+        config = base.JavaConfig.JavaConfig(fn, logger)
+        self.assertIsEqual('/dev', config.getString('abc.def'))
+        self.assertIsEqual('/tmp/x', config.getString('File'))
+        self.assertNone(config.getString('file'))
+        self.assertNone(config.getString('unknown'))
+        os.unlink(fn)
+
+    def testSyntaxError(self):
+        fn = self.tempFile('error.conf')
+        base.StringUtils.toFile(fn, '# comment\nabc.def:=/dev\n\t\n\tFile')
+        logger = base.MemoryLogger.MemoryLogger()
+        base.JavaConfig.JavaConfig(fn, logger)
+        self.assertTrue(logger.contains('error.conf line 2: unexpected syntax [expected: <var>=<value>]: abc.def:=/dev', True))
+        self.assertTrue(logger.contains('error.conf line 4: unexpected syntax [expected: <var>=<value>]: File', True))
+
+    def testIntVar(self):
+        fn = self.tempFile('javaconf.conf')
+        base.StringUtils.toFile(fn, '# comment\nnumber=123\nWrong = zwo')
+        logger = base.MemoryLogger.MemoryLogger()
+        config = base.JavaConfig.JavaConfig(fn, logger)
+        self.assertIsEqual(123, config.getInt('number'))
+        self.assertIsEqual(456, config.getInt('unknown', 456))
+        self.assertIsEqual(111, config.getInt('Wrong', 111))
+        self.assertTrue(logger.contains('javaconf.conf: variable Wrong is not an integer: zwo', True))
+        os.unlink(fn)
+
+    def testGetKeys(self):
+        fn = self.tempFile('javaconf.conf')
+        base.StringUtils.toFile(fn, '# comment\nnumber=123\nWrong = zwo')
+        logger = base.MemoryLogger.MemoryLogger()
+        config = base.JavaConfig.JavaConfig(fn, logger)
+        keys = config.getKeys()
+        self.assertIsEqual(2, len(keys))
+        self.assertIsEqual('Wrong', keys[0])
+        self.assertIsEqual('number', keys[1])
+        os.unlink(fn)
+
+    def testGetKeysRegExpr(self):
+        fn = self.tempFile('javaconf.conf')
+        base.StringUtils.toFile(fn, '# comment\nnumber=123\nWrong = zwo')
+        logger = base.MemoryLogger.MemoryLogger()
+        config = base.JavaConfig.JavaConfig(fn, logger)
+        keys = config.getKeys(r'number|int')
+        self.assertIsEqual(1, len(keys))
+        self.assertIsEqual('number', keys[0])
+        os.unlink(fn)
+
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = JavaConfigTest()
+    tester.run()
diff --git a/unittest/base/JobControllerTest.py b/unittest/base/JobControllerTest.py
new file mode 100644 (file)
index 0000000..a603332
--- /dev/null
@@ -0,0 +1,57 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+import os
+import time
+
+from unittest.UnitTestCase import UnitTestCase
+import base.MemoryLogger
+import base.JobController
+import base.StringUtils
+
+DEBUG = False
+
+class TestJobController (base.JobController.JobController):
+    def __init__(self, logger):
+        base.JobController.JobController.__init__(self, '/tmp/unittest/jobcontrol', 1, logger)
+        self._done = {}
+
+    def process(self, name, args):
+        self._done[name] = ':' + '|'.join(args)
+        return True
+
+    def result(self, name):
+        rc = self._done[name] if name in self._done else ''
+        return rc
+
+class JobControllerTest(UnitTestCase):
+    def __init__(self):
+        UnitTestCase.__init__(self)
+        self._logger = base.MemoryLogger.MemoryLogger(3)
+        self._controller = TestJobController(self._logger)
+        self._dummyFile = self._controller.jobDirectory() + os.sep + 'dummy.file'
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testBasics(self):
+        base.JobController.JobController.writeJob('test2args', ['a1', 'a2'], self._controller.jobDirectory(), self._logger)
+        base.JobController.JobController.writeJob('testNoArgs', [], self._controller.jobDirectory(), self._logger)
+        self.assertTrue(self._controller.check())
+        self.assertTrue(self._controller.check())
+        self.assertIsEqual(':a1|a2', self._controller.result('test2args'))
+        self.assertIsEqual(':', self._controller.result('testNoArgs'))
+
+    def testClean(self):
+        base.StringUtils.toFile(self._dummyFile, 'Hi')
+        time.sleep(1)
+        self.assertFalse(self._controller.check())
+        self.assertFileNotExists(self._dummyFile)
+
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = JobControllerTest()
+    tester.run()
diff --git a/unittest/base/LinuxUtilsTest.py b/unittest/base/LinuxUtilsTest.py
new file mode 100644 (file)
index 0000000..812fcf8
--- /dev/null
@@ -0,0 +1,117 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+import base.LinuxUtils
+
+DEBUG = False
+
+class LinuxUtilsTest(UnitTestCase):
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testDiskFree(self):
+        infos = base.LinuxUtils.diskFree()
+        self.assertTrue(len(infos) >= 1)
+        for info in infos:
+            if info[0] not in ['/', '/opt', '/work', '/home'] and not info[0].startswith('/media') and info[0].find('jail') < 0:
+                self.assertIsEqual('valid path', info[0])
+            self.assertTrue(type(info[1]) == int)
+            self.assertTrue(type(info[2]) == int)
+            self.assertTrue(type(info[3]) == int)
+            self.assertTrue(info[1] >= info[2])
+            self.assertTrue(info[1] >= info[3])
+
+    def testUsers(self):
+        infos = base.LinuxUtils.users()
+        self.assertTrue(len(infos) >= 1)
+        for info in infos:
+            self.assertMatches(r'[\w]+', info[0])
+            self.assertMatches(r'(:?\d+)(\.\d+)?|([\d.]+)', info[1])
+            self.assertMatches(r'[0-2]?\d+:[0-5]\d', info[2])
+
+    def testLoad(self):
+        info = base.LinuxUtils.load()
+        self.assertIsEqual(5, len(info))
+        for ix in range(3):
+            self.assertTrue(type(info[ix]) == float)
+        self.assertTrue(type(info[3]) == int)
+        self.assertTrue(type(info[4]) == int)
+        self.assertTrue(int(info[3]) < int(info[4]))
+
+    def testMemoryInfo(self):
+        info = base.LinuxUtils.memoryInfo()
+        self.assertIsEqual(5, len(info))
+        # TOTAL_RAM, AVAILABLE_RAM, TOTAL_SWAP, FREE_SWAP, BUFFERS
+        for ix in range(len(info)):
+            self.assertTrue(type(info[ix]) == int)
+        self.assertTrue(info[0] >= info[1])
+        self.assertTrue(info[0] >= info[2])
+        self.assertTrue(info[2] >= info[3])
+
+    def checkMdadm(self, name, aType, members, blocks, status, info):
+        self.assertIsEqual(name, info[0])
+        self.assertIsEqual(aType, info[1])
+        self.assertIsEqual(members, info[2])
+        self.assertIsEqual(blocks, info[3])
+        self.assertIsEqual(status, info[4])
+
+    def testMdadmInfo(self):
+        fn = self.tempFile('mdadm.info')
+        with open(fn, "w") as fp:
+            fp.write('''Personalities : [raid1]
+md2 : active raid1 sdc1[0] sdd1[1]
+      1953378368 blocks super 1.2 [2/2] [UU]
+      bitmap: 0/15 pages [0KB], 65536KB chunk
+
+md1 : active raid1 sda2[0] sdb2[1]
+      508523520 blocks super 1.2 [2/2] [UU]
+      bitmap: 2/4 pages [8KB], 65536KB chunk
+
+md0 : active raid1 sda1[0] sdb1[1]
+      242496 blocks super 1.2 [2/2] [UU]
+''')
+        infos = base.LinuxUtils.mdadmInfo(fn)
+        self.assertIsEqual(3, len(infos))
+        self.checkMdadm('md2', 'raid1', 'sdc1[0] sdd1[1]', 1953378368, 'OK', infos[0])
+        self.checkMdadm('md1', 'raid1', 'sda2[0] sdb2[1]', 508523520, 'OK', infos[1])
+        self.checkMdadm('md0', 'raid1', 'sda1[0] sdb1[1]', 242496, 'OK', infos[2])
+
+    def testMdadmInfoBroken(self):
+        fn = self.tempFile('mdadm.info')
+        with open(fn, "w") as fp:
+            fp.write('''Personalities : [raid1]
+md1 : active raid1 hda14[0] sda11[2](F)
+      2803200 blocks [2/1] [U_]''')
+        infos = base.LinuxUtils.mdadmInfo(fn)
+        self.assertIsEqual(1, len(infos))
+        self.checkMdadm('md1', 'raid1', 'hda14[0] sda11[2](F)', 2803200, 'broken', infos[0])
+
+    def testStress(self):
+        info = base.LinuxUtils.stress(r'^(sda|nvme0n1)$', r'^(enp2s0|wlp4s0)$')
+        self.assertIsEqual(7, len(info))
+
+    def testUserId(self):
+        self.assertIsEqual(base.LinuxUtils.userId('root'), 0)
+        self.assertIsEqual(base.LinuxUtils.userId('www-data'), 33)
+        self.assertIsEqual(base.LinuxUtils.userId(99), 99)
+        self.assertIsEqual(base.LinuxUtils.userId('98'), 98)
+        self.assertNone(base.LinuxUtils.userId('bluberablub'))
+        self.assertIsEqual(base.LinuxUtils.userId('NobodyKnows', -1), -1)
+
+    def testGroupId(self):
+        self.assertIsEqual(base.LinuxUtils.groupId('root'), 0)
+        self.assertIsEqual(base.LinuxUtils.groupId('www-data'), 33)
+        self.assertIsEqual(base.LinuxUtils.groupId(99), 99)
+        self.assertIsEqual(base.LinuxUtils.groupId('98'), 98)
+        self.assertNone(base.LinuxUtils.groupId('bluberablub'))
+        self.assertIsEqual(base.LinuxUtils.groupId('NobodyKnows', -1), -1)
+
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = LinuxUtilsTest()
+    tester.run()
diff --git a/unittest/base/LoggerTest.py b/unittest/base/LoggerTest.py
new file mode 100644 (file)
index 0000000..2265355
--- /dev/null
@@ -0,0 +1,99 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+from base.Logger import Logger
+import os
+import re
+# import from base.Logger Logger
+import base.StringUtils
+
+DEBUG = False
+
+class LoggerTest(UnitTestCase):
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testLogger(self):
+        logFile = '/tmp/logger.log'
+        if os.path.isfile(logFile):
+            os.remove(logFile)
+        logger = Logger(logFile, True)
+        logger.log('Hi world')
+        logger.error('an expected error')
+        logger.debug('debug message')
+        self.assertFileContains('Hi world', logFile)
+        self.assertFileContains('+++ an expected error', logFile)
+        self.assertFileContains('debug message', logFile)
+        self.assertIsEqual('an expected error', logger._firstErrors[0])
+        self.assertIsEqual(1, logger._errors)
+
+    def testTextFilter(self):
+        logFile = '/tmp/logger.log'
+        if os.path.isfile(logFile):
+            os.remove(logFile)
+        logger = Logger(logFile, True)
+        logger.setErrorFilter('[second]')
+        logger.log('Hi world')
+        logger.error('an expected error')
+        logger.error('a [second] expected error')
+        logger.debug('debug message')
+        self.assertFileContains('Hi world', logFile)
+        self.assertFileContains('+++ an expected error', logFile)
+        self.assertFileNotContains('a [second] expected error', logFile)
+        self.assertFileContains('debug message', logFile)
+        self.assertIsEqual('an expected error', logger._firstErrors[0])
+        self.assertIsEqual(1, logger._errors)
+
+    def testRegExprFilter(self):
+        logFile = '/tmp/logger.log'
+        if os.path.isfile(logFile):
+            os.remove(logFile)
+        logger = Logger(logFile, True)
+        logger.setErrorFilter(re.compile('second|third'))
+        logger.log('Hi world')
+        logger.error('an expected error')
+        logger.error('a [second] expected error')
+        logger.debug('debug message')
+        self.assertFileContains('Hi world', logFile)
+        self.assertFileContains('+++ an expected error', logFile)
+        self.assertFileNotContains('a [second] expected error', logFile)
+        self.assertFileContains('debug message', logFile)
+        self.assertIsEqual('an expected error', logger._firstErrors[0])
+        self.assertIsEqual(1, logger._errors)
+
+    def testMirror(self):
+        logFile1 = '/tmp/logger1.log'
+        if os.path.isfile(logFile1):
+            os.remove(logFile1)
+        logger = Logger(logFile1, True)
+
+        logFile2 = '/tmp/logger2.log'
+        if os.path.isfile(logFile2):
+            os.remove(logFile2)
+        loggerMirror = Logger(logFile2, True)
+        logger.setMirror(loggerMirror)
+
+        logger.log('Hi world')
+        logger.error('an expected error')
+        logger.debug('debug message')
+        self.assertFileContains('Hi world', logFile1)
+        self.assertFileContains('+++ an expected error', logFile1)
+        self.assertFileContains('debug message', logFile1)
+        self.assertIsEqual('an expected error', logger._firstErrors[0])
+        self.assertIsEqual(1, logger._errors)
+
+        self.assertFileContains('Hi world', logFile2)
+        self.assertFileContains('+++ an expected error', logFile2)
+        self.assertFileContains('debug message', logFile2)
+        self.assertIsEqual('an expected error', loggerMirror._firstErrors[0])
+        self.assertIsEqual(1, loggerMirror._errors)
+
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = LoggerTest()
+    tester.run()
diff --git a/unittest/base/MemoryLoggerTest.py b/unittest/base/MemoryLoggerTest.py
new file mode 100644 (file)
index 0000000..e4bced5
--- /dev/null
@@ -0,0 +1,77 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+import base.MemoryLogger
+
+DEBUG = False
+
+class MemoryLoggerTest(UnitTestCase):
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testBase(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        logger.log('Hi world')
+        logger.error('an expected error')
+        logger.debug('debug message')
+        self.assertTrue(logger.contains('Hi world'))
+        self.assertTrue(logger.contains('an expected error', errorsToo=True))
+        self.assertTrue(logger.contains('debug message'))
+        self.assertFalse(logger.contains('Hi world!'))
+        self.assertTrue(logger.matches(r'Hi\sworld'))
+        self.assertTrue(logger.matches(r'an [a-z]+ error', errorsToo=True))
+        self.assertTrue(logger.matches(r'^de.*sage$'))
+
+    def testClear(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        logger.log('Hi world')
+        logger.error('dummy error')
+        self.assertTrue(logger.contains('Hi world'))
+        self.assertTrue(len(logger._firstErrors) > 0)
+        logger.clear()
+        self.assertFalse(logger.contains('Hi world'))
+        self.assertFalse(len(logger._firstErrors) > 0)
+
+    def testContains(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        logger.log('Jones jumps')
+        self.assertTrue(logger.contains('jumps'))
+        self.assertFalse(logger.contains('Jonny'))
+
+    def testDerive(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        logger.log('Hi world')
+        logger.error('dummy error')
+        logger2 = base.MemoryLogger.MemoryLogger()
+        logger2.derive(logger, messagesToo=True)
+        logger2.contains('Hi world')
+        logger2.contains('dummy error', errorsToo=True)
+
+    def testGetMessages(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        logger.log('Hi world')
+        self.assertIsEqual('Hi world', logger.getMessages()[0])
+
+    def testMatches(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        logger.log('Jones jumps')
+        self.assertTrue(logger.matches('[dj]umps'))
+        self.assertFalse(logger.matches('Jonny'))
+        self.assertFalse(logger.matches('jones'))
+        self.assertTrue(logger.matches('jones', flags=base.Const.IGNORE_CASE))
+        logger.error('dummy error')
+        self.assertTrue(logger.matches('[dj]um', errorsToo=True))
+        self.assertFalse(logger.matches('er+or', errorsToo=False))
+        self.assertTrue(logger.matches('er+or', errorsToo=True))
+        self.assertFalse(logger.matches('fail', errorsToo=True))
+
+
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = MemoryLoggerTest()
+    tester.run()
diff --git a/unittest/base/PortableRandomTest.py b/unittest/base/PortableRandomTest.py
new file mode 100644 (file)
index 0000000..a5a15f6
--- /dev/null
@@ -0,0 +1,43 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+import base.PortableRandom as rnd
+import datetime
+import random as rnd2
+
+DEBUG = False
+
+class PortableRandomTest(UnitTestCase):
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testBasic(self):
+        random = rnd.PortableRandom()
+        random.setSeed(1, 2, 3)
+        self.assertIsEqual(121424799, random.nextInt())
+        self.assertIsEqual(2, random.nextInt(-10, 10))
+
+    def testDistribution(self):
+        random = rnd.PortableRandom()
+        rnd.PortableRandom.testDistribution(random, 20000000, 20000)
+
+    def testRuntime(self):
+        random = rnd.PortableRandom()
+        start = datetime.datetime.now()
+        loops = 20000
+        for ix in range(loops):
+            rnd2.randint(0, 20000000)
+        end = datetime.datetime.now()
+        diff = end - start
+        seconds = diff.seconds + diff.microseconds * 1E-6
+        print(f'calls/microseconds: {loops/seconds*1E-6:.3}')
+
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = PortableRandomTest()
+    tester.run()
diff --git a/unittest/base/ProcessHelperTest.py b/unittest/base/ProcessHelperTest.py
new file mode 100644 (file)
index 0000000..8d96ba9
--- /dev/null
@@ -0,0 +1,76 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+
+import os
+
+import base.ProcessHelper
+import base.StringUtils
+import base.Logger
+
+DEBUG = False
+
+
+def usage(msg=None):
+    base.StringUtils.avoidWarning(msg)
+    return 'test usage'
+
+
+class ProcessHelperTest(UnitTestCase):
+    def __init__(self):
+        UnitTestCase.__init__(self)
+        self._dir = self.tempDir('processhelper', 'unittest')
+        self._testFile = self._dir + os.sep + 'simple.file.txt'
+        base.StringUtils.toFile(self._testFile, 'line 1\nline 2\nline 3\n')
+        self._helper = base.ProcessHelper.ProcessHelper(
+            base.Logger.Logger('/tmp/processhelpertest.log', 3))
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testExecute(self):
+        self._helper.execute(['tail', '-n2', self._testFile], True, True)
+        if self.assertTrue(len(self._helper._output) == 2):
+            self.assertIsEqual('line 2', self._helper._output[0])
+            self.assertIsEqual('line 3', self._helper._output[1])
+
+    def testExecuteError(self):
+        self._helper._logger.log('expecting an error:')
+        self._helper.execute(['tail', '-n2', '/etc/shadow'], True, True)
+        self.assertIsEqual(0, len(self._helper._output))
+        self.assertTrue(self._helper._error[0].startswith(
+            "tail: '/etc/shadow'"))
+
+    def testExecuteInput(self):
+        self._helper.executeInput(
+            ['grep', '-o', '[0-9][0-9]*'], True, 'line1\n\line222')
+        self.assertIsEqual('1', self._helper._output[0])
+        self.assertIsEqual('222', self._helper._output[1])
+
+    def testExecuteInputError(self):
+        self._helper._logger.log('expecting an error:')
+        self._helper.executeInput(
+            ['veryUnknownCommand!', '[0-9]+'], True, 'line1\n\nline222')
+        self.assertIsEqual(0, len(self._helper._output))
+        self.assertIsEqual(
+            "[Errno 2] No such file or directory: 'veryUnknownCommand!': 'veryUnknownCommand!'", self._helper._error[0])
+
+    def testExecuteScript(self):
+        self._helper.executeScript(
+            '#! /bin/bash\n/bin/echo $1', 'getArg1', True, ['Hi world', 'Bye world'])
+
+    def testExecuteInChain(self):
+        fn = self.tempFile('gzip.input', 'unittest')
+        base.StringUtils.toFile(fn, 'Hi')
+        self._helper.executeInChain(
+            ['gzip', '-c', fn], None, ['zcat'], '!shell')
+
+
+if __name__ == '__main__':
+    # import sys;sys.argv = ['', 'Test.testName']
+    tester = ProcessHelperTest()
+    tester.run()
diff --git a/unittest/base/SchedulerTest.py b/unittest/base/SchedulerTest.py
new file mode 100644 (file)
index 0000000..329c47c
--- /dev/null
@@ -0,0 +1,50 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+import base.MemoryLogger
+import base.Scheduler
+
+DEBUG = False
+class TestTaskInfo (base.Scheduler.TaskInfo):
+    def __init__(self):
+        self._count = 0
+    def process(self, sliceInfo):
+        self._count += 1
+
+class SchedulerTest(UnitTestCase):
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testBasics(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        scheduler = base.Scheduler.Scheduler(logger)
+        taskInfo = TestTaskInfo()
+        sliceInfo = base.Scheduler.SliceInfo(taskInfo, scheduler)
+        scheduler.insertSlice(sliceInfo, 2, 0.0)
+        sliceInfo = base.Scheduler.SliceInfo(taskInfo, scheduler)
+        scheduler.insertSlice(sliceInfo, 1, 0.0)
+        self.assertIsEqual(len(scheduler._slices), 2)
+        self.assertIsEqual(scheduler._slices[0]._id, 2)
+        self.assertIsEqual(scheduler._slices[1]._id, 1)
+
+        scheduler._slices[0]._nextCall -= 2
+        slide1 = scheduler.check()
+        self.assertIsEqual(slide1._id, 2)
+        self.assertIsEqual(len(scheduler._slices), 1)
+        self.assertIsEqual(scheduler._slices[0]._id, 1)
+
+        scheduler._slices[0]._nextCall -= 3
+        self.assertTrue(scheduler.checkAndProcess())
+        self.assertIsEqual(len(scheduler._slices), 0)
+
+        self.assertIsEqual(taskInfo._count, 1)
+
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = SchedulerTest()
+    tester.run()
diff --git a/unittest/base/StringUtilsTest.py b/unittest/base/StringUtilsTest.py
new file mode 100644 (file)
index 0000000..4aed8bb
--- /dev/null
@@ -0,0 +1,516 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+import os
+import re
+import base.StringUtils
+from base.StringUtils import fileToText
+
+DEBUG = False
+
+class StringUtilsTest(UnitTestCase):
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testJoin(self):
+        if DEBUG: return
+        self.assertIsEqual('1 2 3', base.StringUtils.join(' ', [1,2,3]))
+        self.assertIsEqual('1,B,[]', base.StringUtils.join(',', [1, 'B', []]))
+        self.assertIsEqual('A.B.C', base.StringUtils.join('.', ['A', 'B', 'C']))
+        self.assertIsEqual('', base.StringUtils.join('.', None))
+
+    def testToFile(self):
+        if DEBUG: return
+        fn = '/tmp/stringutils.tmp'
+        if os.path.exists(fn):
+            os.unlink(fn)
+        content = 'line1\nline2'
+        base.StringUtils.toFile(fn, content)
+        self.assertTrue(os.path.exists(fn))
+        self.assertFileContains('line1', fn)
+        self.assertFileContains('line2', fn)
+
+    def testToFileMode(self):
+        if DEBUG: return
+        fn = base.FileHelper.tempFile('modetest.txt', 'unittest.2')
+        base.StringUtils.toFile(fn, 'Hi', fileMode=0o570)
+        status = os.stat(fn)
+        self.assertIsEqual(0o570, status.st_mode % 0o1000)
+
+    def testToFileError(self):
+        if DEBUG: return
+        fn = '/tmp/not-existing-dir/stringutils.tmp'
+        if os.path.exists(fn):
+            os.unlink(fn)
+        content = 'line1\nline2'
+        logger = base.MemoryLogger.MemoryLogger(4)
+        base.StringUtils.setLogger(logger)
+        base.StringUtils.toFile(fn, content)
+        self.assertFalse(os.path.exists(fn))
+        self.assertIsEqual(1, logger._errors)
+        self.assertMatches(r'cannot write to ', logger._firstErrors[0])
+
+    def testFromFile(self):
+        if DEBUG: return
+        fn = '/tmp/stringutils.tmp'
+        content = 'xline1\nxline2'
+        base.StringUtils.toFile(fn, content)
+        current = base.StringUtils.fromFile(fn)
+        self.assertIsEqual(content, current)
+
+    def testFromFileSep(self):
+        if DEBUG: return
+        fn = '/tmp/stringutils.tmp'
+        content = 'xline1\nxline2'
+        base.StringUtils.toFile(fn, content)
+        current = base.StringUtils.fromFile(fn, '\n')
+        self.assertIsEqual(content.split('\n'), current)
+
+    def testTailOfWord(self):
+        if DEBUG: return
+        self.assertIsEqual('x', base.StringUtils.tailOfWord('-ax', '-a'))
+        self.assertIsEqual('x', base.StringUtils.tailOfWord('-b -ax', '-a'))
+        self.assertIsEqual('x', base.StringUtils.tailOfWord('-ax -b', '-a'))
+        self.assertIsEqual('x', base.StringUtils.tailOfWord('-c -ax -b', '-a'))
+        self.assertIsEqual('x', base.StringUtils.tailOfWord('-ax\t -b', '-a'))
+        self.assertIsEqual('x', base.StringUtils.tailOfWord('y \t-ax\t -b', '-a'))
+
+        self.assertNone(base.StringUtils.tailOfWord('--find-a-ax', '-a'))
+        self.assertNone(base.StringUtils.tailOfWord('-b\t-c -d', '-a'))
+
+    def testFormatSize(self):
+        if DEBUG: return
+        self.assertIsEqual('120 Byte', base.StringUtils.formatSize(120))
+        self.assertIsEqual('123.456 KB', base.StringUtils.formatSize(123456))
+        self.assertIsEqual('123.456 MB', base.StringUtils.formatSize(123456*1000))
+        self.assertIsEqual('12.346 MB', base.StringUtils.formatSize(123456*100))
+        self.assertIsEqual('1.235 MB', base.StringUtils.formatSize(123456*10))
+        self.assertIsEqual('123.456 GB', base.StringUtils.formatSize(123456*1000*1000))
+        self.assertIsEqual('123.456 TB', base.StringUtils.formatSize(123456*1000*1000*1000))
+
+    def testHasContent(self):
+        if DEBUG: return
+        filename = self.tempFile('example.txt', 'stringutiltest')
+        base.StringUtils.toFile(filename, '')
+        self.assertFalse(base.StringUtils.hasContent(filename))
+        base.StringUtils.toFile(filename, '# comment')
+        self.assertFalse(base.StringUtils.hasContent(filename))
+        base.StringUtils.toFile(filename, '# comment\n\t   \n\n#comment2')
+        self.assertFalse(base.StringUtils.hasContent(filename))
+        self.assertFalse(base.StringUtils.hasContent(filename + '.not.existing'))
+        base.StringUtils.toFile(filename, '\t// comment\n\t   \n\n//comment2')
+        self.assertFalse(base.StringUtils.hasContent(filename, '//'))
+
+        base.StringUtils.toFile(filename, r'\t// comment\n\t   \n\//comment2')
+        self.assertTrue(base.StringUtils.hasContent(filename, '#'))
+        base.StringUtils.toFile(filename, '# has content!\n\na=3')
+        self.assertTrue(base.StringUtils.hasContent(filename, '#'))
+
+    def testFirstMatch(self):
+        if DEBUG: return
+        aList = ['# a=2', '#', 'b=3', '\t name = Jonny Cash ']
+        regExpr = re.compile(r'^\s*(\w+)\s*=\s*(.*?)\s*$')
+        matcher = base.StringUtils.firstMatch(aList, regExpr)
+        self.assertNotNone(matcher)
+        self.assertIsEqual('b', matcher.group(1))
+        self.assertIsEqual('3', matcher.group(2))
+
+        matcher = base.StringUtils.firstMatch(aList, regExpr, 3)
+        self.assertNotNone(matcher)
+        self.assertIsEqual('name', matcher.group(1))
+        self.assertIsEqual('Jonny Cash', matcher.group(2))
+
+    def testGrepInFile(self):
+        if DEBUG: return
+        filename = self.tempFile('grep.txt', 'stringutiltest')
+        base.StringUtils.toFile(filename, """# Test
+a = 1
+# öäü b = 2
+c=333
+""")
+        regExpr = re.compile(r'^\s*(\w+)\s*=\s*(.*?)\s*$')
+        found = base.StringUtils.grepInFile(filename, regExpr)
+        self.assertIsEqual(2, len(found))
+        self.assertIsEqual('a = 1\n', found[0])
+        self.assertIsEqual('c=333\n', found[1])
+
+        found = base.StringUtils.grepInFile(filename, regExpr, 1)
+        self.assertIsEqual(1, len(found))
+        self.assertIsEqual("a = 1\n", found[0])
+
+    def testGrepInFileGroup(self):
+        if DEBUG: return
+        filename = self.tempFile('grep.txt', 'stringutiltest')
+        base.StringUtils.toFile(filename, """# Test
+a = 1
+# öäü b = 2
+c=333
+""")
+        regExpr = re.compile(r'^\s*\w+\s*=\s*(.*?)\s*$')
+        found = base.StringUtils.grepInFile(filename, regExpr, None, 1)
+        self.assertIsEqual(2, len(found))
+        self.assertIsEqual('1', found[0])
+        self.assertIsEqual('333', found[1])
+
+        found = base.StringUtils.grepInFile(filename, regExpr, 1)
+        self.assertIsEqual(1, len(found))
+        self.assertIsEqual("a = 1\n", found[0])
+
+    def testLimitItemLength_WithoutElipsis(self):
+        if DEBUG: return
+        source = ['1', '22', '333', '4444']
+        result = base.StringUtils.limitItemLength(source, 2)
+        self.assertIsEqual(source[0], '1')
+        self.assertIsEqual(source[3], '4444')
+        self.assertIsEqual(len(source), len(result))
+        for ix in range(len(source)):
+            self.assertIsEqual(source[ix][0:2], result[ix])
+        result = base.StringUtils.limitItemLength(source, 0)
+        self.assertIsEqual('', ''.join(result))
+
+    def testLimitItemLength(self):
+        if DEBUG: return
+        source = ['abcd1', 'abcd22', 'abcd333', 'abcd4444']
+        result = base.StringUtils.limitItemLength(source, 5)
+        self.assertIsEqual(source[0], 'abcd1')
+        self.assertIsEqual(source[3], 'abcd4444')
+        self.assertIsEqual(len(source), len(result))
+        for ix in range(len(source)):
+            if ix ==  0:
+                self.assertIsEqual(source[ix], result[ix])
+            else:
+                self.assertIsEqual(source[ix][0:2] + '...', result[ix])
+        result = base.StringUtils.limitItemLength(source, 0)
+        self.assertIsEqual('', ''.join(result))
+
+    def testToFloatAndTypeDate(self):
+        if DEBUG: return
+        [value, dataType] = base.StringUtils.toFloatAndType('2019.10.23')
+        self.assertIsEqual(1571781600.0, value)
+        self.assertIsEqual('date', dataType)
+        [value, dataType] = base.StringUtils.toFloatAndType('1970-01-01')
+        self.assertIsEqual(-3600.0, value)
+        self.assertIsEqual('date', dataType)
+
+    def testToFloatAndTypeTime(self):
+        if DEBUG: return
+        [value, dataType] = base.StringUtils.toFloatAndType('01:02:03')
+        self.assertIsEqual(1*3600+2*60+3, value)
+        self.assertIsEqual('time', dataType)
+        [value, dataType] = base.StringUtils.toFloatAndType('2:17')
+        self.assertIsEqual(2*3600+17*60, value)
+        self.assertIsEqual('time', dataType)
+
+    def testToFloatAndTypeDateTime(self):
+        if DEBUG: return
+        [value, dataType] = base.StringUtils.toFloatAndType('2019.10.23T01:02:03')
+        self.assertIsEqual(1571785323.0, value)
+        self.assertIsEqual('datetime', dataType)
+        [value, dataType] = base.StringUtils.toFloatAndType('1970-01-02 5:17')
+        self.assertIsEqual(101820.0, value)
+        self.assertIsEqual('datetime', dataType)
+
+    def testToFloatAndTypeHex(self):
+        if DEBUG: return
+        [value, dataType] = base.StringUtils.toFloatAndType('0x1234')
+        self.assertIsEqual(float(0x1234), value)
+        self.assertIsEqual('int', dataType)
+        [value, dataType] = base.StringUtils.toFloatAndType('0XABCDEF0123456')
+        self.assertIsEqual(float(0xABCDEF0123456), value)
+        self.assertIsEqual('int', dataType)
+        [value, dataType] = base.StringUtils.toFloatAndType('0Xabcdef0')
+        self.assertIsEqual(float(0xABCDEF0), value)
+        self.assertIsEqual('int', dataType)
+
+    def testToFloatAndTypeOct(self):
+        if DEBUG: return
+        [value, dataType] = base.StringUtils.toFloatAndType('0o1234')
+        self.assertIsEqual(float(0o1234), value)
+        self.assertIsEqual('int', dataType)
+        [value, dataType] = base.StringUtils.toFloatAndType('0o12345670')
+        self.assertIsEqual(float(0o12345670), value)
+        self.assertIsEqual('int', dataType)
+
+    def testToFloatAndTypeInt(self):
+        if DEBUG: return
+        [value, dataType] = base.StringUtils.toFloatAndType('1234')
+        self.assertIsEqual(1234.0, value)
+        self.assertIsEqual('int', dataType)
+        [value, dataType] = base.StringUtils.toFloatAndType('987654321')
+        self.assertIsEqual(987654321.0, value)
+        self.assertIsEqual('int', dataType)
+
+    def testToFloatAndTypeFloat(self):
+        if DEBUG: return
+        [value, dataType] = base.StringUtils.toFloatAndType('1234.0')
+        self.assertIsEqual(1234.0, value)
+        self.assertIsEqual('float', dataType)
+        [value, dataType] = base.StringUtils.toFloatAndType('987654321.0')
+        self.assertIsEqual(987654321.0, value)
+        self.assertIsEqual('float', dataType)
+        [value, dataType] = base.StringUtils.toFloatAndType('1.23E+44')
+        self.assertIsEqual(1.23E+44, value)
+        self.assertIsEqual('float', dataType)
+
+    def testToFloatAndTypeError(self):
+        if DEBUG: return
+        [value, dataType] = base.StringUtils.toFloatAndType('host3')
+        self.assertIsEqual('float (or int or date(time)) expected, found: host3', value)
+        self.assertIsEqual('undef', dataType)
+
+    def testToFloatDate(self):
+        if DEBUG: return
+        value = base.StringUtils.toFloat('2019.10.23')
+        self.assertIsEqual(1571781600.0, value)
+        value = base.StringUtils.toFloat('1970-01-01')
+        self.assertIsEqual(-3600.0, value)
+
+    def testToFloatTime(self):
+        if DEBUG: return
+        value = base.StringUtils.toFloat('01:02:03')
+        self.assertIsEqual(1*3600+2*60+3, value)
+        value = base.StringUtils.toFloat('2:17')
+        self.assertIsEqual(2*3600+17*60, value)
+
+    def testToFloatDateTime(self):
+        if DEBUG: return
+        value = base.StringUtils.toFloat('2019.10.23T01:02:03')
+        self.assertIsEqual(1571785323.0, value)
+        value = base.StringUtils.toFloat('1970-01-02 5:17')
+        self.assertIsEqual(101820.0, value)
+
+    def testToFloatHex(self):
+        if DEBUG: return
+        value = base.StringUtils.toFloat('0x1234')
+        self.assertIsEqual(float(0x1234), value)
+        value = base.StringUtils.toFloat('0XABCDEF0123456')
+        self.assertIsEqual(float(0xABCDEF0123456), value)
+        value = base.StringUtils.toFloat('0Xabcdef0')
+        self.assertIsEqual(float(0xABCDEF0), value)
+
+    def testToFloatOct(self):
+        if DEBUG: return
+        value = base.StringUtils.toFloat('0o1234')
+        self.assertIsEqual(float(0o1234), value)
+        value = base.StringUtils.toFloat('0o12345670')
+        self.assertIsEqual(float(0o12345670), value)
+
+    def testToFloatInt(self):
+        if DEBUG: return
+        value = base.StringUtils.toFloat('1234')
+        self.assertIsEqual(1234.0, value)
+        value = base.StringUtils.toFloat('987654321')
+        self.assertIsEqual(987654321.0, value)
+
+    def testToFloatFloat(self):
+        if DEBUG: return
+        value = base.StringUtils.toFloat('1234.0')
+        self.assertIsEqual(1234.0, value)
+        value = base.StringUtils.toFloat('987654321.0')
+        self.assertIsEqual(987654321.0, value)
+        value = base.StringUtils.toFloat('1.23E+44')
+        self.assertIsEqual(1.23E+44, value)
+
+    def testToFloatError(self):
+        if DEBUG: return
+        value = base.StringUtils.toFloat('host3')
+        self.assertIsEqual('float (or int or date(time)) expected, found: host3', value)
+
+    def testAsFloat(self):
+        if DEBUG: return
+        self.assertIsEqual(321.0, base.StringUtils.asFloat('321'))
+        self.assertIsEqual(-321.0, base.StringUtils.asFloat('-321'))
+        self.assertIsEqual(801.0, base.StringUtils.asFloat('0x321'))
+        self.assertIsEqual(1.35E-2, base.StringUtils.asFloat('1.35E-2'))
+        self.assertIsEqual(0.0, base.StringUtils.asFloat('0'))
+        self.assertNone(base.StringUtils.asFloat('1.35E-'))
+        self.assertIsEqual(-1.0, base.StringUtils.asFloat('', -1.0))
+
+    def testAsInt(self):
+        if DEBUG: return
+        self.assertIsEqual(321, base.StringUtils.asInt('321'))
+        self.assertIsEqual(0x321, base.StringUtils.asInt('0x321'))
+        self.assertIsEqual(0o321, base.StringUtils.asInt('0321'))
+        self.assertIsEqual(-33, base.StringUtils.asInt('-33', 777))
+        self.assertIsEqual(77, base.StringUtils.asInt('99x', 77))
+        self.assertIsEqual(777, base.StringUtils.asInt('x2', 777))
+        self.assertIsEqual(-349, base.StringUtils.asInt('-349'))
+        self.assertIsEqual(+123, base.StringUtils.asInt('+123', 777))
+        self.assertNone(base.StringUtils.asInt('-3', None, signIsAllowed=False))
+        self.assertNone(base.StringUtils.asInt('+333', None, signIsAllowed=False))
+
+
+    def testRegExprCompile(self):
+        if DEBUG: return
+        rexpr = base.StringUtils.regExprCompile(r'\d', None, None, True)
+        self.assertNotNone(rexpr.match('7'))
+        rexpr = base.StringUtils.regExprCompile('Hi', None, None, False)
+        self.assertNotNone(rexpr.match('hi'))
+
+    def testRegExprCompileError(self):
+        if DEBUG: return
+        rexpr = base.StringUtils.regExprCompile('*.txt', 'test of wrong pattern', self._logger)
+        self.assertNone(rexpr)
+        self._logger.contains('error in regular expression in test of wrong pattern: nothing to repeat at position 0')
+        rexpr = base.StringUtils.regExprCompile('(*.txt', 'test of wrong pattern')
+        self.assertNone(rexpr)
+
+    def testMinimizeArrayUtfError(self):
+        if DEBUG: return
+        list1 = [b'\xffabcdefghijklmnopqrstuvwxyz01234567890', b'abcdefghijklmnopqrstuvwxyz01234567890\xff']
+        rc = base.StringUtils.minimizeArrayUtfError(list1, self._logger)
+        self.assertIsEqual(2, len(rc))
+        self.assertIsEqual(1, rc[0].find('abcdefghijklmnopqrstuvwxyz01234567890'))
+        self.assertIsEqual(0, rc[1].find('abcdefghijklmnopqrstuvwxyz01234567890'))
+
+    def testSecondsToString(self):
+        if DEBUG: return
+        self.assertIsEqual('00:00:00', base.StringUtils.secondsToString(0))
+        self.assertIsEqual('03:04:15', base.StringUtils.secondsToString(3*3600+4*60+15))
+        self.assertIsEqual('124:59:33', base.StringUtils.secondsToString(124*3600+59*60+33))
+
+    def testPrivateConfig(self):
+        if DEBUG: return
+        config = base.StringUtils.privateConfig()
+        self.assertIsEqual('xyz', config.getString('StringUtil.test.entry'))
+
+    def testIndentLines(self):
+        if DEBUG: return
+        lines = '  abc\n  def'
+        self.assertIsEqual(' abc\n def', base.StringUtils.indentLines(lines, 1))
+        self.assertIsEqual('abc\ndef', base.StringUtils.indentLines(lines, 0))
+        self.assertIsEqual('   abc\n   def', base.StringUtils.indentLines(lines, 3, ' '))
+        self.assertIsEqual('\tabc\n\tdef', base.StringUtils.indentLines(lines, 1, '\t'))
+        self.assertIsEqual('...abc\n...def', base.StringUtils.indentLines(lines, 1, '...'))
+
+    def testLimitLength(self):
+        if DEBUG: return
+        self.assertIsEqual('abcd', base.StringUtils.limitLength('abcd', 4))
+        self.assertIsEqual('a..', base.StringUtils.limitLength('abcd', 3))
+        self.assertIsEqual('ab', base.StringUtils.limitLength('ab..', 2))
+        self.assertIsEqual('a', base.StringUtils.limitLength('ab..', 1))
+        self.assertIsEqual('', base.StringUtils.limitLength('abcd', 0))
+
+    def testLimitLength2(self):
+        if DEBUG: return
+        self.assertIsEqual('ab..cd', base.StringUtils.limitLength2('ab1234cd', 6))
+        self.assertIsEqual('ab..cd', base.StringUtils.limitLength2('ab12345cd', 6))
+        self.assertIsEqual('a..cd', base.StringUtils.limitLength2('ab1234cd', 5))
+        self.assertIsEqual('a..cd', base.StringUtils.limitLength2('ab12345cd', 5))
+        self.assertIsEqual('abcd', base.StringUtils.limitLength2('abcd', 4))
+        self.assertIsEqual('acd', base.StringUtils.limitLength2('abcd', 3))
+        self.assertIsEqual('ad', base.StringUtils.limitLength2('abcd', 2))
+        self.assertIsEqual('d', base.StringUtils.limitLength2('abcd', 1))
+        self.assertIsEqual('', base.StringUtils.limitLength2('abcd', 0))
+
+    def testParseSize(self):
+        if DEBUG: return
+        errors = []
+        self.assertIsEqual(12, base.StringUtils.parseSize('12', errors))
+        self.assertIsEqual(1, base.StringUtils.parseSize('1B', errors))
+        self.assertIsEqual(33000, base.StringUtils.parseSize('33k', errors))
+        self.assertIsEqual(12*1024, base.StringUtils.parseSize('12Ki', errors))
+        self.assertIsEqual(4*1000*1000, base.StringUtils.parseSize('4mb', errors))
+        self.assertIsEqual(4*1024*1024, base.StringUtils.parseSize('4MiByte', errors))
+        self.assertIsEqual(6*1000*1000*1000, base.StringUtils.parseSize('6G', errors))
+        self.assertIsEqual(6*1024*1024*1024, base.StringUtils.parseSize('6GiByte', errors))
+        self.assertIsEqual(99*1000*1000*1000*1000, base.StringUtils.parseSize('99tbyte', errors))
+        self.assertIsEqual(99*1024*1024*1024*1024, base.StringUtils.parseSize('99Ti', errors))
+        self.assertIsEqual(0, len(errors))
+        #self.log('expecting x errors:')
+        self.assertNone(base.StringUtils.parseSize('', errors))
+        self.assertIsEqual('size cannot be empty', errors[0])
+        self.assertNone(base.StringUtils.parseSize('3x', errors))
+        self.assertIsEqual('not a valid size 3x. Expected <number>[<unit>], e.g. 10Mi', errors[1])
+        self.assertNone(base.StringUtils.parseSize('9mbx', errors))
+        self.assertIsEqual('not a valid size 9mbx. Expected <number>[<unit>], e.g. 10Mi', errors[2])
+        self.assertNone(base.StringUtils.parseSize('9Gibyt', errors))
+        self.assertIsEqual('not a valid size 9Gibyt. Expected <number>[<unit>], e.g. 10Mi', errors[3])
+
+    def testParseDateTime(self):
+        if DEBUG: return
+        errors = []
+        self.assertNotNone(base.StringUtils.parseDateTime('3.7.2020', errors, True))
+        self.assertNotNone(base.StringUtils.parseDateTime('3.7.2020', errors))
+        self.assertNotNone(base.StringUtils.parseDateTime('2020.01.31', errors, True))
+        self.assertNotNone(base.StringUtils.parseDateTime('2020.01.31', errors))
+        self.assertNotNone(base.StringUtils.parseDateTime('3.7.2020-2:04', errors))
+        self.assertNotNone(base.StringUtils.parseDateTime('2020.01.31 15:3', errors))
+        self.assertIsEqual('2020-07-03 00:00:00', str(base.StringUtils.parseDateTime('3.7.2020', errors, True)))
+        self.assertIsEqual('2020-01-02 00:00:00', str(base.StringUtils.parseDateTime('2020.1.2', errors, False)))
+        self.assertIsEqual('2020-07-03 07:03:00', str(base.StringUtils.parseDateTime('3.7.2020-7:3', errors)))
+        self.assertIsEqual('2020-01-02 22:33:44', str(base.StringUtils.parseDateTime('2020.1.2 22:33:44', errors)))
+        self.assertIsEqual(0, len(errors))
+
+    def testParseDateTimeErrors(self):
+        if DEBUG: return
+        errors = []
+        self.assertNone(base.StringUtils.parseDateTime('3.7.202O', errors))
+        self.assertIsEqual('not a date: 3.7.202O', errors[0])
+        self.assertNone(base.StringUtils.parseDateTime('x3.7.2020', errors))
+        self.assertIsEqual('not a date: x3.7.2020', errors[1])
+        self.assertNone(base.StringUtils.parseDateTime('31.6.2020', errors))
+        self.assertIsEqual('day is out of range for month: 31.6.2020', errors[2])
+        self.assertNone(base.StringUtils.parseDateTime('09.02.1980 12:44', errors, dateOnly=True))
+        self.assertIsEqual('unexpected tail of a date: 12:44', errors[3])
+        self.assertNone(base.StringUtils.parseDateTime('1998.09.02-13:49', errors, dateOnly=True))
+        self.assertIsEqual('unexpected tail of a date: 13:49', errors[4])
+
+    def testEscChar(self):
+        if DEBUG: return
+        self.assertIsEqual('\\\\', base.StringUtils.escChars('\\'))
+        self.assertIsEqual('\\n', base.StringUtils.escChars('\n'))
+        self.assertIsEqual('\\\\\\n\\r\\t\\b', base.StringUtils.escChars('\\\n\r\t\b'))
+
+    def testUnescChar(self):
+        if DEBUG: return
+        self.assertIsEqual('J', base.StringUtils.unescChars('\\x4A'))
+        self.assertIsEqual('E', base.StringUtils.unescChars('\\x45'))
+        self.assertIsEqual('\\', base.StringUtils.unescChars('\\\\'))
+        self.assertIsEqual('\n', base.StringUtils.unescChars(r'\n'))
+        self.assertIsEqual('\\\n\r\t\bEäöü', base.StringUtils.unescChars(r'\\\n\r\t\b\x45äöü'))
+        self.assertIsEqual('\U00000046', base.StringUtils.unescChars(r'\U00000046'))
+        self.assertIsEqual('F', base.StringUtils.unescChars(r'\U00000046'))
+        self.assertIsEqual('\u0047', base.StringUtils.unescChars(r'\u0047'))
+        self.assertIsEqual('G', base.StringUtils.unescChars(r'\u0047'))
+
+    def testIsBinaryString(self):
+        if DEBUG: return
+        self.assertFalse(base.StringUtils.isBinary('abc\r\n\v\f\tbluböäüÖÄÜß'))
+        self.assertFalse(base.StringUtils.isBinary(None))
+        self.assertTrue(base.StringUtils.isBinary('abc\x00def'))
+        self.assertTrue(base.StringUtils.isBinary('abc\x01def'))
+        self.assertTrue(base.StringUtils.isBinary('abc\x01def', 4))
+        self.assertFalse(base.StringUtils.isBinary('abc\x01def', 3))
+
+    def testIsBinaryBytes(self):
+        if DEBUG: return
+        self.assertFalse(base.StringUtils.isBinary('abc\r\n\v\f\tbluböäüÖÄÜß'.encode('utf-8')))
+        self.assertFalse(base.StringUtils.isBinary(None))
+        self.assertTrue(base.StringUtils.isBinary(b'abc\x00def'))
+        self.assertTrue(base.StringUtils.isBinary(b'abc\x01def', 4))
+        self.assertFalse(base.StringUtils.isBinary(b'abc\x01def', 3))
+
+    def testFileToText(self):
+        fn = base.FileHelper.tempFile('filetest.data', 'unittest.2')
+        content = '\tHi\v\f\r\n'
+        base.StringUtils.toFile(fn, content)
+        self.assertIsEqual(content, fileToText(fn))
+        content = 'a\nb\nc'
+        base.StringUtils.toFile(fn, content)
+        self.assertIsEqual('a,b,c', ','.join(fileToText(fn, '\n')))
+        content = 'abc\x01'
+        base.StringUtils.toFile(fn, content)
+        self.assertIsEqual(content, fileToText(fn, binaryTestLength=3, ignoreBinary=True))
+        self.assertIsEqual('', fileToText(fn, binaryTestLength=4, ignoreBinary=True))
+        self.assertIsEqual('', fileToText(fn, maxLength=3))
+        
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = StringUtilsTest()
+    tester.run()
diff --git a/unittest/base/TextProcessorTest.py b/unittest/base/TextProcessorTest.py
new file mode 100644 (file)
index 0000000..ec4edd1
--- /dev/null
@@ -0,0 +1,329 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+import base.TextProcessor
+
+DEBUG = False
+
+class TextProcessorTest(UnitTestCase):
+
+    def __init__(self):
+        UnitTestCase.__init__(self)
+        self._trace = self.tempFile('rules.log', 'trace')
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testBasics(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+        self.assertIsEqual(0, processor._logger._errors)
+
+    def testReplace(self):
+        if DEBUG: return
+        content = '''# simple example? complete example?
+[Test]
+intVar = 993
+strVar = "abc $strVar"
+'''
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor.setContent(content)
+        self.assertIsEqual(1, processor.replace('strVar', 'stringVar'))
+        self.assertIsEqual('''# simple example? complete example?
+[Test]
+intVar = 993
+stringVar = "abc $stringVar"
+''', '\n'.join(processor._lines))
+
+        processor.setContent(content)
+        self.assertIsEqual(3, processor.replace('([a-z]+)Var', 'var_%1', '%', countHits=True))
+        self.assertIsEqual('''# simple example? complete example?
+[Test]
+var_int = 993
+var_str = "abc $var_str"
+''', '\n'.join(processor._lines))
+
+        processor.setContent(content)
+        self.assertIsEqual(1, processor.replace('example?', 'sample?', noRegExpr=True))
+        self.assertIsEqual('''# simple sample? complete sample?
+[Test]
+intVar = 993
+strVar = "abc $strVar"
+''', '\n'.join(processor._lines))
+
+        processor.setContent(content)
+        self.assertIsEqual(2, processor.replace('example?', 'sample?', noRegExpr=True, countHits=True))
+        self.assertIsEqual('''# simple sample? complete sample?
+[Test]
+intVar = 993
+strVar = "abc $strVar"
+''', '\n'.join(processor._lines))
+
+    def testReplaceEscActive(self):
+        #if DEBUG: return
+        content = '''123<newline>äöüß
+<esc-char>xyz
+'''
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor.setContent(content)
+        self.assertIsEqual(1, processor.replace('<newline>', '\\n', escActive=True))
+        self.assertIsEqual(1, processor.replace('<esc-char>', '\\t\\u0045\\U00000046\\x47', escActive=True))
+        current = '\n'.join(processor._lines)
+        self.assertIsEqual('''123
+äöüß
+\tEFGxyz
+''', current)
+
+    def testRuleSearchForward(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+        processor.setContent('Hello World!')
+        processor.executeRules(r'>/world/i')
+        self.assertIsEqual(0, processor.cursor('line'))
+        self.assertIsEqual(6, processor.cursor('col'))
+
+    def testRuleSearchBackward(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+        processor.setContent('abc\nHello World!\nHi!')
+        processor.executeRules(r'eof;</O/ie')
+        self.assertIsEqual(1, processor.cursor('line'))
+        self.assertIsEqual(8, processor.cursor('col'))
+
+    def testRuleAnchors(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+        processor.setContent('abc\nHello World!\nHi!')
+        processor.executeRules(r'eof;eopl')
+        self.assertIsEqual(3, processor.cursor('line'))
+        self.assertIsEqual(0, processor.cursor('col'))
+
+        processor.executeRules(r'eof;bof')
+        self.assertIsEqual(0, processor.cursor('line'))
+        self.assertIsEqual(0, processor.cursor('col'))
+
+        processor.executeRules(r'bof;>/W/ bol')
+        self.assertIsEqual(1, processor.cursor('line'))
+        self.assertIsEqual(0, processor.cursor('col'))
+
+        processor.executeRules(r'bof;>/W/;eol')
+        self.assertIsEqual(2, processor.cursor('line'))
+        self.assertIsEqual(0, processor.cursor('col'))
+
+        processor.executeRules(r'bof >/W/;bonl')
+        self.assertIsEqual(2, processor.cursor('line'))
+        self.assertIsEqual(0, processor.cursor('col'))
+
+        processor.executeRules(r'bof >/W/;eonl')
+        self.assertIsEqual(3, processor.cursor('line'))
+        self.assertIsEqual(0, processor.cursor('col'))
+
+        processor.executeRules(r'bof >/W/;bopl')
+        self.assertIsEqual(0, processor.cursor('line'))
+        self.assertIsEqual(0, processor.cursor('col'))
+
+        processor.executeRules(r'bof >/W/;eopl')
+        self.assertIsEqual(1, processor.cursor('line'))
+        self.assertIsEqual(0, processor.cursor('col'))
+
+    def testRuleReposition(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+        processor.setContent('abc\ndef\nHello World!\nHi\nGreetings!')
+        processor.executeRules(r'bof >/W/ +2:1')
+        self.assertIsEqual(2+2, processor.cursor('line'))
+        self.assertIsEqual(6+1, processor.cursor('col'))
+
+        processor.executeRules(r'bof >/W/ -2:1')
+        self.assertIsEqual(2-2, processor.cursor('line'))
+        self.assertIsEqual(6-1, processor.cursor('col'))
+
+        processor.executeRules(r'bof 2:3')
+        self.assertIsEqual(2, processor.cursor('line'))
+        self.assertIsEqual(3, processor.cursor('col'))
+
+
+    def testRuleMarkSwap(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+        processor.setContent('abc\ndef\nHello World!\nHi\nGreetings!')
+        processor.executeRules(r'bof >/W/;mark-b;-2:4;swap-b')
+        self.assertIsEqual(2, processor.cursor('line'))
+        self.assertIsEqual(6, processor.cursor('col'))
+
+    def testRuleSet(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+        processor.setContent('abc\ndef\nHello World!\nHi\nGreetings!')
+        processor.executeRules(r'bof >/W/;mark-z;>/!/e;set-Q-z set-A:"!Q!BA"e=!')
+        self.assertIsEqual('World!', processor._lastState.getRegister('Q'))
+        self.assertIsEqual('World!A', processor._lastState.getRegister('A'))
+
+    def testRuleAdd(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+        processor.setContent('abc\ndef\nHello World!\nHi\nGreetings!')
+        processor.executeRules(r'set-X:"+" bof >/W/ mark-z >/!/ set-A-z add-A:".!X."e=! add-A-A')
+        self.assertIsEqual('World.+.World.+.', processor._lastState.getRegister('A'))
+
+    def testRuleCut(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+
+        processor.setContent('a\n123\nZ')
+        processor.executeRules(r'bof >/2/;mark-b;+0:1;cut-b')
+        self.assertIsEqual('a\n13\nZ', '\n'.join(processor._lines))
+
+        processor.setContent('ab\n123\nZ')
+        processor.executeRules(r'bof >/b/;mark-b;>/3/;cut-b-Q')
+        self.assertIsEqual('a3\nZ', '\n'.join(processor._lines))
+        self.assertIsEqual('b\n12', processor._lastState.getRegister('Q'))
+
+    def testRuleInsert(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+
+        processor.setContent('ab\n123\nZ')
+        processor.executeRules(r'bof >/b/;mark-b;>/2/e;set-A-b;insert-A')
+        self.assertIsEqual('ab\n12b\n123\nZ', '\n'.join(processor._lines))
+        self.assertIsEqual(2, processor.cursor('line'))
+        self.assertIsEqual(2, processor.cursor('col'))
+
+        processor.setContent('a\n123\nZ')
+        processor.executeRules(r'set-D:"$" set-E:":" bof >/2/;mark-f;insert:"?EFoo?D"e=?')
+        self.assertIsEqual('a\n1:Foo$23\nZ', '\n'.join(processor._lines))
+        self.assertIsEqual(1, processor.cursor('line'))
+        self.assertIsEqual(6, processor.cursor('col'))
+
+    def testRuleGroup(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+
+        processor.setContent('ab\n123\nZ')
+        processor.executeRules(r'bof >/(\d+)/;group-1-Z')
+        self.assertIsEqual('123', processor._lastState.getRegister('Z'))
+
+    def testRulePrint(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+
+        processor.setContent('ab\n123\nZ')
+        processor.executeRules(r'set-Z:"&" bof >/2/;mark-g;</b/;set-X-g;print-g;print:"%Z%Zreg-x: "e=%;print-X')
+        self.assertTrue(processor._lastState is not None and processor._lastState._success)
+
+    def testRuleReplace(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+
+        processor.setContent('ab\n123\nZ')
+        processor.executeRules(r'1:0 replace:/\d+/#/')
+        self.assertTrue(processor._lastState is not None and processor._lastState._success)
+        self.assertIsEqual('#', processor._lines[1])
+
+        processor.setContent('ab')
+        processor.executeRules(r'set-R:"a123b" replace-R:/\d+/#/')
+        self.assertTrue(processor._lastState is not None and processor._lastState._success)
+        self.assertIsEqual('a#b', processor._lastState.getRegister('R'))
+
+        processor.setContent('abc\n123456\nxyz')
+        processor.executeRules(r'>/2/ mark-a >/5/ replace-a:/\d/#/')
+        self.assertTrue(processor._lastState is not None and processor._lastState._success)
+        self.assertIsEqual('1###56', processor._lines[1])
+
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+        processor.setContent('abc\n123456\nxyz')
+        processor.executeRules(r'>/c/ mark-a >/z/ replace-a:/./#/')
+        self.assertTrue(processor._lastState is not None and processor._lastState._success)
+        self.assertIsEqual('ab#\n######\n##z', '\n'.join(processor._lines))
+
+    def testRuleJump(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+
+        processor.setContent('ab\n123\nZ')
+        processor.executeRules(r'bof >/b/ jump:%X% +2:1 %X%:')
+        self.assertTrue(processor._lastState is not None and processor._lastState._success)
+        self.assertIsEqual(0, processor.cursor('line'))
+        self.assertIsEqual(1, processor.cursor('col'))
+
+        processor.setContent('ab\n123\nZ')
+        processor.executeRules(r'>/b/ mark-f >/3/ jump-f')
+        self.assertTrue(processor._lastState is not None and processor._lastState._success)
+        self.assertIsEqual(0, processor.cursor('line'))
+        self.assertIsEqual(1, processor.cursor('col'))
+
+    def testFlowControlOnSuccess(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+        processor.setContent('ab\n123\nZ')
+        processor.executeRules(r'bof;success:%x%; +1:0 %x%: +1:0')
+        self.assertIsEqual(1, processor.cursor('line'))
+
+    def testRuleExpr(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+
+        processor.setContent('ab')
+        # ............................................5..........2..........16..........5
+        processor.executeRules(r'set-A:"5" expr-B:"+$A" expr-B:"-3" expr-B:"*8" expr-B:"/3"')
+        self.assertTrue(processor._lastState is not None and processor._lastState._success)
+        self.assertIsEqual('5', processor._lastState.getRegister('B'))
+
+    def testRuleState(self):
+        if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+
+        processor.setContent('ab\n1234567\n# end of file')
+        # ............................................5..........2..........16..........5
+        processor.executeRules(r'1:4 state-A:"row" state-B:"col" state-C:"rows" set-Z:"$A:$B:$C"e=$')
+        self.assertTrue(processor._lastState is not None and processor._lastState._success)
+        self.assertIsEqual('2:5:3', processor._lastState.getRegister('Z'))
+
+    def testInsertOrReplace(self):
+        #if DEBUG: return
+        processor = base.TextProcessor.TextProcessor(self._logger)
+        processor._traceFile = self._trace
+
+        processor.setContent('#! /bin/sh\n  abc=123\nx')
+        processor.insertOrReplace(r'\s*abc\s*=\s*\d+', '  abc=456')
+        self.assertIsEqual(3, len(processor._lines))
+        self.assertIsEqual('  abc=456', processor._lines[1])
+
+        processor.insertOrReplace(r'\s*xyz\s*=\s*\d+', 'xyz=Hi', '/bin/sh')
+        self.assertIsEqual(4, len(processor._lines))
+        self.assertIsEqual('xyz=Hi', processor._lines[1])
+
+        processor.insertOrReplace(r'\s*k\s*=\s*\d+', 'k=99', 'end of file', above=True)
+        self.assertIsEqual(5, len(processor._lines))
+        self.assertIsEqual('k=99', processor._lines[4])
+
+        processor.insertOrReplace(r'LLL=', 'LLL=blub', 'not available', above=True)
+        self.assertIsEqual(6, len(processor._lines))
+        self.assertIsEqual('LLL=blub', processor._lines[5])
+
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = TextProcessorTest()
+    tester.run()
diff --git a/unittest/base/UsageInfoTest.py b/unittest/base/UsageInfoTest.py
new file mode 100644 (file)
index 0000000..019cfce
--- /dev/null
@@ -0,0 +1,264 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+import datetime
+
+from unittest.UnitTestCase import UnitTestCase
+import base.MemoryLogger
+import base.UsageInfo
+
+DEBUG = False
+
+
+class UsageInfoTest(UnitTestCase):
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testBasics(self):
+        logger = base.MemoryLogger.MemoryLogger()
+        info = base.UsageInfo.UsageInfo(logger)
+        info.appendDescription('''example <mode>
+ displays this example
+''')
+        info.addMode('help', '''help <pattern>
+ display a help message
+  <pattern>: only matching modes will be displayed
+ ''', 'APP-NAME help')
+        current = info.asString('help', 1)
+        self.assertIsEqual('''example <mode>
+  displays this example
+<mode>:
+    help <pattern>
+      display a help message
+        <pattern>: only matching modes will be displayed
+Examples:
+APP-NAME help''', current)
+
+    def testBoolOption(self):
+        if DEBUG:
+            return
+        processor = base.UsageInfo.OptionProcessor(self._logger)
+        processor.add(base.UsageInfo.Option('ignore-case', 'i', 'the search is case insensitive',
+                                            'bool'))
+        option = processor.optionByName('ignore-case')
+        self.assertNotNone(option)
+        self.assertFalse(option._value)
+        self.assertFalse(option._defaultValue)
+        self.assertTrue(processor.scan(['--ignore-case']))
+        self.assertTrue(option._value)
+        self.assertTrue(processor.scan(['--ignore-case=FALSE']))
+        self.assertFalse(option._value)
+        self.assertTrue(processor.scan(['--ignore-case=True']))
+        self.assertTrue(option._value)
+        self.assertTrue(processor.scan(['--ignore-case=f']))
+        self.assertFalse(option._value)
+        self.assertTrue(processor.scan(['--ignore-case=t']))
+        self.assertTrue(option._value)
+
+        self.assertTrue(processor.scan(['-i']))
+        self.assertTrue(option._value)
+        self.assertTrue(processor.scan(['-iFALSE']))
+        self.assertFalse(option._value)
+        self.assertTrue(processor.scan(['-iTrue']))
+        self.assertTrue(option._value)
+        self.assertTrue(processor.scan(['-if']))
+        self.assertFalse(option._value)
+        self.assertTrue(processor.scan(['-it']))
+        self.assertTrue(option._value)
+
+    def testBoolOptionError(self):
+        if DEBUG:
+            return
+        processor = base.UsageInfo.OptionProcessor(self._logger)
+        processor.add(base.UsageInfo.Option('ignore-case', 'i', 'the search is case insensitive',
+                                            'bool'))
+        option = processor.optionByName('ignore-case')
+        self.assertNotNone(option)
+        self.assertFalse(option._value)
+        self.assertFalse(option._defaultValue)
+        self.assertFalse(processor.scan(['--ignore-case=yes']))
+        self._logger.contains('not a bool value')
+        self.assertFalse(processor.scan(['--ignoreit']))
+        self._logger.contains('unknown option')
+
+    def testIntOption(self):
+        if DEBUG:
+            return
+        processor = base.UsageInfo.OptionProcessor(self._logger)
+        processor.add(base.UsageInfo.Option(
+            'index', 'i', 'index to inspect', 'int', 0))
+        option = processor.optionByName('index')
+        self.assertNotNone(option)
+        self.assertIsEqual(0, option._value)
+        self.assertIsEqual(0, option._defaultValue)
+        self.assertTrue(processor.scan(['--index=-3']))
+        self.assertIsEqual(-3, option._value)
+        self.assertTrue(processor.scan(['-i0x33']))
+        self.assertIsEqual(0x33, option._value)
+
+    def testFloatOption(self):
+        if DEBUG:
+            return
+        processor = base.UsageInfo.OptionProcessor(self._logger)
+        processor.add(base.UsageInfo.Option(
+            'sum', 's', 'sum to process', 'float', 0.0))
+        option = processor.optionByName('sum')
+        self.assertNotNone(option)
+        self.assertIsEqual(0.0, option._value)
+        self.assertIsEqual(0.0, option._defaultValue)
+        self.assertTrue(processor.scan(['--sum=1E-2']))
+        self.assertIsEqual(1E-2, option._value)
+        self.assertTrue(processor.scan(['-s0xa']))
+        self.assertIsEqual(10.0, option._value)
+
+    def testRegExprOption(self):
+        if DEBUG:
+            return
+        processor = base.UsageInfo.OptionProcessor(self._logger)
+        processor.add(base.UsageInfo.Option(
+            'file', 'f', 'File to process', 'regexpr'))
+        option = processor.optionByName('file')
+        self.assertNotNone(option)
+        self.assertIsEqual(None, option._value)
+        self.assertIsEqual(None, option._defaultValue)
+        self.assertTrue(processor.scan([r'--file=^.*\.(txt|doc)$']))
+        self.assertNotNone(option._value.match('x.txt'))
+        self.assertNone(option._value.match('x.data'))
+        self.assertTrue(processor.scan([r'-f^(blue|green)\.css$']))
+        self.assertNotNone(option._value.match('blue.css'))
+        self.assertNone(option._value.match('blue.html'))
+
+    def testRegSizeOption(self):
+        if DEBUG:
+            return
+        processor = base.UsageInfo.OptionProcessor(self._logger)
+        processor.add(base.UsageInfo.Option(
+            'min-size', 'm', 'minimal file size', 'size', '8kibyte'))
+        option = processor.optionByName('min-size')
+        self.assertNotNone(option)
+        self.assertIsEqual(8 * 1024, option._value)
+        self.assertIsEqual(8 * 1024, option._defaultValue)
+        self.assertTrue(processor.scan([r'--min-size=3M']))
+        self.assertIsEqual(3 * 1000 * 1000, option._value)
+        self.assertTrue(processor.scan([r'-m123']))
+        self.assertIsEqual(123, option._value)
+
+    def testDateOption(self):
+        if DEBUG:
+            return
+        processor = base.UsageInfo.OptionProcessor(self._logger)
+        processor.add(base.UsageInfo.Option(
+            'younger-than', 'y', 'minimal file date', 'date', '1.1.1970'))
+        option = processor.optionByName('younger-than')
+        epoche = datetime.datetime(1970, 1, 1)
+        self.assertNotNone(option)
+        self.assertIsEqual(str(epoche), str(option._value))
+        self.assertIsEqual(str(epoche), str(option._defaultValue))
+        self.assertTrue(processor.scan([r'--younger-than=2020-07-02']))
+        self.assertIsEqual('2020-07-02 00:00:00', str(option._value))
+        self.assertTrue(processor.scan([r'-y3.2.1999']))
+        self.assertIsEqual('1999-02-03 00:00:00', str(option._value))
+
+    def testDateTimeOption(self):
+        if DEBUG:
+            return
+        processor = base.UsageInfo.OptionProcessor(self._logger)
+        processor.add(base.UsageInfo.Option(
+            'younger-than', 'y', 'minimal file date', 'datetime', '1.1.1970T0:0:0'))
+        option = processor.optionByName('younger-than')
+        epoche = datetime.datetime(1970, 1, 1)
+        self.assertNotNone(option)
+        self.assertIsEqual(str(epoche), str(option._value))
+        self.assertIsEqual(str(epoche), str(option._defaultValue))
+        self.assertTrue(processor.scan([r'--younger-than=2020.07.02T3:4']))
+        self.assertIsEqual('2020-07-02 03:04:00', str(option._value))
+        self.assertTrue(processor.scan([r'-y3.2.1999-23:59:59']))
+        self.assertIsEqual('1999-02-03 23:59:59', str(option._value))
+
+    def testStringOption(self):
+        if DEBUG:
+            return
+        processor = base.UsageInfo.OptionProcessor(self._logger)
+        processor.add(base.UsageInfo.Option(
+            'name', 'n', 'name of the project', 'string', 'master'))
+        option = processor.optionByName('name')
+        self.assertNotNone(option)
+        self.assertIsEqual('master', option._value)
+        self.assertIsEqual('master', option._defaultValue)
+        self.assertTrue(processor.scan([r'--name=Joe']))
+        self.assertIsEqual('Joe', option._value)
+        self.assertTrue(processor.scan([r'-nThea']))
+        self.assertIsEqual('Thea', option._value)
+
+    def testExtendUsageInfoWithOptions(self):
+        if DEBUG:
+            return
+        info = base.UsageInfo.UsageInfo(self._logger)
+        info.appendDescription('''example <mode>
+ displays this example
+''')
+        info.addMode('help', '''help <pattern>
+ display a help message
+  <pattern>: only matching modes will be displayed
+ ''', 'APP-NAME help')
+        info.addModeOption('help', base.UsageInfo.Option(
+            'verbose', 'v', 'display more information ("verbose")', 'bool'))
+        info.addModeOption('help', base.UsageInfo.Option(
+            'name', 'n', 'name of the project'))
+        info.extendUsageInfoWithOptions('help')
+        current = info._descriptions['help']
+        self.assertIsEqual('''help <pattern>
+ display a help message
+  <pattern>: only matching modes will be displayed
+  <options>:
+  --name=<string> or -n=<string>:
+   name of the project
+  --verbose or -v:
+   display more information ("verbose")
+''', current)
+
+    def testMatch(self):
+        if DEBUG:
+            return
+        self.assertTrue(base.UsageInfo.UsageInfo.matches('verb', 'verbose'))
+        self.assertTrue(base.UsageInfo.UsageInfo.matches(
+            'long-int', 'long-int'))
+        self.assertTrue(base.UsageInfo.UsageInfo.matches('long', 'long-int'))
+        self.assertTrue(base.UsageInfo.UsageInfo.matches('l-i', 'long-int'))
+        self.assertTrue(base.UsageInfo.UsageInfo.matches('lo-int', 'long-int'))
+        self.assertFalse(
+            base.UsageInfo.UsageInfo.matches('lo-int-', 'long-int'))
+        self.assertFalse(base.UsageInfo.UsageInfo.matches('int', 'long-int'))
+        self.assertFalse(
+            base.UsageInfo.UsageInfo.matches('longint', 'long-int'))
+
+    def testOptionMatches(self):
+        if DEBUG:
+            return
+        info = base.UsageInfo.UsageInfo(self._logger)
+        info.appendDescription('''example <mode>
+ displays this example
+''')
+        mode = 'help'
+        info.addMode(mode, '''help <pattern>
+ display a help message
+  <pattern>: only matching modes will be displayed
+ ''', 'APP-NAME help')
+        info.addModeOption(mode, base.UsageInfo.Option(
+            'verbose', 'v', 'x', 'bool'))
+        info.addModeOption(mode, base.UsageInfo.Option(
+            'version', 'V', 'y', 'bool'))
+        processsor = info.currentOptionProcessor(mode)
+        self.assertTrue(processsor.scan(['--vers']))
+        self._logger.log('2 errors...')
+        self.assertFalse(processsor.scan(['--ver']))
+        self.assertFalse(processsor.scan(['--Ver']))
+
+
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = UsageInfoTest()
+    tester.run()
diff --git a/unittest/data/etc.tgz b/unittest/data/etc.tgz
new file mode 100644 (file)
index 0000000..f4945c0
Binary files /dev/null and b/unittest/data/etc.tgz differ
diff --git a/unittest/data/etc.work.tgz b/unittest/data/etc.work.tgz
new file mode 100644 (file)
index 0000000..b58ab2f
Binary files /dev/null and b/unittest/data/etc.work.tgz differ
diff --git a/unittest/data/example.html b/unittest/data/example.html
new file mode 100644 (file)
index 0000000..7c734b2
--- /dev/null
@@ -0,0 +1 @@
+<html><body><p>Hi</p></body></html>
diff --git a/unittest/data/example.sh b/unittest/data/example.sh
new file mode 100644 (file)
index 0000000..102b1c6
--- /dev/null
@@ -0,0 +1,2 @@
+#! /bin/sh
+echo "Hi"
diff --git a/unittest/data/example.tar b/unittest/data/example.tar
new file mode 100644 (file)
index 0000000..f79a1a3
Binary files /dev/null and b/unittest/data/example.tar differ
diff --git a/unittest/data/example.tbz b/unittest/data/example.tbz
new file mode 100644 (file)
index 0000000..b215332
Binary files /dev/null and b/unittest/data/example.tbz differ
diff --git a/unittest/data/example.tgz b/unittest/data/example.tgz
new file mode 100644 (file)
index 0000000..407e34e
Binary files /dev/null and b/unittest/data/example.tgz differ
diff --git a/unittest/data/example.txt b/unittest/data/example.txt
new file mode 100644 (file)
index 0000000..c981298
--- /dev/null
@@ -0,0 +1,35 @@
+hm@caribou:/home/ws/py/pyrshell/unittest$ ls
+appl  configuration  __init__.py   net             __pycache__    UnitTestCase.py   UnitTestSuite.py
+base  data           __init__.pyc  PackageTest.py  sites-enabled  UnitTestCase.pyc
+hm@caribou:/home/ws/py/pyrshell/unittest$ cd data
+hm@caribou:/home/ws/py/pyrshell/unittest/data$ X=$(pwd)
+hm@caribou:/home/ws/py/pyrshell/unittest/data$ cd /etc
+hm@caribou:/etc$ g_rsh
+hm@caribou:/home/ws/py/pyrshell$ zip $X/example.zip *.sh
+  adding: 2biber.sh (deflated 3%)
+  adding: 2bt.sh (deflated 3%)
+  adding: 2dr.sh (deflated 3%)
+  adding: 2heu.sh (deflated 3%)
+  adding: 2indian.sh (deflated 3%)
+  adding: 2merkur.sh (deflated 3%)
+  adding: 2neptun.sh (deflated 3%)
+  adding: 2next.sh (deflated 3%)
+  adding: 2silenus.sh (deflated 3%)
+  adding: 2sky.sh (deflated 3%)
+  adding: 2tom.sh (deflated 3%)
+  adding: All.sh (deflated 21%)
+  adding: Env.sh (deflated 50%)
+  adding: MkTar.sh (deflated 16%)
+  adding: unpackShell.sh (stored 0%)
+  adding: upd-monitor.sh (deflated 20%)
+hm@caribou:/home/ws/py/pyrshell$ tar $X/example.tar *.sh
+tar: Ungültige Option -- „/“
+„tar --help“ oder „tar --usage“ gibt weitere Informationen.
+hm@caribou:/home/ws/py/pyrshell$ tar cf $X/example.tar *.sh
+hm@caribou:/home/ws/py/pyrshell$ tar czf $X/example.tgz *.sh
+hm@caribou:/home/ws/py/pyrshell$ tar cjf $X/example.tbz *.sh
+hm@caribou:/home/ws/py/pyrshell$ cd $X
+hm@caribou:/home/ws/py/pyrshell/unittest/data$ cat >example.html
+<html><body><p>Hi</p></body></html>
+hm@caribou:/home/ws/py/pyrshell/unittest/data$ cat example.sh
+cat: example.sh: Datei oder Verzeichnis nicht gefunden
diff --git a/unittest/data/example.zip b/unittest/data/example.zip
new file mode 100644 (file)
index 0000000..a21aca6
Binary files /dev/null and b/unittest/data/example.zip differ
diff --git a/unittest/data/examples2.tgz b/unittest/data/examples2.tgz
new file mode 100644 (file)
index 0000000..e33740c
Binary files /dev/null and b/unittest/data/examples2.tgz differ
diff --git a/unittest/data/monitor/localhost.dump.txt b/unittest/data/monitor/localhost.dump.txt
new file mode 100644 (file)
index 0000000..510c939
--- /dev/null
@@ -0,0 +1,68 @@
+receivergroup "":
+   error: default-error@hamatoma.de defaultroot@hamatoma.de
+   warning: default_warn@hamatoma.de second_warn@hamatoma.de
+receivergroup "globalGroup":
+   error: global_warn@hamatoma.de global_pit@hamatoma.de
+   warning: global_warn@hamatoma.de global_monitor@hamatoma.de
+receivergroup "group1":
+   error: critical1@hamatoma.de
+   warning: maybe1@hamatoma.de
+smtphost "":
+   code: 1G.e.h.t.H.e.i.m
+   host: smtp.gmx.de
+   port: 587
+   sender: hm.neutral@gmx.de
+   tls: True
+   user: hm.neutral@gmx.de
+===
+host "":
+   address: localhost
+   receivergroup "":
+      error: default-error@hamatoma.de defaultroot@hamatoma.de
+      warning: default_warn@hamatoma.de second_warn@hamatoma.de
+   load1: 4.0 5.0 ""
+   load10: 2.2 3.2 ""
+   load5: 3.1 4.1 ""
+   processes: 500 1000 ""
+   swap: 50 100 ""
+   disk "":
+      receivergroup "":
+         error: 
+         warning: 
+      used: 81% 91% ""
+   disk "/":
+      receivergroup "globalGroup":
+         error: global_warn@hamatoma.de global_pit@hamatoma.de
+         warning: global_warn@hamatoma.de global_monitor@hamatoma.de
+      used: 70% 80% "globalGroup"
+===
+host "localhost":
+   address: 127.0.0.1
+   receivergroup "group1":
+      error: critical1@hamatoma.de
+      warning: maybe1@hamatoma.de
+   load1: 3.3 5.3 "group1"
+   load10: 1.5 2.5 "globalGroup"
+   load5: 2.4 3.4 "group1"
+   processes: 502 1002 "group1"
+   swap: 10 90 "group1"
+   disk "":
+      receivergroup "":
+         error: 
+         warning: 
+      used: 81% 91% ""
+   disk "/":
+      receivergroup "globalGroup":
+         error: global_warn@hamatoma.de global_pit@hamatoma.de
+         warning: global_warn@hamatoma.de global_monitor@hamatoma.de
+      used: 70% 80% "globalGroup"
+   disk "/home":
+      receivergroup "group1":
+         error: critical1@hamatoma.de
+         warning: maybe1@hamatoma.de
+      used: 83% 93% ""
+   disk "/opt":
+      receivergroup "":
+         error: 
+         warning: 
+      used: 84% 94% ""
diff --git a/unittest/net/EMailTest.py b/unittest/net/EMailTest.py
new file mode 100644 (file)
index 0000000..11272d8
--- /dev/null
@@ -0,0 +1,85 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+from unittest.UnitTestCase import UnitTestCase
+import base.MemoryLogger
+import base.StringUtils
+import net.EMail
+
+DEBUG = False
+
+class EMailTest(UnitTestCase):
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testBasics(self):
+        if DEBUG: return
+        logger = base.MemoryLogger.MemoryLogger()
+        email = net.EMail.EMail('Testmail von Python', 'Hi!\nHat funktioniert', '''
+<html>
+<body>
+<h1>Hi</h1>
+<p>Hat funktioniert!</p
+</body>
+</html>
+''')
+        config = base.StringUtils.privateConfig()
+        user = 'hm.neutral@gmx.de'
+        code = config.getString('EMailTest.code.hm.neutral')
+        email.setSmtpLogin('mail.gmx.net', 587, user, code, True, user)
+        #code = config.getString('EMailTest.code.bigtoy.by')
+        user = 'bigtoy-by@gmx.de'
+        email.setSmtpLogin('smtp.gmx.de', 587, user, code, True, user)
+
+        email.sendTo('wk64@gmx.de', None, None, logger)
+        signature = email.lastSignature()
+        self.assertIsEqual('smtp.gmx.de|587|bigtoy-by@gmx.de|{}|bigtoy-by@gmx.de|wk64@gmx.de'.format(code), signature)
+        logger.contains('email "Testmail von Python" sent to wk64@gmx.de')
+
+    def testEmailWithCC(self):
+        #if DEBUG: return
+        logger = base.MemoryLogger.MemoryLogger()
+        config = base.StringUtils.privateConfig()
+        code = config.getString('EMailTest.code.bigtoy.by')
+        user = 'bigtoy-by@gmx.de'
+        email = net.EMail.EMail('Testmail+cc', 'Hi!\nHat funktioniert')
+        email.setSmtpLogin('smtp.gmx.de', 587, user, code, True, user)
+        email.sendTo('wk64@gmx.de', 'test1@hamatoma.de+test2@hamatoma.de', None, logger)
+        signature = email.lastSignature()
+        self.assertIsEqual('smtp.gmx.de|587|bigtoy-by@gmx.de|{}|bigtoy-by@gmx.de|wk64@gmx.de'.format(code), signature)
+        logger.contains('email "Testmail+cc" sent to wk64@gmx.de')
+
+    def testEmailWithBCC(self):
+        if DEBUG: return
+        logger = base.MemoryLogger.MemoryLogger()
+        config = base.StringUtils.privateConfig()
+        code = config.getString('EMailTest.code.bigtoy.by')
+        user = 'bigtoy-by@gmx.de'
+        email = net.EMail.EMail('Testmail+bcc', 'Hi!\nHat funktioniert')
+        email.setSmtpLogin('smtp.gmx.de', 587, user, code, True, user)
+        email.sendTo('wk64@gmx.de', None, 'test1@hamatoma.de+test2@hamatoma.de', logger)
+        signature = email.lastSignature()
+        self.assertIsEqual('smtp.gmx.de|587|bigtoy-by@gmx.de|{}|bigtoy-by@gmx.de|wk64@gmx.de'.format(code), signature)
+        logger.contains('email "Testmail+bcc" sent to wk64@gmx.de')
+
+    def testSendSimpleEmail(self):
+        if DEBUG: return
+        logger = base.MemoryLogger.MemoryLogger(0, 0)
+        config = base.StringUtils.privateConfig()
+        code = config.getString('EMailTest.code.bigtoy.by')
+        user = 'bigtoy-by@gmx.de'
+        signature = net.EMail.sendSimpleEMail('wk64@gmx.de', 'test sendSimpleEMail', 'It works',
+            user, 'smtp.gmx.de', 587, user, code, True, logger)
+        # .................smtp.gmx.de|587|bigtoy-by@gmx.de|1G.e.h.t.H.e.i.m|bigtoy-by@gmx.de|wk64@gmx.de
+        self.assertIsEqual('smtp.gmx.de|587|bigtoy-by@gmx.de|{}|bigtoy-by@gmx.de|wk64@gmx.de'.format(code), signature)
+        current = logger.getMessages()
+        self.assertIsEqual(0, len(current))
+
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = EMailTest()
+    tester.run()
diff --git a/unittest/net/HttpClientTest.py b/unittest/net/HttpClientTest.py
new file mode 100644 (file)
index 0000000..9c9f17e
--- /dev/null
@@ -0,0 +1,54 @@
+'''
+Created on 12.04.2018
+
+@author: hm
+'''
+import re
+
+from unittest.UnitTestCase import UnitTestCase
+import base.MemoryLogger
+import net.HttpClient
+
+DEBUG = False
+
+class HttpClientTest(UnitTestCase):
+
+    def debugFlag(self):
+        base.StringUtils.avoidWarning(self)
+        return DEBUG
+
+    def testGetContent(self):
+        if DEBUG: return
+        logger = base.MemoryLogger.MemoryLogger()
+        client = net.HttpClient.HttpClient(logger, 2)
+        content = client.getContent('http://ip.hamatoma.de', 1)
+        self.assertMatches(r'(\d+\.){3}\d+', content)
+        content = client.getContent('https://wiki.hamatoma.de', 3)
+        self.assertTrue(content.startswith('<!DOCTYPE html>'))
+
+    def testGetHeader(self):
+        if DEBUG: return
+        logger = base.MemoryLogger.MemoryLogger()
+        client = net.HttpClient.HttpClient(logger, 2)
+        headers = client.getHead('https://wiki.hamatoma.de', 3)
+        self.assertTrue(headers is not None and 'Content-Type' in headers)
+
+    def testGetHeaderField(self):
+        if DEBUG: return
+        logger = base.MemoryLogger.MemoryLogger()
+        client = net.HttpClient.HttpClient(logger, 2)
+        client.getHead('https://wiki.hamatoma.de', 3)
+        item = client.getHeaderField('content-type')
+        self.assertIsEqual('text/html; charset=UTF-8', item)
+
+    def testPutSimpleRest(self):
+        if DEBUG: return
+        logger = base.MemoryLogger.MemoryLogger(1)
+        client = net.HttpClient.HttpClient(logger, 2)
+        client.putSimpleRest('https://wiki.hamatoma.de', 'test', 'data', { 'a': 'b'})
+        self.assertIsEqual(client._response.status, 405)
+
+if __name__ == '__main__':
+    #import sys;sys.argv = ['', 'Test.testName']
+    tester = HttpClientTest()
+    tester.run()
diff --git a/wirnoi.sql b/wirnoi.sql
new file mode 100644 (file)
index 0000000..6c5da9a
--- /dev/null
@@ -0,0 +1,771 @@
+-- MariaDB dump 10.19  Distrib 10.5.12-MariaDB, for debian-linux-gnu (x86_64)
+--
+-- Host: localhost    Database: wpwirnoi
+-- ------------------------------------------------------
+-- Server version      10.5.12-MariaDB-0+deb11u1
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8mb4 */;
+/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
+/*!40103 SET TIME_ZONE='+00:00' */;
+/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
+/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
+
+--
+-- Table structure for table `wp_actionscheduler_actions`
+--
+
+DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_actionscheduler_actions` (
+  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `hook` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
+  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
+  `args` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  `schedule` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `attempts` int(11) NOT NULL DEFAULT 0,
+  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
+  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
+  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  PRIMARY KEY (`action_id`),
+  KEY `hook` (`hook`),
+  KEY `status` (`status`),
+  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
+  KEY `args` (`args`),
+  KEY `group_id` (`group_id`),
+  KEY `last_attempt_gmt` (`last_attempt_gmt`),
+  KEY `claim_id` (`claim_id`),
+  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
+) ENGINE=InnoDB AUTO_INCREMENT=188 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_actionscheduler_actions`
+--
+
+LOCK TABLES `wp_actionscheduler_actions` WRITE;
+/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
+INSERT INTO `wp_actionscheduler_actions` VALUES (167,'action_scheduler/migration_hook','complete','2022-02-08 15:57:59','2022-02-08 16:57:59','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644335879;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644335879;}',1,1,'2022-02-08 19:11:55','2022-02-08 20:11:55',0,NULL),(168,'wp_mail_smtp_summary_report_email','complete','2022-02-14 13:00:00','2022-02-14 14:00:00','[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1644843600;s:18:\"\0*\0first_timestamp\";i:1644843600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1644843600;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',2,1,'2022-02-14 13:00:21','2022-02-14 14:00:21',0,NULL),(169,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[2]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-02-09 09:10:36','2022-02-09 10:10:36',0,NULL),(170,'action_scheduler/migration_hook','complete','2022-02-09 14:17:54','2022-02-09 15:17:54','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644416274;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644416274;}',1,1,'2022-02-09 14:19:51','2022-02-09 15:19:51',0,NULL),(171,'action_scheduler/migration_hook','complete','2022-02-09 14:20:51','2022-02-09 15:20:51','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644416451;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644416451;}',1,1,'2022-02-09 14:21:40','2022-02-09 15:21:40',0,NULL),(172,'action_scheduler/migration_hook','complete','2022-02-09 14:43:00','2022-02-09 15:43:00','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1644417780;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1644417780;}',1,1,'2022-02-09 14:43:05','2022-02-09 15:43:05',0,NULL),(173,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[3]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-02-10 09:16:07','2022-02-10 10:16:07',0,NULL),(174,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[4]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-02-11 09:19:49','2022-02-11 10:19:49',0,NULL),(175,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[5]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-02-13 09:02:29','2022-02-13 10:02:29',0,NULL),(176,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[6]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-02-13 09:02:30','2022-02-13 10:02:30',0,NULL),(177,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[7]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-02-14 11:17:01','2022-02-14 12:17:01',0,NULL),(178,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[8]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-02-14 11:17:01','2022-02-14 12:17:01',0,NULL),(179,'wp_mail_smtp_summary_report_email','complete','2022-02-21 13:00:21','2022-02-21 14:00:21','[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1645448421;s:18:\"\0*\0first_timestamp\";i:1644843600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1645448421;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',2,1,'2022-02-21 13:01:18','2022-02-21 14:01:18',0,NULL),(180,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[9]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-02-15 15:13:57','2022-02-15 16:13:57',0,NULL),(181,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[10]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-02-17 16:25:25','2022-02-17 17:25:25',0,NULL),(182,'action_scheduler/migration_hook','complete','2022-02-18 09:13:48','2022-02-18 10:13:48','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1645175628;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1645175628;}',1,1,'2022-02-18 09:13:58','2022-02-18 10:13:58',0,NULL),(183,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[11]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-02-18 16:36:59','2022-02-18 17:36:59',0,NULL),(184,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[12]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-02-20 17:38:40','2022-02-20 18:38:40',0,NULL),(185,'wp_mail_smtp_summary_report_email','pending','2022-02-28 13:01:18','2022-02-28 14:01:18','[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1646053278;s:18:\"\0*\0first_timestamp\";i:1644843600;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1646053278;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(186,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[13]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-02-22 09:18:00','2022-02-22 10:18:00',0,NULL),(187,'wp_mail_smtp_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[14]','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2022-02-24 16:05:04','2022-02-24 17:05:04',0,NULL);
+/*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_actionscheduler_claims`
+--
+
+DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_actionscheduler_claims` (
+  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  PRIMARY KEY (`claim_id`),
+  KEY `date_created_gmt` (`date_created_gmt`)
+) ENGINE=InnoDB AUTO_INCREMENT=4478 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_actionscheduler_claims`
+--
+
+LOCK TABLES `wp_actionscheduler_claims` WRITE;
+/*!40000 ALTER TABLE `wp_actionscheduler_claims` DISABLE KEYS */;
+/*!40000 ALTER TABLE `wp_actionscheduler_claims` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_actionscheduler_groups`
+--
+
+DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_actionscheduler_groups` (
+  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  PRIMARY KEY (`group_id`),
+  KEY `slug` (`slug`(191))
+) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_actionscheduler_groups`
+--
+
+LOCK TABLES `wp_actionscheduler_groups` WRITE;
+/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
+INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wp_mail_smtp');
+/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_actionscheduler_logs`
+--
+
+DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_actionscheduler_logs` (
+  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `action_id` bigint(20) unsigned NOT NULL,
+  `message` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
+  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
+  PRIMARY KEY (`log_id`),
+  KEY `action_id` (`action_id`),
+  KEY `log_date_gmt` (`log_date_gmt`)
+) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_actionscheduler_logs`
+--
+
+LOCK TABLES `wp_actionscheduler_logs` WRITE;
+/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
+INSERT INTO `wp_actionscheduler_logs` VALUES (1,167,'action created','2022-02-08 15:56:59','2022-02-08 16:56:59'),(2,167,'action started via Async Request','2022-02-08 19:11:55','2022-02-08 20:11:55'),(3,167,'action complete via Async Request','2022-02-08 19:11:55','2022-02-08 20:11:55'),(4,168,'action created','2022-02-08 19:12:46','2022-02-08 20:12:46'),(5,169,'action created','2022-02-08 19:12:46','2022-02-08 20:12:46'),(6,169,'action started via WP Cron','2022-02-09 09:10:36','2022-02-09 10:10:36'),(7,169,'action complete via WP Cron','2022-02-09 09:10:36','2022-02-09 10:10:36'),(8,170,'action created','2022-02-09 14:16:54','2022-02-09 15:16:54'),(9,170,'action started via WP Cron','2022-02-09 14:19:51','2022-02-09 15:19:51'),(10,170,'action complete via WP Cron','2022-02-09 14:19:51','2022-02-09 15:19:51'),(11,171,'action created','2022-02-09 14:19:51','2022-02-09 15:19:51'),(12,171,'action started via WP Cron','2022-02-09 14:21:40','2022-02-09 15:21:40'),(13,171,'action complete via WP Cron','2022-02-09 14:21:40','2022-02-09 15:21:40'),(14,172,'action created','2022-02-09 14:42:00','2022-02-09 15:42:00'),(15,172,'action started via WP Cron','2022-02-09 14:43:05','2022-02-09 15:43:05'),(16,172,'action complete via WP Cron','2022-02-09 14:43:05','2022-02-09 15:43:05'),(17,173,'action created','2022-02-10 09:14:58','2022-02-10 10:14:58'),(18,173,'action started via WP Cron','2022-02-10 09:16:07','2022-02-10 10:16:07'),(19,173,'action complete via WP Cron','2022-02-10 09:16:07','2022-02-10 10:16:07'),(20,174,'action created','2022-02-11 09:19:46','2022-02-11 10:19:46'),(21,174,'action started via Async Request','2022-02-11 09:19:49','2022-02-11 10:19:49'),(22,174,'action complete via Async Request','2022-02-11 09:19:49','2022-02-11 10:19:49'),(23,175,'action created','2022-02-13 09:01:14','2022-02-13 10:01:14'),(24,176,'action created','2022-02-13 09:01:14','2022-02-13 10:01:14'),(25,175,'action started via WP Cron','2022-02-13 09:02:29','2022-02-13 10:02:29'),(26,175,'action complete via WP Cron','2022-02-13 09:02:29','2022-02-13 10:02:29'),(27,176,'action started via WP Cron','2022-02-13 09:02:29','2022-02-13 10:02:29'),(28,176,'action complete via WP Cron','2022-02-13 09:02:30','2022-02-13 10:02:30'),(29,177,'action created','2022-02-14 11:16:08','2022-02-14 12:16:08'),(30,178,'action created','2022-02-14 11:16:08','2022-02-14 12:16:08'),(31,177,'action started via WP Cron','2022-02-14 11:17:01','2022-02-14 12:17:01'),(32,177,'action complete via WP Cron','2022-02-14 11:17:01','2022-02-14 12:17:01'),(33,178,'action started via WP Cron','2022-02-14 11:17:01','2022-02-14 12:17:01'),(34,178,'action complete via WP Cron','2022-02-14 11:17:01','2022-02-14 12:17:01'),(35,168,'action started via WP Cron','2022-02-14 13:00:21','2022-02-14 14:00:21'),(36,168,'action complete via WP Cron','2022-02-14 13:00:21','2022-02-14 14:00:21'),(37,179,'action created','2022-02-14 13:00:21','2022-02-14 14:00:21'),(38,180,'action created','2022-02-15 15:03:34','2022-02-15 16:03:34'),(39,180,'action started via WP Cron','2022-02-15 15:13:57','2022-02-15 16:13:57'),(40,180,'action complete via WP Cron','2022-02-15 15:13:57','2022-02-15 16:13:57'),(41,181,'action created','2022-02-17 08:10:18','2022-02-17 09:10:18'),(42,181,'action started via Async Request','2022-02-17 16:25:25','2022-02-17 17:25:25'),(43,181,'action complete via Async Request','2022-02-17 16:25:25','2022-02-17 17:25:25'),(44,182,'action created','2022-02-18 09:12:48','2022-02-18 10:12:48'),(45,182,'action started via WP Cron','2022-02-18 09:13:58','2022-02-18 10:13:58'),(46,182,'action complete via WP Cron','2022-02-18 09:13:58','2022-02-18 10:13:58'),(47,183,'action created','2022-02-18 16:36:11','2022-02-18 17:36:11'),(48,183,'action started via WP Cron','2022-02-18 16:36:59','2022-02-18 17:36:59'),(49,183,'action complete via WP Cron','2022-02-18 16:36:59','2022-02-18 17:36:59'),(50,184,'action created','2022-02-20 17:37:46','2022-02-20 18:37:46'),(51,184,'action started via WP Cron','2022-02-20 17:38:40','2022-02-20 18:38:40'),(52,184,'action complete via WP Cron','2022-02-20 17:38:40','2022-02-20 18:38:40'),(53,179,'action started via WP Cron','2022-02-21 13:01:18','2022-02-21 14:01:18'),(54,179,'action complete via WP Cron','2022-02-21 13:01:18','2022-02-21 14:01:18'),(55,185,'action created','2022-02-21 13:01:18','2022-02-21 14:01:18'),(56,186,'action created','2022-02-22 09:17:26','2022-02-22 10:17:26'),(57,186,'action started via WP Cron','2022-02-22 09:18:00','2022-02-22 10:18:00'),(58,186,'action complete via WP Cron','2022-02-22 09:18:00','2022-02-22 10:18:00'),(59,187,'action created','2022-02-24 16:04:59','2022-02-24 17:04:59'),(60,187,'action started via WP Cron','2022-02-24 16:05:03','2022-02-24 17:05:03'),(61,187,'action complete via WP Cron','2022-02-24 16:05:04','2022-02-24 17:05:04');
+/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_commentmeta`
+--
+
+DROP TABLE IF EXISTS `wp_commentmeta`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_commentmeta` (
+  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  PRIMARY KEY (`meta_id`),
+  KEY `comment_id` (`comment_id`),
+  KEY `meta_key` (`meta_key`(191))
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_commentmeta`
+--
+
+LOCK TABLES `wp_commentmeta` WRITE;
+/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
+/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_comments`
+--
+
+DROP TABLE IF EXISTS `wp_comments`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_comments` (
+  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `comment_karma` int(11) NOT NULL DEFAULT 0,
+  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
+  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
+  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
+  PRIMARY KEY (`comment_ID`),
+  KEY `comment_post_ID` (`comment_post_ID`),
+  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
+  KEY `comment_date_gmt` (`comment_date_gmt`),
+  KEY `comment_parent` (`comment_parent`),
+  KEY `comment_author_email` (`comment_author_email`(10))
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_comments`
+--
+
+LOCK TABLES `wp_comments` WRITE;
+/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
+INSERT INTO `wp_comments` VALUES (1,1,'Ein WordPress-Kommentator','wapuu@wordpress.example','https://wordpress.org/','','2022-02-03 11:30:09','2022-02-03 10:30:09','Hallo, dies ist ein Kommentar.\nUm mit dem Freischalten, Bearbeiten und Löschen von Kommentaren zu beginnen, besuche bitte die Kommentare-Ansicht im Dashboard.\nDie Avatare der Kommentatoren kommen von <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0);
+/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_db7_forms`
+--
+
+DROP TABLE IF EXISTS `wp_db7_forms`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_db7_forms` (
+  `form_id` bigint(20) NOT NULL AUTO_INCREMENT,
+  `form_post_id` bigint(20) NOT NULL,
+  `form_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `form_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  PRIMARY KEY (`form_id`)
+) ENGINE=InnoDB AUTO_INCREMENT=213 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_db7_forms`
+--
+
+LOCK TABLES `wp_db7_forms` WRITE;
+/*!40000 ALTER TABLE `wp_db7_forms` DISABLE KEYS */;
+INSERT INTO `wp_db7_forms` VALUES (4,106,'a:12:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"your-name\";s:11:\"Future GmbH\";s:11:\"your-adress\";s:25:\"Leonardo da Vinci Str. 12\";s:8:\"your-PLZ\";s:11:\"39100 Bozen\";s:12:\"your-country\";s:7:\"Italien\";s:7:\"Bereich\";a:1:{i:0;s:7:\"Anderes\";}s:17:\"Mitarbeiteranzahl\";s:0:\"\";s:10:\"your-email\";s:23:\"loackerhannes@gmail.com\";s:12:\"Telefonmobil\";s:13:\"+393356080868\";s:26:\"WebseitedesUnternehmensURL\";s:0:\"\";s:14:\"acceptance-379\";s:1:\"1\";s:4:\"Logo\";s:32:\"eac55e2225aaedc46598a6d4fac782b0\";}','2022-02-10 14:46:27'),(5,106,'a:12:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"your-name\";s:28:\"Oberrauch Bernahrd Architekt\";s:11:\"your-adress\";s:14:\"Penegalstr.21a\";s:8:\"your-PLZ\";s:5:\"39100\";s:12:\"your-country\";s:5:\"Bozen\";s:7:\"Bereich\";a:1:{i:0;s:10:\"Baugewerbe\";}s:17:\"Mitarbeiteranzahl\";s:1:\"1\";s:10:\"your-email\";s:13:\"info@a-bo.net\";s:12:\"Telefonmobil\";s:11:\"329 0514476\";s:26:\"WebseitedesUnternehmensURL\";s:29:\"http:&#047;&#047;www.a-bo.net\";s:14:\"acceptance-379\";s:1:\"1\";s:4:\"Logo\";s:32:\"3a63a1bc77ed83a8ee4d7bfe0c3bf105\";}','2022-02-11 07:25:54'),(6,106,'a:12:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"your-name\";s:11:\"Gerwies-Hof\";s:11:\"your-adress\";s:18:\"Alte Landstraße 4\";s:8:\"your-PLZ\";s:5:\"39051\";s:12:\"your-country\";s:8:\"Branzoll\";s:7:\"Bereich\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:17:\"Mitarbeiteranzahl\";s:1:\"5\";s:10:\"your-email\";s:15:\"info@gerwies.it\";s:12:\"Telefonmobil\";s:13:\"+393471993150\";s:26:\"WebseitedesUnternehmensURL\";s:31:\"http:&#047;&#047;www.gerwies.it\";s:14:\"acceptance-379\";s:1:\"1\";s:4:\"Logo\";s:32:\"bd1e97400d813cad5b0e2d5b84293a27\";}','2022-02-13 14:06:49'),(7,106,'a:12:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"your-name\";s:10:\"Rothoblaas\";s:11:\"your-adress\";s:17:\"Etschweg 2&#047;1\";s:8:\"your-PLZ\";s:5:\"39040\";s:12:\"your-country\";s:9:\"Kurtatsch\";s:7:\"Bereich\";a:1:{i:0;s:6:\"Handel\";}s:17:\"Mitarbeiteranzahl\";s:3:\"480\";s:10:\"your-email\";s:27:\"robert.blaas@rothoblaas.com\";s:12:\"Telefonmobil\";s:13:\"+393356178082\";s:26:\"WebseitedesUnternehmensURL\";s:35:\"http:&#047;&#047;www.rothoblaas.com\";s:14:\"acceptance-379\";s:1:\"1\";s:4:\"Logo\";s:32:\"3925c14606843a91f275d8b78f5086b9\";}','2022-02-14 09:28:47'),(8,106,'a:12:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"your-name\";s:28:\"Studio Zingerle DDr. Helmuth\";s:11:\"your-adress\";s:13:\"Hauptplatz 35\";s:8:\"your-PLZ\";s:5:\"39040\";s:12:\"your-country\";s:4:\"Auer\";s:7:\"Bereich\";a:1:{i:0;s:13:\"Dienstleister\";}s:17:\"Mitarbeiteranzahl\";s:1:\"2\";s:10:\"your-email\";s:23:\"info@studiozingerle.com\";s:12:\"Telefonmobil\";s:10:\"3472737002\";s:26:\"WebseitedesUnternehmensURL\";s:39:\"http:&#047;&#047;www.studiozingerle.com\";s:14:\"acceptance-379\";s:1:\"1\";s:4:\"Logo\";s:32:\"b39efc55462a6db000a0df45bb7d6c30\";}','2022-02-14 11:33:22'),(9,106,'a:12:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"your-name\";s:31:\"Brimo KG d. Zingerle Vera & Co.\";s:11:\"your-adress\";s:13:\"Hauptplatz 35\";s:8:\"your-PLZ\";s:5:\"39040\";s:12:\"your-country\";s:4:\"Auer\";s:7:\"Bereich\";a:1:{i:0;s:6:\"Handel\";}s:17:\"Mitarbeiteranzahl\";s:1:\"1\";s:10:\"your-email\";s:23:\"vera@studiozingerle.com\";s:12:\"Telefonmobil\";s:10:\"3477239109\";s:26:\"WebseitedesUnternehmensURL\";s:0:\"\";s:14:\"acceptance-379\";s:1:\"1\";s:4:\"Logo\";s:32:\"a42884ced953997d64986bd8724e4fca\";}','2022-02-14 11:44:35'),(22,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Reinhard\";s:8:\"lastname\";s:6:\"Wehner\";s:11:\"companyname\";s:11:\"infeos GmbH\";s:7:\"address\";s:21:\"Via Luigi-Negrelli 15\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:7:\"Bolzano\";s:12:\"emailaddress\";s:25:\"reinhard.wehner@infeos.eu\";s:12:\"mobilenumber\";s:13:\"+393273220377\";s:13:\"websitedomain\";s:30:\"http:&#047;&#047;www.infeos.eu\";s:9:\"employees\";s:1:\"8\";s:7:\"branche\";a:2:{i:0;s:13:\"Dienstleister\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"4a21f693aedd765f9154720e77aebbf0\";}','2022-02-18 16:20:28'),(23,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Caroline\";s:8:\"lastname\";s:9:\"Bratschko\";s:11:\"companyname\";s:49:\"Studio für Schmerztherapie nach Liebscher&Bracht\";s:7:\"address\";s:13:\"Erbsengasse 8\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:33:\"studiocarolinebratschko@gmail.com\";s:12:\"mobilenumber\";s:10:\"3285972850\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"33678846b05fc83395a6247e88b2ad5c\";}','2022-02-18 22:55:29'),(24,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Andreas\";s:8:\"lastname\";s:9:\"Raffeiner\";s:11:\"companyname\";s:14:\"RAFFEINER GMBH\";s:7:\"address\";s:17:\"Maria Rast Weg 32\";s:8:\"postcode\";s:5:\"39057\";s:4:\"city\";s:5:\"Eppan\";s:12:\"emailaddress\";s:20:\"andreas@raffeiner.bz\";s:12:\"mobilenumber\";s:13:\"+393482223446\";s:13:\"websitedomain\";s:33:\"http:&#047;&#047;www.raffeiner.bz\";s:9:\"employees\";s:2:\"22\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:10:\"Baugewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"fd4c16274b02632d656968215b2c0230\";}','2022-02-19 08:40:15'),(28,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Martin\";s:8:\"lastname\";s:7:\"Vieider\";s:11:\"companyname\";s:8:\"Saniflor\";s:7:\"address\";s:25:\"Gummer, Dörerwiese Nr. 5\";s:8:\"postcode\";s:5:\"39053\";s:4:\"city\";s:7:\"Karneid\";s:12:\"emailaddress\";s:17:\"info@saniflor.com\";s:12:\"mobilenumber\";s:16:\"0471&#047;610115\";s:13:\"websitedomain\";s:33:\"http:&#047;&#047;www.saniflor.com\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:2:{i:0;s:13:\"Dienstleister\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"67fa73d878675520732b03419fc693e7\";}','2022-02-19 13:54:28'),(29,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Andrea \";s:8:\"lastname\";s:15:\"Daporta Fischer\";s:11:\"companyname\";s:18:\"Hotel Fischer GmbH\";s:7:\"address\";s:12:\"Trusentweg 7\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:25:\"hotel.fischer@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3281745492\";s:13:\"websitedomain\";s:37:\"http:&#047;&#047;www.hotel-fischer.it\";s:9:\"employees\";s:2:\"25\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"4a94b518a9690f51c67862ce51901f2f\";}','2022-02-19 16:25:41'),(30,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Johannes\";s:8:\"lastname\";s:3:\"Mur\";s:11:\"companyname\";s:35:\"Topconsult - Johannes Mur & Co. OHG\";s:7:\"address\";s:14:\"Bühelacker 20\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:11:\"Natz Schabs\";s:12:\"emailaddress\";s:22:\"hannes@mental-power.it\";s:12:\"mobilenumber\";s:13:\"+393292806542\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.mental-power.it\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"4dd795cdd89a2c2588f995a13fb539db\";}','2022-02-19 17:45:04'),(31,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:15:\"Marie Elisabeth\";s:8:\"lastname\";s:6:\"Lassen\";s:11:\"companyname\";s:13:\"Pilates Marie\";s:7:\"address\";s:14:\"Bühelacker 20\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:11:\"Natz Schabs\";s:12:\"emailaddress\";s:23:\"marie@pilates-marie.com\";s:12:\"mobilenumber\";s:13:\"+393292806541\";s:13:\"websitedomain\";s:38:\"http:&#047;&#047;www.pilates-marie.com\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"daeb74080a7aa0307107b0c1c12ff4d8\";}','2022-02-19 17:54:04'),(32,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Alfred\";s:8:\"lastname\";s:8:\"Tschager\";s:11:\"companyname\";s:39:\"Alfred Tschager-Photography&Coaching KG\";s:7:\"address\";s:13:\"Stroblwiese 8\";s:8:\"postcode\";s:5:\"39053\";s:4:\"city\";s:7:\"Karneid\";s:12:\"emailaddress\";s:23:\"klick@tschager-foto.com\";s:12:\"mobilenumber\";s:10:\"3355839614\";s:13:\"websitedomain\";s:87:\"https:&#047;&#047;www.tschager-foto.com&#047;fotografie-suedtirol-tschagerfoto-p1.html#\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"f54c9e4fea52cd70fc7a96619d576916\";}','2022-02-19 22:00:04'),(33,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Andreas\";s:8:\"lastname\";s:5:\"Egger\";s:11:\"companyname\";s:7:\"AE GmbH\";s:7:\"address\";s:15:\"Boznerstrasse 8\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:4:\"Lana\";s:12:\"emailaddress\";s:22:\"boeden.egger@gmail.com\";s:12:\"mobilenumber\";s:10:\"3357029867\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;egger@bodenleger.bz\";s:9:\"employees\";s:1:\"6\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 14:59:07'),(34,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:10:\"Hans Georg\";s:8:\"lastname\";s:14:\"Oberprantacher\";s:11:\"companyname\";s:20:\"Tischlerei Holzidee \";s:7:\"address\";s:15:\"Sportplatzweg 6\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:6:\"Meran \";s:12:\"emailaddress\";s:16:\"info@holzidee.it\";s:12:\"mobilenumber\";s:10:\"0473201212\";s:13:\"websitedomain\";s:32:\"http:&#047;&#047;www.holzidee.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 15:01:02'),(35,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Wilfried\";s:8:\"lastname\";s:6:\"Holzer\";s:11:\"companyname\";s:12:\"Freiberufler\";s:7:\"address\";s:19:\"Wiesenhof Straße 2\";s:8:\"postcode\";s:5:\"39032\";s:4:\"city\";s:15:\"Sand in Taufers\";s:12:\"emailaddress\";s:25:\"wilfriedholzer1@gmail.com\";s:12:\"mobilenumber\";s:10:\"3468715078\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 15:53:15'),(36,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Hildegard\";s:8:\"lastname\";s:9:\"Stabinger\";s:11:\"companyname\";s:7:\"Bar Ett\";s:7:\"address\";s:12:\"Gilmplatz 1a\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Bruneck\";s:12:\"emailaddress\";s:24:\"hildestabinger@gmail.com\";s:12:\"mobilenumber\";s:11:\"03358398450\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 16:22:59'),(37,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Christian\";s:8:\"lastname\";s:12:\"Kerschbaumer\";s:11:\"companyname\";s:16:\"Weingut Garlider\";s:7:\"address\";s:9:\"Untrum 20\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:24:\"Feldthurns&#047;Velturno\";s:12:\"emailaddress\";s:16:\"info@garlider.it\";s:12:\"mobilenumber\";s:13:\"+393487451011\";s:13:\"websitedomain\";s:32:\"http:&#047;&#047;www.garlider.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"19c98f1db794b954672f7d560066bc92\";}','2022-02-20 16:26:28'),(38,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Edgar\";s:8:\"lastname\";s:6:\"Rogger\";s:11:\"companyname\";s:11:\"Tonyhof KG \";s:7:\"address\";s:11:\"Europaweg 5\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Sexten\";s:12:\"emailaddress\";s:17:\"edgar@tonyhof.com\";s:12:\"mobilenumber\";s:10:\"3342373971\";s:13:\"websitedomain\";s:32:\"http:&#047;&#047;www.tonyhof.com\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 16:57:04'),(39,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Angerer\";s:8:\"lastname\";s:8:\"Benjamin\";s:11:\"companyname\";s:16:\"Angerer Benjamin\";s:7:\"address\";s:17:\"Kiefernhainweg 48\";s:8:\"postcode\";s:5:\"39026\";s:4:\"city\";s:12:\"Prad am Stj.\";s:12:\"emailaddress\";s:23:\"ben.angerer@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3484027671\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"6ad1379b03ff8645169962b0311b8677\";}','2022-02-20 17:57:14'),(40,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Benjamin\";s:8:\"lastname\";s:7:\"Angerer\";s:11:\"companyname\";s:16:\"Angerer Benjamin\";s:7:\"address\";s:17:\"Kiefernhainweg 48\";s:8:\"postcode\";s:5:\"39026\";s:4:\"city\";s:12:\"Prad am Stj.\";s:12:\"emailaddress\";s:23:\"ben.angerer@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3484027671\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"3d053e25946640253585718f82afcd2d\";}','2022-02-20 18:01:29'),(41,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:4:\"Auer\";s:8:\"lastname\";s:9:\"Margerita\";s:11:\"companyname\";s:20:\"Gasthaus Oberöberst\";s:7:\"address\";s:7:\"Vernuer\";s:8:\"postcode\";s:5:\"39015\";s:4:\"city\";s:7:\"Riffian\";s:12:\"emailaddress\";s:31:\"margerita.bogelioubov@gmail.com\";s:12:\"mobilenumber\";s:10:\"3479709627\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 18:12:09'),(42,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Reinhard\";s:8:\"lastname\";s:6:\"Rauter\";s:11:\"companyname\";s:11:\"Dietrichhof\";s:7:\"address\";s:18:\"Stilumserstraße 4\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Feldthurns\";s:12:\"emailaddress\";s:20:\"info@dietrichhof.com\";s:12:\"mobilenumber\";s:13:\"+393282221114\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.dietrichhof.com\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:2:{i:0;s:14:\"Landwirtschaft\";i:1;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 18:22:30'),(43,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Robert\";s:8:\"lastname\";s:8:\"Plattner\";s:11:\"companyname\";s:13:\"Karosserie F1\";s:7:\"address\";s:12:\"Gschleier 21\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:7:\"Mölten\";s:12:\"emailaddress\";s:23:\"robert.plattner@bb44.it\";s:12:\"mobilenumber\";s:10:\"3478893434\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:2:\"12\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 18:53:42'),(44,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Oscar\";s:8:\"lastname\";s:7:\"Dibiasi\";s:11:\"companyname\";s:14:\"Energieberater\";s:7:\"address\";s:14:\"Hügelgasse 14\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Montan\";s:12:\"emailaddress\";s:22:\"info@oscar-dibiasi.com\";s:12:\"mobilenumber\";s:10:\"3331403644\";s:13:\"websitedomain\";s:38:\"http:&#047;&#047;www.oscar-dibiasi.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 19:06:24'),(45,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Nikolaus\";s:8:\"lastname\";s:7:\"Messmer\";s:11:\"companyname\";s:10:\"GALABAU KG\";s:7:\"address\";s:9:\"Klavenz 6\";s:8:\"postcode\";s:5:\"39052\";s:4:\"city\";s:7:\"Kaltern\";s:12:\"emailaddress\";s:25:\"klaus.messmer@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3665740543\";s:13:\"websitedomain\";s:34:\"http:&#047;&#047;www.messmer.bz.it\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 19:09:51'),(46,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Johanna\";s:8:\"lastname\";s:6:\"Obexer\";s:11:\"companyname\";s:9:\"Bauernhof\";s:7:\"address\";s:15:\"Magdalenaweg 8 \";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:9:\"VillnÖss\";s:12:\"emailaddress\";s:26:\"margareth.obexer@gmail.com\";s:12:\"mobilenumber\";s:10:\"3293235491\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 19:18:50'),(47,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Dietmar\";s:8:\"lastname\";s:11:\"Reinstadler\";s:11:\"companyname\";s:37:\"REPISPORT OHG des Reinstadler Dietmar\";s:7:\"address\";s:27:\"Holzländestrasse 65&#047;A\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:21:\"St.Martin in Passeier\";s:12:\"emailaddress\";s:20:\"dietmar@repisport.it\";s:12:\"mobilenumber\";s:13:\"+393450040155\";s:13:\"websitedomain\";s:36:\"https:&#047;&#047;repisport.it&#047;\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"9b5c43ce1db3b07884383cd8c7b069b0\";}','2022-02-20 19:30:32'),(48,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Günther\";s:8:\"lastname\";s:5:\"Huber\";s:11:\"companyname\";s:17:\"Karosserie F1 OHG\";s:7:\"address\";s:15:\"Enzenbergweg 22\";s:8:\"postcode\";s:5:\"39018\";s:4:\"city\";s:6:\"Terlan\";s:12:\"emailaddress\";s:21:\"info@karosserief1.com\";s:12:\"mobilenumber\";s:10:\"3478127088\";s:13:\"websitedomain\";s:37:\"http:&#047;&#047;www.karosserief1.com\";s:9:\"employees\";s:2:\"13\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"daf3fd0a54d869662cab211169c0f9a7\";}','2022-02-20 19:37:43'),(49,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Thomas\";s:8:\"lastname\";s:6:\"Piazzi\";s:11:\"companyname\";s:17:\"Tischlerei Piazzi\";s:7:\"address\";s:17:\"Grissian12&#047;a\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:6:\"Tisens\";s:12:\"emailaddress\";s:25:\"info@tischlerei-piazzi.it\";s:12:\"mobilenumber\";s:14:\"+3903332753452\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 19:42:13'),(50,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Lukas\";s:8:\"lastname\";s:9:\"Rainalter\";s:11:\"companyname\";s:12:\"Assiunio Ohg\";s:7:\"address\";s:20:\"Göflanerstrasse, 22\";s:8:\"postcode\";s:5:\"39028\";s:4:\"city\";s:10:\"Schlanders\";s:12:\"emailaddress\";s:23:\"rainalter.l@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3472246385\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 19:52:04'),(51,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Brigitte\";s:8:\"lastname\";s:6:\"Gasser\";s:11:\"companyname\";s:7:\"Noafhof\";s:7:\"address\";s:17:\"Leadner-Alm-Weg 6\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:6:\"Vöran\";s:12:\"emailaddress\";s:15:\"info@noafhof.it\";s:12:\"mobilenumber\";s:10:\"3488276737\";s:13:\"websitedomain\";s:31:\"http:&#047;&#047;www.noafhof.it\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"0e2f8a47a7e2cdb036a3443837533176\";}','2022-02-20 20:01:39'),(52,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Aaron \";s:8:\"lastname\";s:9:\"Dorfmann \";s:11:\"companyname\";s:26:\"Aaron Dorfmann Dachservice\";s:7:\"address\";s:7:\"Huben 4\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Lüsen\";s:12:\"emailaddress\";s:23:\"info@aaron-dorfmann.com\";s:12:\"mobilenumber\";s:13:\"+393493549002\";s:13:\"websitedomain\";s:35:\"http:&#047;&#047;aaron-dorfmann.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"26b5176486dce4953f9940f8aeb63da8\";}','2022-02-20 20:10:04'),(53,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:12:\"Sabine Maria\";s:8:\"lastname\";s:7:\"Peukert\";s:11:\"companyname\";s:25:\"Sabine Peukert Mediatorin\";s:7:\"address\";s:13:\"Dantestr. 106\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:12:\"medi@tion.it\";s:12:\"mobilenumber\";s:13:\"335 644 96 85\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 20:33:21'),(54,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Karin\";s:8:\"lastname\";s:9:\"Postingel\";s:11:\"companyname\";s:22:\"Clematis blumen&dekor \";s:7:\"address\";s:14:\"Rathausring 37\";s:8:\"postcode\";s:5:\"39044\";s:4:\"city\";s:8:\"Neumarkt\";s:12:\"emailaddress\";s:23:\"karin@clematisblumen.it\";s:12:\"mobilenumber\";s:12:\"+39335247505\";s:13:\"websitedomain\";s:66:\"http:&#047;&#047;clematisblumen.it&#047;clematis-blumendekor&#047;\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:3:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";i:2;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"0ed753820943a78117c0df7d84db0744\";}','2022-02-20 20:37:37'),(55,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Manuel\";s:8:\"lastname\";s:10:\"Gschnitzer\";s:11:\"companyname\";s:32:\"Manuel Gschnitzer Baggerarbeiten\";s:7:\"address\";s:23:\"Jaufental St. Anton 39C\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Ratschings\";s:12:\"emailaddress\";s:26:\"manuel.gschnitzer@yahoo.it\";s:12:\"mobilenumber\";s:10:\"3395775636\";s:13:\"websitedomain\";s:37:\"http:&#047;&#047;manuel-gschnitzer.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:10:\"Baugewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"faa178275b279ff03818e3edf9f48a04\";}','2022-02-20 20:53:42'),(56,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Christine\";s:8:\"lastname\";s:6:\"Haller\";s:11:\"companyname\";s:13:\"Le Petit MaLu\";s:7:\"address\";s:13:\"Piave Str. 47\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:29:\"christine.haller.76@gmail.com\";s:12:\"mobilenumber\";s:10:\"3332511916\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 21:23:59'),(57,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Richard\";s:8:\"lastname\";s:8:\"Kirchler\";s:11:\"companyname\";s:13:\"Oberanewandte\";s:7:\"address\";s:11:\"Anewanten 3\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:4:\"Gais\";s:12:\"emailaddress\";s:27:\"kirchlerrichard48@gmail.com\";s:12:\"mobilenumber\";s:10:\"3299807966\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 21:28:50'),(58,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Franziska\";s:8:\"lastname\";s:10:\"Patzleiner\";s:11:\"companyname\";s:8:\"di Hitte\";s:7:\"address\";s:14:\"Untergasse, 37\";s:8:\"postcode\";s:5:\"39035\";s:4:\"city\";s:7:\"Taisten\";s:12:\"emailaddress\";s:29:\"franzi.patzleiner.m@gmail.com\";s:12:\"mobilenumber\";s:10:\"3701332541\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 21:35:42'),(59,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Margit\";s:8:\"lastname\";s:5:\"Forer\";s:11:\"companyname\";s:11:\"Meg Fashion\";s:7:\"address\";s:21:\"Ahrntalerstrasse 18 d\";s:8:\"postcode\";s:5:\"39032\";s:4:\"city\";s:15:\"Sand in Taufers\";s:12:\"emailaddress\";s:20:\"info@meg-fashion.com\";s:12:\"mobilenumber\";s:10:\"3498405190\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.meg-fashion.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 21:40:14'),(60,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Hubert \";s:8:\"lastname\";s:10:\"Primisser \";s:11:\"companyname\";s:16:\"Hubert Primisser\";s:7:\"address\";s:13:\"Penegalweg 10\";s:8:\"postcode\";s:6:\"39052 \";s:4:\"city\";s:8:\"Kaltern \";s:12:\"emailaddress\";s:19:\"hubert@primisser.it\";s:12:\"mobilenumber\";s:13:\"+393356033030\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 21:55:47'),(61,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:4:\"Inge\";s:8:\"lastname\";s:15:\"Zwischenbrugger\";s:11:\"companyname\";s:17:\"Beautiful Moments\";s:7:\"address\";s:17:\"Hans Feur Str. 40\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Tramin\";s:12:\"emailaddress\";s:16:\"ngizws@gmail.com\";s:12:\"mobilenumber\";s:10:\"3331532353\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-20 22:37:26'),(62,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Josef\";s:8:\"lastname\";s:5:\"Jörg\";s:11:\"companyname\";s:10:\"Jörg GmbH\";s:7:\"address\";s:17:\"Drei Kreuz Str. 4\";s:8:\"postcode\";s:5:\"39020\";s:4:\"city\";s:10:\"Schluderns\";s:12:\"emailaddress\";s:13:\"sepp@joerg.it\";s:12:\"mobilenumber\";s:13:\"+393356059453\";s:13:\"websitedomain\";s:25:\"http:&#047;&#047;joerg.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 00:03:59'),(63,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Jürgen \";s:8:\"lastname\";s:15:\"Wirth Anderlan \";s:11:\"companyname\";s:23:\"Jürgen Wirth Anderlan \";s:7:\"address\";s:16:\"Mendelstrasse 34\";s:8:\"postcode\";s:5:\"39052\";s:4:\"city\";s:8:\"Kaltern \";s:12:\"emailaddress\";s:25:\"j.wirthanderlan@gmail.com\";s:12:\"mobilenumber\";s:10:\"3383205778\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 06:49:44'),(64,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Dietmar\";s:8:\"lastname\";s:9:\"Obkircher\";s:11:\"companyname\";s:36:\"Dietmar Obkircher grafic & webdesign\";s:7:\"address\";s:17:\"Handwerkerzone 12\";s:8:\"postcode\";s:5:\"39056\";s:4:\"city\";s:11:\"Welschnofen\";s:12:\"emailaddress\";s:18:\"info@obkircher.com\";s:12:\"mobilenumber\";s:10:\"3470581105\";s:13:\"websitedomain\";s:34:\"http:&#047;&#047;www.obkircher.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"d77e493e5d739addcc7b22e86e52d1bc\";}','2022-02-21 07:27:41'),(65,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:4:\"Arno\";s:8:\"lastname\";s:7:\"Klammer\";s:11:\"companyname\";s:16:\"Laurin&#039;s Kg\";s:7:\"address\";s:14:\"St.Vigilstr. 5\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:4:\"Nals\";s:12:\"emailaddress\";s:15:\"info@Laurins.it\";s:12:\"mobilenumber\";s:10:\"3283439035\";s:13:\"websitedomain\";s:31:\"http:&#047;&#047;www.Laurins.it\";s:9:\"employees\";s:1:\"5\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"9caa6e087a6400690d2d12a49bf58f5b\";}','2022-02-21 07:32:35'),(66,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Miriam \";s:8:\"lastname\";s:7:\"Burkia \";s:11:\"companyname\";s:20:\"Uhren Schmuck Burkia\";s:7:\"address\";s:25:\"Katharina Lanz Straße 76\";s:8:\"postcode\";s:5:\"39037\";s:4:\"city\";s:10:\"Mühlbach \";s:12:\"emailaddress\";s:17:\"info@burkia.bz.it\";s:12:\"mobilenumber\";s:10:\"3487641498\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 07:45:27'),(67,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:4:\"Karl\";s:8:\"lastname\";s:9:\"Obkircher\";s:11:\"companyname\";s:14:\"1aAutoservice \";s:7:\"address\";s:11:\"Geirerweg 3\";s:8:\"postcode\";s:5:\"39054\";s:4:\"city\";s:10:\"OBERBOZEN \";s:12:\"emailaddress\";s:17:\"info@obkircher.bz\";s:12:\"mobilenumber\";s:10:\"3351211004\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 07:57:16'),(68,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Johann \";s:8:\"lastname\";s:8:\"Gröber \";s:11:\"companyname\";s:13:\"Living Natura\";s:7:\"address\";s:15:\"St Jakob Str 25\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:7:\"Percha \";s:12:\"emailaddress\";s:21:\"info@livingnatura.com\";s:12:\"mobilenumber\";s:10:\"3389229948\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 08:07:18'),(69,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Patrizia\";s:8:\"lastname\";s:11:\"Pardatscher\";s:11:\"companyname\";s:22:\"Residence Obermoarhof \";s:7:\"address\";s:12:\"Mairgasse, 3\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:9:\"Obervintl\";s:12:\"emailaddress\";s:20:\"info@obermoarhof.com\";s:12:\"mobilenumber\";s:10:\"3713591552\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.obermoarhof.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 08:07:36'),(70,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Günther\";s:8:\"lastname\";s:5:\"Hofer\";s:11:\"companyname\";s:19:\"Die Biermacherinnen\";s:7:\"address\";s:7:\"Moos 14\";s:8:\"postcode\";s:5:\"39016\";s:4:\"city\";s:5:\"Ulten\";s:12:\"emailaddress\";s:27:\"zoeschgbrigitte@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3333562074\";s:13:\"websitedomain\";s:40:\"http:&#047;&#047;die-biermacherinnen.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 08:07:54'),(71,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Johann \";s:8:\"lastname\";s:8:\"Gröber \";s:11:\"companyname\";s:13:\"Living Natura\";s:7:\"address\";s:15:\"St Jakob Str 25\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:7:\"Percha \";s:12:\"emailaddress\";s:21:\"info@livingnatura.com\";s:12:\"mobilenumber\";s:10:\"3389229948\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 08:09:47'),(72,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Patrizia\";s:8:\"lastname\";s:11:\"Pardatscher\";s:11:\"companyname\";s:21:\"Residence Obermoarhof\";s:7:\"address\";s:12:\"Mairgasse 3 \";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:9:\"Obervintl\";s:12:\"emailaddress\";s:20:\"info@obermoarhof.com\";s:12:\"mobilenumber\";s:10:\"3713591552\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.obermoarhof.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 08:13:30'),(73,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"christian\";s:8:\"lastname\";s:11:\"greifenberg\";s:11:\"companyname\";s:11:\"greifenberg\";s:7:\"address\";s:18:\"handwerkerzone 3 a\";s:8:\"postcode\";s:6:\"39052 \";s:4:\"city\";s:7:\"kaltern\";s:12:\"emailaddress\";s:30:\"greifenbergchristian@gmail.com\";s:12:\"mobilenumber\";s:11:\"339-1889543\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"7\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 08:16:12'),(74,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Patrizia\";s:8:\"lastname\";s:11:\"Pardatscher\";s:11:\"companyname\";s:21:\"Residence Obermoarhof\";s:7:\"address\";s:12:\"Mairgasse, 3\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:9:\"Obervintl\";s:12:\"emailaddress\";s:20:\"info@obermoarhof.com\";s:12:\"mobilenumber\";s:10:\"3713591552\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.obermoarhof.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 08:24:10'),(75,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Hansjörg\";s:8:\"lastname\";s:14:\"Oberprantacher\";s:11:\"companyname\";s:19:\"Tischlerei Holzidee\";s:7:\"address\";s:15:\"Sportplatzweg 6\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:16:\"info@holzidee.it\";s:12:\"mobilenumber\";s:11:\"0473 201212\";s:13:\"websitedomain\";s:32:\"http:&#047;&#047;www.holzidee.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 08:31:12'),(76,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Gottfried\";s:8:\"lastname\";s:10:\"Wohlfarter\";s:11:\"companyname\";s:16:\"Optik Wohlfarter\";s:7:\"address\";s:15:\"Hauptstrasse 35\";s:8:\"postcode\";s:5:\"39025\";s:4:\"city\";s:7:\"Naturns\";s:12:\"emailaddress\";s:28:\"optik.wohlfarter@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3668107704\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"94b18c659e90ee129cad2def59e2e80e\";}','2022-02-21 08:43:11'),(77,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Kathrin\";s:8:\"lastname\";s:6:\"Rainer\";s:11:\"companyname\";s:17:\"Naturhotel Rainer\";s:7:\"address\";s:22:\"Jaufental Mittertal 48\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:7:\"Racines\";s:12:\"emailaddress\";s:22:\"privat@hotel-rainer.it\";s:12:\"mobilenumber\";s:10:\"0472765355\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.hotel-rainer.it\";s:9:\"employees\";s:2:\"18\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"d832709a74bf9e04054c3c5a63fe5ef6\";}','2022-02-21 09:05:33'),(78,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Monika\";s:8:\"lastname\";s:7:\"Aichner\";s:11:\"companyname\";s:27:\"KLENKdesign d. Klenk Harald\";s:7:\"address\";s:21:\"J.-G.-Mahl-Strasse 10\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Bruneck\";s:12:\"emailaddress\";s:19:\"info@klenkdesign.it\";s:12:\"mobilenumber\";s:10:\"3713065715\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.klenkdesign.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"80614357f58590358b78aff40bd762f9\";}','2022-02-21 09:34:20'),(79,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Thomas\";s:8:\"lastname\";s:6:\"Wieser\";s:11:\"companyname\";s:14:\"Goldwerk Gmbh.\";s:7:\"address\";s:26:\"Albrecht Dürer Straße 18\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:14:\"tw@goldwerk.it\";s:12:\"mobilenumber\";s:10:\"3400776867\";s:13:\"websitedomain\";s:32:\"http:&#047;&#047;www.goldwerk.it\";s:9:\"employees\";s:2:\"30\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"a90c6a606955d1220ad92134162c865f\";}','2022-02-21 09:43:05'),(80,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:15:\"Maria Magdalena\";s:8:\"lastname\";s:8:\"Hilberer\";s:11:\"companyname\";s:32:\"Star Service International GmbH.\";s:7:\"address\";s:26:\"Albrecht Dürer Straße 18\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:10:\"tw@ss-i.it\";s:12:\"mobilenumber\";s:10:\"3934532530\";s:13:\"websitedomain\";s:28:\"http:&#047;&#047;www.ssi.srl\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"3549ec8978ad706cbb7fa54e3a56cae3\";}','2022-02-21 09:45:58'),(81,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Thomas \";s:8:\"lastname\";s:6:\"Rieder\";s:11:\"companyname\";s:18:\"interior emotions \";s:7:\"address\";s:12:\"Goldgasse 7A\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:4:\"Nals\";s:12:\"emailaddress\";s:25:\"info@interior-emotions.eu\";s:12:\"mobilenumber\";s:13:\"+393482605664\";s:13:\"websitedomain\";s:41:\"http:&#047;&#047;www.interior-emotions.eu\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 09:52:31'),(82,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Bijan\";s:8:\"lastname\";s:7:\"Faustig\";s:11:\"companyname\";s:7:\"Faustig\";s:7:\"address\";s:16:\"Handwerkerzone 6\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:5:\"Vahrn\";s:12:\"emailaddress\";s:20:\"b.faustig@hotmail.de\";s:12:\"mobilenumber\";s:10:\"3456681865\";s:13:\"websitedomain\";s:31:\"http:&#047;&#047;www.faustig.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"e6a4b50b113566c9d628c2dcfa77df7e\";}','2022-02-21 10:01:52'),(83,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Johann\";s:8:\"lastname\";s:5:\"Matha\";s:11:\"companyname\";s:22:\"Montiggler Porphyr Srl\";s:7:\"address\";s:12:\"Montiggl 100\";s:8:\"postcode\";s:5:\"39057\";s:4:\"city\";s:5:\"Eppan\";s:12:\"emailaddress\";s:25:\"info@montigglerporphyr.it\";s:12:\"mobilenumber\";s:10:\"3473108836\";s:13:\"websitedomain\";s:41:\"http:&#047;&#047;www.montigglerporphyr.it\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:2:{i:0;s:9:\"Industrie\";i:1;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 10:11:31'),(84,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Leonhard\";s:8:\"lastname\";s:8:\"Plattner\";s:11:\"companyname\";s:45:\"Bio - Elektrik KG des Plattner Leonhard & Co.\";s:7:\"address\";s:21:\"Altenbergweg 2&#047;a\";s:8:\"postcode\";s:5:\"39050\";s:4:\"city\";s:8:\"Jenesien\";s:12:\"emailaddress\";s:21:\"info@bio-elektrik.com\";s:12:\"mobilenumber\";s:10:\"0471354093\";s:13:\"websitedomain\";s:37:\"http:&#047;&#047;www.bio-elektrik.com\";s:9:\"employees\";s:2:\"02\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 11:09:07'),(85,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Elisabeth\";s:8:\"lastname\";s:6:\"Gruber\";s:11:\"companyname\";s:16:\"Lisette Boutique\";s:7:\"address\";s:23:\"Bruder Willramstrasse 2\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Bruneck\";s:12:\"emailaddress\";s:25:\"info@lisette-boutique.com\";s:12:\"mobilenumber\";s:10:\"3404964527\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"69662ef16e3693859d944467dad9cf35\";}','2022-02-21 12:00:21'),(86,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Norbert \";s:8:\"lastname\";s:8:\"Waldner \";s:11:\"companyname\";s:16:\"Haflinger-Reiten\";s:7:\"address\";s:13:\"Saltenweg 3b \";s:8:\"postcode\";s:5:\"39050\";s:4:\"city\";s:8:\"Jenesien\";s:12:\"emailaddress\";s:25:\"info@haflinger-reiten.com\";s:12:\"mobilenumber\";s:10:\"3889866478\";s:13:\"websitedomain\";s:41:\"http:&#047;&#047;www.Haflinger-Reiten.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"7323a2956b5b9c145c1c97c9dec8cc91\";}','2022-02-21 12:10:30'),(87,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:11:\"Margherita \";s:8:\"lastname\";s:9:\"Morocutti\";s:11:\"companyname\";s:7:\"Vivaldi\";s:7:\"address\";s:16:\"laubenduchgang 6\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:7:\"Bolzano\";s:12:\"emailaddress\";s:21:\"vivaldi2201@gmail.com\";s:12:\"mobilenumber\";s:10:\"0472836126\";s:13:\"websitedomain\";s:38:\"http:&#047;&#047;shop@vivaldistore.com\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 12:14:44'),(88,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Maria\";s:8:\"lastname\";s:10:\"Matzneller\";s:11:\"companyname\";s:14:\"KOSMETIKSTUDIO\";s:7:\"address\";s:14:\"Mühlbachweg 2\";s:8:\"postcode\";s:5:\"39044\";s:4:\"city\";s:4:\"Egna\";s:12:\"emailaddress\";s:21:\"matznellerm@gmail.com\";s:12:\"mobilenumber\";s:10:\"3332253330\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 12:46:49'),(89,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Martin\";s:8:\"lastname\";s:5:\"Blaas\";s:11:\"companyname\";s:22:\"Blaas des Blaas Walter\";s:7:\"address\";s:18:\"Galileo Galilei 3 \";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:18:\"martin@blaas.bz.it\";s:12:\"mobilenumber\";s:10:\"3450669287\";s:13:\"websitedomain\";s:74:\"https:&#047;&#047;blaas.bz.it&#047;de&#047;?SID=7jqnj097qadv6me6qn542bvebk\";s:9:\"employees\";s:2:\"10\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"d2e307cc313ca83b402837ecd4cb64cf\";}','2022-02-21 14:16:34'),(90,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Peter\";s:8:\"lastname\";s:7:\"Zöschg\";s:11:\"companyname\";s:13:\"Zöschg Peter\";s:7:\"address\";s:13:\"Breitenkofl 3\";s:8:\"postcode\";s:5:\"39050\";s:4:\"city\";s:12:\"Deutschnofen\";s:12:\"emailaddress\";s:21:\"p.zoeschg@rolmail.net\";s:12:\"mobilenumber\";s:23:\"3384621787 - 3492575718\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"182dbd086c2ec96a53defcead2c80284\";}','2022-02-21 14:29:21'),(91,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Georg\";s:8:\"lastname\";s:5:\"Trebo\";s:11:\"companyname\";s:10:\"Urt da Ras\";s:7:\"address\";s:7:\"Ciase 4\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:21:\"St. Vigil in Enneberg\";s:12:\"emailaddress\";s:18:\"georg.t@posteo.org\";s:12:\"mobilenumber\";s:10:\"3478782033\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"1ddceb80cc540affc71450a39d6e83ac\";}','2022-02-21 14:53:27'),(92,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Walther \";s:8:\"lastname\";s:9:\"Endrizzi \";s:11:\"companyname\";s:25:\"Wem des Endrizzi walther \";s:7:\"address\";s:16:\"Drususallee 102g\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:17:\"wemjs29@gmail.com\";s:12:\"mobilenumber\";s:10:\"3383895200\";s:13:\"websitedomain\";s:34:\"http:&#047;&#047;www.avendrizzi.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 15:05:27'),(93,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"walther\";s:8:\"lastname\";s:8:\"endrizzi\";s:11:\"companyname\";s:9:\"wemjs sas\";s:7:\"address\";s:22:\"VIALE DRUSO 102&#047;G\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:7:\"bolzano\";s:12:\"emailaddress\";s:17:\"wemjs29@gmail.com\";s:12:\"mobilenumber\";s:10:\"3383895200\";s:13:\"websitedomain\";s:34:\"http:&#047;&#047;www.avendrizzi.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 15:08:09'),(94,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Thomas\";s:8:\"lastname\";s:10:\"Maurberger\";s:11:\"companyname\";s:10:\"Elektro TM\";s:7:\"address\";s:18:\"Johannesstrasse 32\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:4:\"Gais\";s:12:\"emailaddress\";s:27:\"thomas.maurberger@gmail.com\";s:12:\"mobilenumber\";s:14:\"00393281411511\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 15:10:13'),(95,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"walther\";s:8:\"lastname\";s:8:\"endrizzi\";s:11:\"companyname\";s:9:\"wemjs sas\";s:7:\"address\";s:22:\"VIALE DRUSO 102&#047;G\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:7:\"bolzano\";s:12:\"emailaddress\";s:17:\"wemjs29@gmail.com\";s:12:\"mobilenumber\";s:10:\"3383895200\";s:13:\"websitedomain\";s:34:\"http:&#047;&#047;www.avendrizzi.it\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"e3310b4901399b42f72aac64e769d568\";}','2022-02-21 15:17:38'),(96,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:10:\"Alexander \";s:8:\"lastname\";s:22:\"Von Fioreschy-Weinfeld\";s:11:\"companyname\";s:9:\"FruVit KG\";s:7:\"address\";s:10:\"Hilbweg 1g\";s:8:\"postcode\";s:6:\"39040 \";s:4:\"city\";s:4:\"Auer\";s:12:\"emailaddress\";s:14:\"info@fruvit.it\";s:12:\"mobilenumber\";s:10:\"3406429245\";s:13:\"websitedomain\";s:31:\"http:&#047;&#047;info@fruvit.it\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 16:00:40'),(97,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:10:\"Jan-Martin\";s:8:\"lastname\";s:8:\"Achilles\";s:11:\"companyname\";s:12:\"AC-TEC GmbH \";s:7:\"address\";s:17:\"Handwerkerzone 26\";s:8:\"postcode\";s:5:\"39052\";s:4:\"city\";s:27:\"Kaltern an der Weinsteaße \";s:12:\"emailaddress\";s:14:\"info@ac-tec.it\";s:12:\"mobilenumber\";s:13:\"+393336048955\";s:13:\"websitedomain\";s:30:\"http:&#047;&#047;www.ac-tec.it\";s:9:\"employees\";s:1:\"6\";s:7:\"branche\";a:1:{i:0;s:9:\"Industrie\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"fe6cdee8566bd111b291a978dc6e0636\";}','2022-02-21 18:21:20'),(98,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Johann \";s:8:\"lastname\";s:5:\"Bauer\";s:11:\"companyname\";s:19:\"Gasthof Furggerhof \";s:7:\"address\";s:11:\"Schlossweg5\";s:8:\"postcode\";s:5:\"39019\";s:4:\"city\";s:10:\"Dorf Tirol\";s:12:\"emailaddress\";s:18:\"info@furggerhof.it\";s:12:\"mobilenumber\";s:10:\"3489005746\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"8\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 19:16:28'),(99,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Plattner\";s:8:\"lastname\";s:8:\"Günther\";s:11:\"companyname\";s:17:\"Plattner Günther\";s:7:\"address\";s:12:\"Ifingerweg 2\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:8:\"Tscherms\";s:12:\"emailaddress\";s:21:\"plattnerg@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3489119205\";s:13:\"websitedomain\";s:31:\"http:&#047;&#047;www.lehmbau.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 19:20:08'),(100,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Günther\";s:8:\"lastname\";s:8:\"Plattner\";s:11:\"companyname\";s:32:\"Bauunternehmen Plattner Günther\";s:7:\"address\";s:16:\"ifingerstrasse 2\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:8:\"Tscherms\";s:12:\"emailaddress\";s:21:\"plattnerg@rolmail.net\";s:12:\"mobilenumber\";s:10:\"+399119205\";s:13:\"websitedomain\";s:31:\"http:&#047;&#047;www.lehmbau.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"5811808bdc4b91fb943de249c7742dbe\";}','2022-02-21 19:26:31'),(101,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Markus\";s:8:\"lastname\";s:7:\"Lintner\";s:11:\"companyname\";s:9:\"Schornhof\";s:7:\"address\";s:15:\"Lerch 23&#047;1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Aldein\";s:12:\"emailaddress\";s:21:\"schornhof@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3403715530\";s:13:\"websitedomain\";s:35:\"http:&#047;&#047;www.schornhof.info\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 20:05:39'),(102,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Walter\";s:8:\"lastname\";s:9:\"Atzwanger\";s:11:\"companyname\";s:21:\"Atzwanger Walter Gmbh\";s:7:\"address\";s:9:\"Bachla 22\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:8:\"Pfalzen \";s:12:\"emailaddress\";s:23:\"info@atzwangerwalter.it\";s:12:\"mobilenumber\";s:10:\"3358374128\";s:13:\"websitedomain\";s:39:\"http:&#047;&#047;www.atzwangerwalter.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 20:12:58'),(103,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Norbert\";s:8:\"lastname\";s:11:\"Blasbichler\";s:11:\"companyname\";s:18:\"Bioweingut. RADOAR\";s:7:\"address\";s:9:\"Pedratz 1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Feldthurns\";s:12:\"emailaddress\";s:15:\"info@radoar.com\";s:12:\"mobilenumber\";s:10:\"3477523550\";s:13:\"websitedomain\";s:31:\"http:&#047;&#047;wew.tadoar.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 20:33:23'),(104,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Johann\";s:8:\"lastname\";s:5:\"Bauer\";s:11:\"companyname\";s:10:\"Furggerhof\";s:7:\"address\";s:12:\"Schlossweg 5\";s:8:\"postcode\";s:5:\"39019\";s:4:\"city\";s:10:\"Dorf Tirol\";s:12:\"emailaddress\";s:18:\"info@furggerhof.it\";s:12:\"mobilenumber\";s:10:\"3489005746\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 20:44:39'),(105,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Stefan\";s:8:\"lastname\";s:13:\"Höchenberger\";s:11:\"companyname\";s:18:\"Nextlevel Handwerk\";s:7:\"address\";s:16:\"Piaristengasse 8\";s:8:\"postcode\";s:4:\"1080\";s:4:\"city\";s:4:\"Wien\";s:12:\"emailaddress\";s:26:\"info@nextlevelhandwerk.com\";s:12:\"mobilenumber\";s:10:\"3460074669\";s:13:\"websitedomain\";s:43:\"https:&#047;&#047;www.nextlevelhandwerk.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"44aa09ebd40898c201dde02bf919e013\";}','2022-02-21 20:54:34'),(106,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Norbert\";s:8:\"lastname\";s:11:\"Blasbichler\";s:11:\"companyname\";s:17:\"Bioweingut RADOAR\";s:7:\"address\";s:9:\"Pedratz 1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Feldthurns\";s:12:\"emailaddress\";s:15:\"info@radoar.com\";s:12:\"mobilenumber\";s:13:\"347 75 23 550\";s:13:\"websitedomain\";s:31:\"http:&#047;&#047;www.radoar.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"1717c1577333f0f3369928b5191237be\";}','2022-02-21 21:09:46'),(107,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:4:\"Karl\";s:8:\"lastname\";s:6:\"Wierer\";s:11:\"companyname\";s:6:\"WirNoi\";s:7:\"address\";s:15:\"Bahnhofplatz 10\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:20:\"wierer.k@rolmail.net\";s:12:\"mobilenumber\";s:13:\"+393475304521\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 22:04:32'),(108,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Cappello\";s:8:\"lastname\";s:7:\"Manfred\";s:11:\"companyname\";s:14:\"Trübenbachgut\";s:7:\"address\";s:17:\"Hocheppanerweg 15\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:7:\"Andrian\";s:12:\"emailaddress\";s:18:\"leo2037p@gmail.com\";s:12:\"mobilenumber\";s:10:\"3347135033\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-21 22:55:34'),(109,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Silvia\";s:8:\"lastname\";s:5:\"Rungg\";s:11:\"companyname\";s:17:\"Hotel Himmelreich\";s:7:\"address\";s:17:\"Klostergasse 15 B\";s:8:\"postcode\";s:5:\"39020\";s:4:\"city\";s:18:\"Kastelbell Tschars\";s:12:\"emailaddress\";s:19:\"info@himmelreich.it\";s:12:\"mobilenumber\";s:10:\"3499205033\";s:13:\"websitedomain\";s:35:\"http:&#047;&#047;www.himmelreich.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"bfedefe13e4cad84b3b18f1ebeb49665\";}','2022-02-21 23:21:33'),(110,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Helene \";s:8:\"lastname\";s:5:\"Paris\";s:11:\"companyname\";s:48:\"Bistro Fundus Lana + Bar Km23 Bahnhof Burgstall \";s:7:\"address\";s:16:\"Boznerstrasse 78\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:4:\"Lana\";s:12:\"emailaddress\";s:22:\"leni@bistro-fundus.com\";s:12:\"mobilenumber\";s:10:\"3393493668\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"7\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 06:25:02'),(111,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Markus\";s:8:\"lastname\";s:7:\"Stocker\";s:11:\"companyname\";s:11:\"Jack & King\";s:7:\"address\";s:21:\"Vinschgauerstrasse 63\";s:8:\"postcode\";s:5:\"39020\";s:4:\"city\";s:4:\"Töl\";s:12:\"emailaddress\";s:19:\"info@jackandking.it\";s:12:\"mobilenumber\";s:10:\"3381725780\";s:13:\"websitedomain\";s:35:\"http:&#047;&#047;www.jackandking.it\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:4:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";i:2;s:6:\"Handel\";i:3;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 06:36:38'),(112,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:12:\"Blasbichler \";s:8:\"lastname\";s:6:\"Martin\";s:11:\"companyname\";s:15:\"b-mechanik GmbH\";s:7:\"address\";s:20:\"Handwerkerstraße 26\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Feldthurns\";s:12:\"emailaddress\";s:19:\"info@b-mechanik.com\";s:12:\"mobilenumber\";s:11:\"03498697902\";s:13:\"websitedomain\";s:35:\"http:&#047;&#047;www.b-mechanik.com\";s:9:\"employees\";s:1:\"6\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"2b4504c7fb07f363d05d04e7c4b6f863\";}','2022-02-22 07:06:11'),(113,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:20:\"Friedrich Sebastian \";s:8:\"lastname\";s:8:\"Feichter\";s:11:\"companyname\";s:10:\"Bildhauer \";s:7:\"address\";s:9:\"Gisse 120\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:10:\"St. Johann\";s:12:\"emailaddress\";s:19:\"info@homosolaris.it\";s:12:\"mobilenumber\";s:10:\"3489030307\";s:13:\"websitedomain\";s:35:\"http:&#047;&#047;www.homosolaris.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 07:23:11'),(114,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Gerhard\";s:8:\"lastname\";s:7:\"Tratter\";s:11:\"companyname\";s:24:\"Tratter Engineering GmbH\";s:7:\"address\";s:15:\"W. Gebert-Deeg \";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:24:\"g.tratter@trattereng.com\";s:12:\"mobilenumber\";s:10:\"3480071971\";s:13:\"websitedomain\";s:35:\"http:&#047;&#047;www.trattereng.com\";s:9:\"employees\";s:2:\"53\";s:7:\"branche\";a:2:{i:0;s:9:\"Industrie\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"980d9a4f8afdfce712c34865bbe78613\";}','2022-02-22 07:31:26'),(115,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Lukas\";s:8:\"lastname\";s:9:\"Pernstich\";s:11:\"companyname\";s:8:\"Lignotec\";s:7:\"address\";s:27:\"Handwerkerzone Neuradein 12\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Aldein\";s:12:\"emailaddress\";s:17:\"lukas@lignotec.it\";s:12:\"mobilenumber\";s:10:\"3351243193\";s:13:\"websitedomain\";s:32:\"http:&#047;&#047;www.lignotec.it\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 07:39:57'),(116,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Lukas\";s:8:\"lastname\";s:9:\"Pernstich\";s:11:\"companyname\";s:8:\"Lignotec\";s:7:\"address\";s:28:\"Handwerkerzone Neuradein, 12\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Aldein\";s:12:\"emailaddress\";s:17:\"lukas@lignotec.it\";s:12:\"mobilenumber\";s:11:\"335 1243193\";s:13:\"websitedomain\";s:32:\"http:&#047;&#047;www.lignotec.it\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"f9bb9fef28466688cbe9e47ac5dac992\";}','2022-02-22 07:43:01'),(117,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:11:\"Maria Luise\";s:8:\"lastname\";s:5:\"Stark\";s:11:\"companyname\";s:11:\"Fallrohrhof\";s:7:\"address\";s:16:\"Allitz4 4&#047;A\";s:8:\"postcode\";s:5:\"39023\";s:4:\"city\";s:4:\"Laas\";s:12:\"emailaddress\";s:23:\"Luise.stark81@gmail.com\";s:12:\"mobilenumber\";s:10:\"3480345692\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 07:56:30'),(118,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Pircher\";s:8:\"lastname\";s:6:\"Martin\";s:11:\"companyname\";s:17:\"Einzelunternehmen\";s:7:\"address\";s:33:\"Kondominium Alpenrose 84&#047;194\";s:8:\"postcode\";s:5:\"39016\";s:4:\"city\";s:22:\"St. Walburg&#047;Ulten\";s:12:\"emailaddress\";s:28:\"martin.pircher53@rolmail.net\";s:12:\"mobilenumber\";s:11:\"03489046153\";s:13:\"websitedomain\";s:38:\"http:&#047;&#047;www.wanderfuehrer.net\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 08:35:04'),(119,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Astrid\";s:8:\"lastname\";s:6:\"Kofler\";s:11:\"companyname\";s:14:\"GARNI SUNNWIES\";s:7:\"address\";s:15:\"St. Felixweg 12\";s:8:\"postcode\";s:5:\"39020\";s:4:\"city\";s:7:\"Marling\";s:12:\"emailaddress\";s:23:\"info@garni-sunnwies.com\";s:12:\"mobilenumber\";s:10:\"3334233371\";s:13:\"websitedomain\";s:39:\"http:&#047;&#047;www.garni-sunnwies.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 08:50:32'),(120,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:14:\"Marako Markus \";s:8:\"lastname\";s:7:\"Munter \";s:11:\"companyname\";s:13:\"Rückenstudio\";s:7:\"address\";s:14:\"Mühlerbach 6 \";s:8:\"postcode\";s:6:\"39040 \";s:4:\"city\";s:10:\"Villnöss \";s:12:\"emailaddress\";s:28:\"markusmunter.sojer@gmail.com\";s:12:\"mobilenumber\";s:10:\"3478681507\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 08:54:01'),(121,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Michael\";s:8:\"lastname\";s:11:\"Überbacher\";s:11:\"companyname\";s:11:\"Soleon GmbH\";s:7:\"address\";s:15:\"Eisackstrasse 1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:5:\"Vahrn\";s:12:\"emailaddress\";s:17:\"michael@soleon.it\";s:12:\"mobilenumber\";s:10:\"3355994441\";s:13:\"websitedomain\";s:30:\"http:&#047;&#047;www.soleon.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"c590cd4942aded94f6dd7869cdb14963\";}','2022-02-22 08:58:09'),(122,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Edeltraud\";s:8:\"lastname\";s:11:\"Wiedenhofer\";s:11:\"companyname\";s:14:\"Geiser Gerhard\";s:7:\"address\";s:16:\"Handwerkerzone 3\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:8:\"St.Felix\";s:12:\"emailaddress\";s:26:\"geiser.gerhard@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3395865883\";s:13:\"websitedomain\";s:38:\"http:&#047;&#047;geiser.gerhard.lvh.it\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:10:\"Baugewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 09:00:41'),(123,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Marlies\";s:8:\"lastname\";s:6:\"Pattis\";s:11:\"companyname\";s:13:\"Salon marlies\";s:7:\"address\";s:15:\"Trattengasse 11\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:21:\"pattisselena@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3381097770\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 09:01:02'),(124,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Patrick\";s:8:\"lastname\";s:9:\"Cumerlato\";s:11:\"companyname\";s:8:\"Hydrobau\";s:7:\"address\";s:18:\"Luis zueggstr. 22 \";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:17:\"info@hydrobau.com\";s:12:\"mobilenumber\";s:10:\"3357029218\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"4caac6d8e4e9599edbfdc808d7ffe917\";}','2022-02-22 09:07:58'),(125,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Marlies\";s:8:\"lastname\";s:6:\"Pattis\";s:11:\"companyname\";s:13:\"Salon marlies\";s:7:\"address\";s:17:\"Trattengassec11, \";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:21:\"pattisselena@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3381097770\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 09:24:04'),(126,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Philip\";s:8:\"lastname\";s:7:\"Stauder\";s:11:\"companyname\";s:17:\"sein-wohnen-leben\";s:7:\"address\";s:27:\"Kehlburgweg 14, St. Georgen\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Bruneck\";s:12:\"emailaddress\";s:23:\"philipstauder@gmail.com\";s:12:\"mobilenumber\";s:10:\"3405255423\";s:13:\"websitedomain\";s:42:\"http:&#047;&#047;www.sein-wohnen-leben.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"8ba90ed378d888251311c1dc475e2cc1\";}','2022-02-22 09:25:50'),(127,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Philip\";s:8:\"lastname\";s:7:\"Stauder\";s:11:\"companyname\";s:17:\"sein-wohnen-leben\";s:7:\"address\";s:27:\"Kehlburgweg 14, St. Georgen\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Bruneck\";s:12:\"emailaddress\";s:23:\"philipstauder@gmail.com\";s:12:\"mobilenumber\";s:10:\"3405255423\";s:13:\"websitedomain\";s:42:\"http:&#047;&#047;www.sein-wohnen-leben.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"8ba90ed378d888251311c1dc475e2cc1\";}','2022-02-22 09:27:53'),(128,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Thomas\";s:8:\"lastname\";s:8:\"Lochmann\";s:11:\"companyname\";s:13:\"Kestnholz.Hof\";s:7:\"address\";s:13:\"Rateiserweg 4\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:4:\"Lana\";s:12:\"emailaddress\";s:28:\"kestnholz.hof@protonmail.com\";s:12:\"mobilenumber\";s:10:\"3487737578\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 09:34:42'),(129,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Marcel\";s:8:\"lastname\";s:9:\"Weirather\";s:11:\"companyname\";s:16:\"Marcel Weirather\";s:7:\"address\";s:17:\"G.-I.-Verdross 47\";s:8:\"postcode\";s:5:\"39024\";s:4:\"city\";s:4:\"Mals\";s:12:\"emailaddress\";s:21:\"m.weirather@gmail.com\";s:12:\"mobilenumber\";s:10:\"3389730190\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 10:00:25'),(130,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Verena \";s:8:\"lastname\";s:23:\"Weidemann-Bingel Schick\";s:11:\"companyname\";s:10:\"Luisenhof \";s:7:\"address\";s:15:\"Werderdammstr.3\";s:8:\"postcode\";s:7:\"D-14669\";s:4:\"city\";s:7:\"Paretz \";s:12:\"emailaddress\";s:15:\"vwbingel@web.de\";s:12:\"mobilenumber\";s:14:\"00491772293359\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;Luisenhof-Paretz.de\";s:9:\"employees\";s:1:\"8\";s:7:\"branche\";a:3:{i:0;s:13:\"Dienstleister\";i:1;s:11:\"Gastgewerbe\";i:2;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 10:13:54'),(131,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Johann\";s:8:\"lastname\";s:5:\"Zwick\";s:11:\"companyname\";s:18:\"Goldschmiede Zwick\";s:7:\"address\";s:21:\"Generalverdrossstr.51\";s:8:\"postcode\";s:5:\"39024\";s:4:\"city\";s:4:\"Mals\";s:12:\"emailaddress\";s:27:\"info@goldschmiede-zwick.com\";s:12:\"mobilenumber\";s:10:\"0473831936\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 10:16:18'),(132,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Johann\";s:8:\"lastname\";s:5:\"Zwick\";s:11:\"companyname\";s:19:\"Goldschmiede Zwick \";s:7:\"address\";s:21:\"Generalverdrossstr.51\";s:8:\"postcode\";s:5:\"39024\";s:4:\"city\";s:4:\"Mals\";s:12:\"emailaddress\";s:27:\"info@goldschmiede-zwick.com\";s:12:\"mobilenumber\";s:10:\"0473831936\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 11:17:54'),(133,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Bernhard\";s:8:\"lastname\";s:8:\"Tammerle\";s:11:\"companyname\";s:13:\"Taxi Tammerle\";s:7:\"address\";s:21:\"Riffianerweg 4&#047;D\";s:8:\"postcode\";s:5:\"39017\";s:4:\"city\";s:7:\"Schenna\";s:12:\"emailaddress\";s:22:\"info@taxi-tammerle.com\";s:12:\"mobilenumber\";s:13:\"+393483104645\";s:13:\"websitedomain\";s:38:\"http:&#047;&#047;www.taxi-tammerle.com\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 11:48:56'),(134,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"ingrid\";s:8:\"lastname\";s:7:\"aichner\";s:11:\"companyname\";s:11:\"mode ingrid\";s:7:\"address\";s:30:\"oswald v.wolkenstein 29&#047;c\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"kastelruth\";s:12:\"emailaddress\";s:23:\"aichneringrid@gmail.com\";s:12:\"mobilenumber\";s:10:\"3356924857\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 11:50:08'),(135,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Ulrike\";s:8:\"lastname\";s:5:\"Gratl\";s:11:\"companyname\";s:11:\"Holzmannhof\";s:7:\"address\";s:9:\"Montigl 1\";s:8:\"postcode\";s:5:\"39018\";s:4:\"city\";s:6:\"Terlan\";s:12:\"emailaddress\";s:13:\"pezza@live.de\";s:12:\"mobilenumber\";s:10:\"3388189137\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 12:05:07'),(136,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Silvia \";s:8:\"lastname\";s:6:\"Wirths\";s:11:\"companyname\";s:12:\"Delizia GmbH\";s:7:\"address\";s:23:\"St. Agatha Weg 1&#047;1\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:4:\"Lana\";s:12:\"emailaddress\";s:19:\"info@deliziaeco.com\";s:12:\"mobilenumber\";s:10:\"3283111590\";s:13:\"websitedomain\";s:35:\"http:&#047;&#047;www.deliziaeco.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"cd97c28bd85f0036b5f066d7507d7b7d\";}','2022-02-22 12:07:50'),(137,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Günther\";s:8:\"lastname\";s:9:\"Pallweber\";s:11:\"companyname\";s:13:\"VK Italia Srl\";s:7:\"address\";s:16:\"Via Kuperion 2-4\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:6:\"Merano\";s:12:\"emailaddress\";s:21:\"pallweber@vkitalia.it\";s:12:\"mobilenumber\";s:10:\"3358134120\";s:13:\"websitedomain\";s:28:\"http:&#047;&#047;vkitalia.it\";s:9:\"employees\";s:2:\"17\";s:7:\"branche\";a:4:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";i:2;s:6:\"Handel\";i:3;s:10:\"Baugewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"b0eedcd7abf15be9b54c217d530ded7f\";}','2022-02-22 12:08:08'),(138,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Lorenz\";s:8:\"lastname\";s:4:\"Puff\";s:11:\"companyname\";s:11:\"Lorenz Puff\";s:7:\"address\";s:20:\"Telser Galerie, 11-3\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:20:\"info@lorenz-puff.com\";s:12:\"mobilenumber\";s:11:\"347 0788923\";s:13:\"websitedomain\";s:33:\"http:&#047;&#047;www.alchewat.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"c66eea8f685291caa1445a0d1537bed2\";}','2022-02-22 12:15:44'),(139,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Katharina\";s:8:\"lastname\";s:7:\"Stuefer\";s:11:\"companyname\";s:29:\"Federkielstickerei Katharina \";s:7:\"address\";s:10:\"Astfeld 17\";s:8:\"postcode\";s:5:\"39058\";s:4:\"city\";s:7:\"Sarntal\";s:12:\"emailaddress\";s:23:\"pema.katharina@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3498360109\";s:13:\"websitedomain\";s:53:\"http:&#047;&#047;www.federkielstickerei-katharina.com\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"730c0c9e3829afc8b6c98a5c0412fe02\";}','2022-02-22 12:27:27'),(140,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Markus\";s:8:\"lastname\";s:7:\"Lintner\";s:11:\"companyname\";s:7:\"Pegasus\";s:7:\"address\";s:12:\"Obstplatz 22\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:20:\"markus@pegasus.bz.it\";s:12:\"mobilenumber\";s:10:\"0471978875\";s:13:\"websitedomain\";s:34:\"http:&#047;&#047;www.pegasus.bz.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"9f6cc4608830cf714846bfe610b05390\";}','2022-02-22 12:30:47'),(141,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Martin\";s:8:\"lastname\";s:7:\"Fontana\";s:11:\"companyname\";s:12:\"Brückenwirt\";s:7:\"address\";s:19:\"Breitebnerstrasse 2\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:9:\"St. Matin\";s:12:\"emailaddress\";s:17:\"pixnerevi@live.de\";s:12:\"mobilenumber\";s:10:\"3495672328\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"5\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 13:50:36'),(142,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Ronnie\";s:8:\"lastname\";s:10:\"Mittermair\";s:11:\"companyname\";s:28:\"Mittermair Heinrich & Co. KG\";s:7:\"address\";s:20:\"Linkes Eisackufer 53\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:27:\"mittermair@scaniaservice.it\";s:12:\"mobilenumber\";s:10:\"3284954595\";s:13:\"websitedomain\";s:37:\"http:&#047;&#047;www.scaniaservice.it\";s:9:\"employees\";s:2:\"10\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"9f2af51543b3c55ad41fc31d8b4aa82f\";}','2022-02-22 14:08:36'),(143,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:3:\"Evi\";s:8:\"lastname\";s:10:\"Oberleiter\";s:11:\"companyname\";s:16:\"Technografik OHG\";s:7:\"address\";s:21:\"St.Lorenznerstr. Nr 1\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Bruneck\";s:12:\"emailaddress\";s:23:\"evi.mayer@mayer-ing.com\";s:12:\"mobilenumber\";s:10:\"3483547064\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 15:40:14'),(144,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Monika \";s:8:\"lastname\";s:8:\"Schatzer\";s:11:\"companyname\";s:12:\"INNEREDERHOF\";s:7:\"address\";s:14:\"Mitterberg 15a\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Sexten\";s:12:\"emailaddress\";s:27:\"monika.schatzer@hotmail.com\";s:12:\"mobilenumber\";s:10:\"3497427349\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 15:50:12'),(145,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Alfred\";s:8:\"lastname\";s:9:\"Lanzinger\";s:11:\"companyname\";s:12:\"Innerederhof\";s:7:\"address\";s:13:\"Mitterberg15a\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Sexten\";s:12:\"emailaddress\";s:27:\"alfred.lanzinger@outlook.de\";s:12:\"mobilenumber\";s:10:\"3492252178\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 15:51:58'),(146,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Thomas\";s:8:\"lastname\";s:5:\"Major\";s:11:\"companyname\";s:12:\"Major Thomas\";s:7:\"address\";s:12:\"Herrnanger 4\";s:8:\"postcode\";s:5:\"39050\";s:4:\"city\";s:5:\"Eggen\";s:12:\"emailaddress\";s:24:\"thomas.major@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3669787523\";s:13:\"websitedomain\";s:34:\"http:&#047;&#047;www.major-bau.com\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 16:41:20'),(147,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Birgit \";s:8:\"lastname\";s:4:\"Waid\";s:11:\"companyname\";s:14:\"Inside home KG\";s:7:\"address\";s:12:\"Bachgasse 14\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Tramin\";s:12:\"emailaddress\";s:18:\"info@insidehome.it\";s:12:\"mobilenumber\";s:10:\"3332392988\";s:13:\"websitedomain\";s:30:\"http:&#047;&#047;insidehome.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 16:45:38'),(148,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Marcello\";s:8:\"lastname\";s:11:\"Paternoster\";s:11:\"companyname\";s:27:\"M.P di Paternoster Marcello\";s:7:\"address\";s:17:\"Maria-Rast-Weg 4i\";s:8:\"postcode\";s:5:\"39057\";s:4:\"city\";s:18:\"St. Michael Eppan \";s:12:\"emailaddress\";s:30:\"marcello.paternoster@gmail.com\";s:12:\"mobilenumber\";s:10:\"3398041735\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 17:10:20'),(149,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Marcello\";s:8:\"lastname\";s:11:\"Paternoster\";s:11:\"companyname\";s:27:\"M.P di Paternoster Marcello\";s:7:\"address\";s:17:\"Maria-Rast-Weg 4i\";s:8:\"postcode\";s:5:\"39057\";s:4:\"city\";s:17:\"St. Michael Eppan\";s:12:\"emailaddress\";s:30:\"marcello.paternoster@gmail.com\";s:12:\"mobilenumber\";s:10:\"3398041735\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 17:14:02'),(150,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Monika\";s:8:\"lastname\";s:8:\"Schatzer\";s:11:\"companyname\";s:12:\"Innerederhof\";s:7:\"address\";s:14:\"Mitterberg 15a\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Sexten\";s:12:\"emailaddress\";s:27:\"monika.schatzer@hotmail.com\";s:12:\"mobilenumber\";s:10:\"3497427349\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 17:43:11'),(151,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Tengler\";s:8:\"lastname\";s:5:\"Alois\";s:11:\"companyname\";s:13:\"Tengler Alois\";s:7:\"address\";s:8:\"Sella 55\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Termeno BZ\";s:12:\"emailaddress\";s:23:\"info@nussbaumerhof.info\";s:12:\"mobilenumber\";s:13:\"0393885732974\";s:13:\"websitedomain\";s:39:\"http:&#047;&#047;www.nussbaumerhof.info\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 19:24:48'),(152,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Michael\";s:8:\"lastname\";s:6:\"Siller\";s:11:\"companyname\";s:21:\"Firma Siller Michael \";s:7:\"address\";s:15:\"Mareit, Wetzl 7\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Ratschings\";s:12:\"emailaddress\";s:23:\"siller.michael@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3409857884\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"1c0a4e2b5e98acb5cf7c8a38c564aebe\";}','2022-02-22 19:28:44'),(153,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Georg\";s:8:\"lastname\";s:8:\"Kirchler\";s:11:\"companyname\";s:13:\"Top - Ofenbau\";s:7:\"address\";s:22:\"St. Peter - Hollechn 5\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:7:\"Ahrntal\";s:12:\"emailaddress\";s:20:\"info@top-ofenbau.com\";s:12:\"mobilenumber\";s:10:\"3465006630\";s:13:\"websitedomain\";s:32:\"http:&#047;&#047;top-ofenbau.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"9c8840d9b81e02333b3e9771d2029c36\";}','2022-02-22 20:26:13'),(154,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Adele\";s:8:\"lastname\";s:8:\"Rabanser\";s:11:\"companyname\";s:12:\"Rabanser OHG\";s:7:\"address\";s:16:\"Reziastrasse 28b\";s:8:\"postcode\";s:5:\"39046\";s:4:\"city\";s:17:\"St.Ulrich Gröden\";s:12:\"emailaddress\";s:18:\"adele@rabanser.com\";s:12:\"mobilenumber\";s:10:\"3355928694\";s:13:\"websitedomain\";s:33:\"http:&#047;&#047;www.rabanser.com\";s:9:\"employees\";s:1:\"7\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 20:47:09'),(155,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Heidi\";s:8:\"lastname\";s:7:\"Pichler\";s:11:\"companyname\";s:16:\"Hotel Schönwies\";s:7:\"address\";s:18:\"Wies, Wik 7&#047;1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Aldein\";s:12:\"emailaddress\";s:26:\"heidipichlerhp74@gmail.com\";s:12:\"mobilenumber\";s:10:\"3343106164\";s:13:\"websitedomain\";s:34:\"http:&#047;&#047;www.schoenwies.it\";s:9:\"employees\";s:1:\"6\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 20:56:45'),(156,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:17:\"Egon und Philipp \";s:8:\"lastname\";s:5:\"Heiss\";s:11:\"companyname\";s:15:\"Cosmo Life GmbH\";s:7:\"address\";s:16:\"Europastraße 13\";s:8:\"postcode\";s:5:\"39052\";s:4:\"city\";s:7:\"Kaltern\";s:12:\"emailaddress\";s:17:\"info@cosmolife.it\";s:12:\"mobilenumber\";s:10:\"3357373315\";s:13:\"websitedomain\";s:33:\"http:&#047;&#047;www.cosmolife.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 21:15:43'),(157,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Michaela\";s:8:\"lastname\";s:4:\"Auer\";s:11:\"companyname\";s:34:\"Nähstube Sternenstaub Accessories\";s:7:\"address\";s:16:\"Gebirgsjäger 17\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Brunico\";s:12:\"emailaddress\";s:21:\"michaelaauer@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3480447020\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.sternenstaub.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 21:25:56'),(158,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Hannes \";s:8:\"lastname\";s:11:\"Kühebacher\";s:11:\"companyname\";s:20:\"Hotel Weisses Rössl\";s:7:\"address\";s:24:\"Herzog Tassilo Strasse 1\";s:8:\"postcode\";s:5:\"39038\";s:4:\"city\";s:8:\"Innichen\";s:12:\"emailaddress\";s:28:\"hannes.kuehebacher@gmail.com\";s:12:\"mobilenumber\";s:10:\"3492917408\";s:13:\"websitedomain\";s:46:\"http:&#047;&#047;www.hotel-cavallinobianco.com\";s:9:\"employees\";s:2:\"17\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"f479c40f895738776cf2dad2305ec519\";}','2022-02-22 21:50:29'),(159,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:4:\"Alma\";s:8:\"lastname\";s:8:\"Agreiter\";s:11:\"companyname\";s:22:\"Ciasa Tlara Apartments\";s:7:\"address\";s:24:\"Strada AlPlan dessora 24\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:21:\"St. Vigil in Enneberg\";s:12:\"emailaddress\";s:29:\"alma.agreiter.tlara@gmail.com\";s:12:\"mobilenumber\";s:10:\"3480339636\";s:13:\"websitedomain\";s:35:\"http:&#047;&#047;www.ciasa-tlara.it\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-22 22:45:16'),(160,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Matthias \";s:8:\"lastname\";s:6:\"Mulser\";s:11:\"companyname\";s:14:\"JuMa Biomasse \";s:7:\"address\";s:12:\"St.Oswald 23\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Kastelruth\";s:12:\"emailaddress\";s:16:\"matthias@juma.bz\";s:12:\"mobilenumber\";s:10:\"3357059265\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"8\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 06:27:21'),(161,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Matthias \";s:8:\"lastname\";s:7:\"Mulser \";s:11:\"companyname\";s:14:\"JuMa Biomasse \";s:7:\"address\";s:12:\"St.Oswald 23\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Kastelruth\";s:12:\"emailaddress\";s:16:\"matthias@juma.bz\";s:12:\"mobilenumber\";s:10:\"3357059265\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"8\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 06:32:14'),(162,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Bernhard\";s:8:\"lastname\";s:8:\"Schuster\";s:11:\"companyname\";s:17:\"Bernhard Schuster\";s:7:\"address\";s:17:\"Schiesstandweg 37\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Percha\";s:12:\"emailaddress\";s:26:\"info@bernhard-schuster.com\";s:12:\"mobilenumber\";s:10:\"3487054468\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 06:48:49'),(163,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Hubert \";s:8:\"lastname\";s:8:\"Stockner\";s:11:\"companyname\";s:36:\"Der Genussbunker des Hubert Stockner\";s:7:\"address\";s:12:\"St. Anton 15\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:11:\"Feldthurns \";s:12:\"emailaddress\";s:20:\"info@genussbunker.it\";s:12:\"mobilenumber\";s:10:\"3478447653\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.genussbunker.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 07:03:57'),(164,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Hubert\";s:8:\"lastname\";s:8:\"Stockner\";s:11:\"companyname\";s:36:\"Der Genussbunker des Hubert Stockner\";s:7:\"address\";s:11:\"St.Anton 15\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:11:\"Feldthurns \";s:12:\"emailaddress\";s:20:\"info@genussbunker.it\";s:12:\"mobilenumber\";s:10:\"3478447653\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.genussbunker.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 07:07:21'),(165,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Isidor\";s:8:\"lastname\";s:9:\"oberrauch\";s:11:\"companyname\";s:14:\"Randötsch Hof\";s:7:\"address\";s:16:\"In der Flauge 80\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"brixen\";s:12:\"emailaddress\";s:24:\"isidoroberrauch@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3492777322\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 07:08:03'),(166,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"David\";s:8:\"lastname\";s:7:\"Pircher\";s:11:\"companyname\";s:13:\"David Pircher\";s:7:\"address\";s:14:\"Obermühlweg 7\";s:8:\"postcode\";s:5:\"39021\";s:4:\"city\";s:6:\"Latsch\";s:12:\"emailaddress\";s:14:\"pirdav@gmx.net\";s:12:\"mobilenumber\";s:10:\"3331379389\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 07:24:40'),(167,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Benedikt\";s:8:\"lastname\";s:6:\"Thaler\";s:11:\"companyname\";s:27:\"Il tetto di benedikt Thaler\";s:7:\"address\";s:7:\"Auen 26\";s:8:\"postcode\";s:5:\"39058\";s:4:\"city\";s:9:\"Sarnthein\";s:12:\"emailaddress\";s:19:\"iltetto@iltetto.biz\";s:12:\"mobilenumber\";s:10:\"3479331384\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 08:14:47'),(168,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Ingrid\";s:8:\"lastname\";s:11:\"Pardatscher\";s:11:\"companyname\";s:19:\"Gasthof Fichtenhof \";s:7:\"address\";s:11:\"Pichl , 18 \";s:8:\"postcode\";s:6:\"39040 \";s:4:\"city\";s:18:\"Gfrill bei Salurn \";s:12:\"emailaddress\";s:18:\"info@fichtenhof.it\";s:12:\"mobilenumber\";s:10:\"3383028653\";s:13:\"websitedomain\";s:34:\"http:&#047;&#047;www.fichtenhof.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 08:20:09'),(169,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Oswald\";s:8:\"lastname\";s:5:\"Amort\";s:11:\"companyname\";s:28:\"Holzschnitzerei Oswald Amort\";s:7:\"address\";s:9:\"Perggis 1\";s:8:\"postcode\";s:5:\"39037\";s:4:\"city\";s:8:\"Rodeneck\";s:12:\"emailaddress\";s:14:\"info@krippe.it\";s:12:\"mobilenumber\";s:10:\"3407132170\";s:13:\"websitedomain\";s:30:\"http:&#047;&#047;www.krippe.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"77f84c7e2ac5dcc8c64beb674363bfe0\";}','2022-02-23 08:32:56'),(170,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Dominik\";s:8:\"lastname\";s:5:\"Amort\";s:11:\"companyname\";s:23:\"Creative Art Company KG\";s:7:\"address\";s:9:\"Perggis 1\";s:8:\"postcode\";s:5:\"39037\";s:4:\"city\";s:8:\"Rodeneck\";s:12:\"emailaddress\";s:18:\"info@waldzeit.shop\";s:12:\"mobilenumber\";s:10:\"3474670401\";s:13:\"websitedomain\";s:34:\"http:&#047;&#047;www.waldzeit.shop\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"3dccc2246f167a0d2f0af33f30e6453f\";}','2022-02-23 08:33:04'),(171,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Angelika\";s:8:\"lastname\";s:7:\"Klammer\";s:11:\"companyname\";s:34:\"Psychologin&#047;Psychotherapeutin\";s:7:\"address\";s:15:\"S.Heinrichstr.5\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:26:\"klammer.angelika@gmail.com\";s:12:\"mobilenumber\";s:10:\"3397939943\";s:13:\"websitedomain\";s:40:\"http:&#047;&#047;www.angelika.klammer.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 09:16:21'),(172,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Angelika\";s:8:\"lastname\";s:7:\"Klammer\";s:11:\"companyname\";s:35:\"Psychololgin&#047;Psychotherapeutin\";s:7:\"address\";s:15:\"S.Heinrichstr.5\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:26:\"klammer.angelika@gmail.com\";s:12:\"mobilenumber\";s:10:\"3397939943\";s:13:\"websitedomain\";s:39:\"http:&#047;&#047;www.angelikaklammer.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 09:54:56'),(173,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Roland \";s:8:\"lastname\";s:13:\"Fuchsbrugger \";s:11:\"companyname\";s:16:\"Gasthof Brugghof\";s:7:\"address\";s:9:\"Badlweg 1\";s:8:\"postcode\";s:5:\"39032\";s:4:\"city\";s:15:\"Sand in Taufers\";s:12:\"emailaddress\";s:18:\"rollofux@gmail.com\";s:12:\"mobilenumber\";s:10:\"3482611612\";s:13:\"websitedomain\";s:33:\"http:&#047;&#047;www.brugghof.com\";s:9:\"employees\";s:1:\"7\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 10:24:19'),(174,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Schatzer \";s:8:\"lastname\";s:9:\"Günther \";s:11:\"companyname\";s:19:\"Residenz Erschbaum \";s:7:\"address\";s:20:\"Bad Bergfallweg Nr 2\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Olang \";s:12:\"emailaddress\";s:18:\"info@erschbaum.com\";s:12:\"mobilenumber\";s:10:\"3398072800\";s:13:\"websitedomain\";s:34:\"http:&#047;&#047;www.erschbaum.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:2:{i:0;s:11:\"Gastgewerbe\";i:1;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 10:31:11'),(175,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Alexandra\";s:8:\"lastname\";s:7:\"Stadler\";s:11:\"companyname\";s:6:\"GYM2do\";s:7:\"address\";s:18:\"Katerseestraße 74\";s:8:\"postcode\";s:5:\"39056\";s:4:\"city\";s:11:\"Welschnofen\";s:12:\"emailaddress\";s:14:\"alex@gym2do.it\";s:12:\"mobilenumber\";s:11:\"347-8984096\";s:13:\"websitedomain\";s:30:\"http:&#047;&#047;www.gym2do.it\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 11:01:15'),(176,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Hubert\";s:8:\"lastname\";s:5:\"Egger\";s:11:\"companyname\";s:11:\"OMega fisch\";s:7:\"address\";s:9:\"Köfele 1\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:13:\"Sankt Pankraz\";s:12:\"emailaddress\";s:21:\"hubert.egger@alice.it\";s:12:\"mobilenumber\";s:10:\"3498823918\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 11:11:21'),(177,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Alfred\";s:8:\"lastname\";s:9:\"Lanzinger\";s:11:\"companyname\";s:12:\"Innerederhof\";s:7:\"address\";s:13:\"Mitterberg15a\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Sexten\";s:12:\"emailaddress\";s:27:\"alfred.lanzinger@outlook.de\";s:12:\"mobilenumber\";s:11:\"03492252178\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 12:07:23'),(178,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Hubert\";s:8:\"lastname\";s:8:\"Stockner\";s:11:\"companyname\";s:16:\"Der Genussbunker\";s:7:\"address\";s:12:\"St. Anton 15\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Feldthurns\";s:12:\"emailaddress\";s:20:\"info@genussbunker.it\";s:12:\"mobilenumber\";s:10:\"3478447653\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.genussbunker.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"566fc3522bc155424c8ca2f671ac31bc\";}','2022-02-23 12:12:49'),(179,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Klaus \";s:8:\"lastname\";s:11:\"Wellenzohn \";s:11:\"companyname\";s:11:\"Plauserhof \";s:7:\"address\";s:27:\"Kortsch alte landstraße 32\";s:8:\"postcode\";s:5:\"39028\";s:4:\"city\";s:11:\"Schlanders \";s:12:\"emailaddress\";s:25:\"klauswellenzohn@gmail.com\";s:12:\"mobilenumber\";s:10:\"3397834096\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 12:14:52'),(180,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Elnar\";s:8:\"lastname\";s:7:\"Steiner\";s:11:\"companyname\";s:17:\"Este Maschinenbau\";s:7:\"address\";s:21:\"St. Michael 53&#047;4\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Kastelruth\";s:12:\"emailaddress\";s:12:\"Info@este.bz\";s:12:\"mobilenumber\";s:10:\"3333709227\";s:13:\"websitedomain\";s:28:\"http:&#047;&#047;www.este.bz\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 12:50:04'),(181,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Rosmarie\";s:8:\"lastname\";s:7:\"Dignös\";s:11:\"companyname\";s:7:\"Koflhof\";s:7:\"address\";s:19:\"Franz Schöpf Weg 7\";s:8:\"postcode\";s:5:\"39057\";s:4:\"city\";s:29:\"APPIANO SULLA STRADA DEL VINO\";s:12:\"emailaddress\";s:17:\"rdignoes@yahoo.it\";s:12:\"mobilenumber\";s:10:\"3338862196\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 12:50:32'),(182,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Patrizia\";s:8:\"lastname\";s:11:\"Pardatscher\";s:11:\"companyname\";s:21:\"Residence Obermoarhof\";s:7:\"address\";s:12:\"Mairgasse, 3\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:9:\"Obervintl\";s:12:\"emailaddress\";s:20:\"info@obermoarhof.com\";s:12:\"mobilenumber\";s:10:\"3713591552\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 14:15:23'),(183,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Helmut\";s:8:\"lastname\";s:6:\"Lösch\";s:11:\"companyname\";s:22:\"Café S&#039;I-Tipftl \";s:7:\"address\";s:12:\"Hauptstr. 46\";s:8:\"postcode\";s:5:\"39025\";s:4:\"city\";s:7:\"Naturns\";s:12:\"emailaddress\";s:23:\"loesch.helmut@gmail.com\";s:12:\"mobilenumber\";s:10:\"3356845207\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"dac6107ed2c107ff32d76901d9749071\";}','2022-02-23 15:04:40'),(184,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Helmut\";s:8:\"lastname\";s:6:\"Lösch\";s:11:\"companyname\";s:16:\"Café S`I-Tipftl\";s:7:\"address\";s:12:\"Färberweg 1\";s:8:\"postcode\";s:5:\"39025\";s:4:\"city\";s:7:\"Naturno\";s:12:\"emailaddress\";s:23:\"loesch.helmut@gmail.com\";s:12:\"mobilenumber\";s:10:\"3356845207\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 15:27:28'),(185,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Christian\";s:8:\"lastname\";s:11:\"Steinhauser\";s:11:\"companyname\";s:12:\"Maskero Gmbh\";s:7:\"address\";s:15:\"Pfarrhofstr. 4F\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:20:\"christian@maskero.it\";s:12:\"mobilenumber\";s:10:\"3356438948\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"a08d468ead96fcff0aa5275ff62ad727\";}','2022-02-23 16:54:21'),(186,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Manfred\";s:8:\"lastname\";s:8:\"Staffler\";s:11:\"companyname\";s:24:\"Elektro Staffler Manfred\";s:7:\"address\";s:13:\"Tusengrabl 13\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:11:\"St. Pankraz\";s:12:\"emailaddress\";s:16:\"info@staffler.it\";s:12:\"mobilenumber\";s:10:\"3472424103\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 17:57:35'),(187,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Luigi\";s:8:\"lastname\";s:8:\"Spolsino\";s:11:\"companyname\";s:15:\"Spolsino Luigi \";s:7:\"address\";s:18:\"Via Stazione 55 C \";s:8:\"postcode\";s:5:\"39018\";s:4:\"city\";s:11:\"Settequerce\";s:12:\"emailaddress\";s:23:\"spolsinoluigi@gmail.com\";s:12:\"mobilenumber\";s:10:\"3397576393\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:2:{i:0;s:6:\"Handel\";i:1;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 18:08:03'),(188,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Barbara\";s:8:\"lastname\";s:6:\"Illmer\";s:11:\"companyname\";s:42:\"Garni Stübele der Illmer Barbara & Co OHG\";s:7:\"address\";s:16:\"Mühlangerweg 23\";s:8:\"postcode\";s:5:\"39019\";s:4:\"city\";s:5:\"Tirol\";s:12:\"emailaddress\";s:20:\"stuebele@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3405296889\";s:13:\"websitedomain\";s:44:\"https:&#047;&#047;www.stuebele-dorftirol.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"21914ce92e541d78998a29477a4cc700\";}','2022-02-23 18:19:21'),(189,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Markus\";s:8:\"lastname\";s:11:\"Nussbaumer \";s:11:\"companyname\";s:10:\"Ofensetzer\";s:7:\"address\";s:7:\"Muls 36\";s:8:\"postcode\";s:5:\"39058\";s:4:\"city\";s:7:\"SARNTAL\";s:12:\"emailaddress\";s:29:\"markus.nussbaumer@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3487032539\";s:13:\"websitedomain\";s:46:\"http:&#047;&#047;markus.nussbaumer@rolmail.net\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 19:12:07'),(190,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Markus\";s:8:\"lastname\";s:10:\"Nussbaumer\";s:11:\"companyname\";s:10:\"Ofensetzer\";s:7:\"address\";s:7:\"Muls 36\";s:8:\"postcode\";s:5:\"39058\";s:4:\"city\";s:7:\"SARNTAL\";s:12:\"emailaddress\";s:29:\"markus.nussbaumer@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3487032539\";s:13:\"websitedomain\";s:46:\"http:&#047;&#047;markus.nussbaumer@rolmail.net\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 19:17:43'),(191,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:10:\"Peter paul\";s:8:\"lastname\";s:13:\"Mutschlechner\";s:11:\"companyname\";s:24:\"Transporte Mutschlechner\";s:7:\"address\";s:19:\"Hinterbergstrasse 4\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:5:\"Olang\";s:12:\"emailaddress\";s:35:\"transportemutschlechner@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3356142112\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 19:18:55'),(192,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:10:\"Hans Peter\";s:8:\"lastname\";s:8:\"Ladurner\";s:11:\"companyname\";s:35:\"Hans Peter Ladurner Garni Spiss Hof\";s:7:\"address\";s:12:\"Leitenweg 12\";s:8:\"postcode\";s:5:\"39022\";s:4:\"city\";s:6:\"Algund\";s:12:\"emailaddress\";s:17:\"info@spisshof.com\";s:12:\"mobilenumber\";s:13:\"+390473448654\";s:13:\"websitedomain\";s:33:\"http:&#047;&#047;www.spisshof.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 19:19:55'),(193,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Paola \";s:8:\"lastname\";s:7:\"Schenk \";s:11:\"companyname\";s:11:\"Thaler1333 \";s:7:\"address\";s:11:\"Am Gries 22\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:5:\"Lana \";s:12:\"emailaddress\";s:21:\"paola.schenk@alice.it\";s:12:\"mobilenumber\";s:10:\"3382656047\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 20:12:11'),(194,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Sabrina\";s:8:\"lastname\";s:5:\"Deval\";s:11:\"companyname\";s:13:\"Sabrina Deval\";s:7:\"address\";s:9:\"Surega 10\";s:8:\"postcode\";s:5:\"39036\";s:4:\"city\";s:5:\"Abtei\";s:12:\"emailaddress\";s:24:\"sabrinadeval79@gmail.com\";s:12:\"mobilenumber\";s:10:\"3486046449\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:2:{i:0;s:11:\"Gastgewerbe\";i:1;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 20:18:28'),(195,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Hubert\";s:8:\"lastname\";s:8:\"Stockner\";s:11:\"companyname\";s:17:\"Der Genussbunker \";s:7:\"address\";s:14:\"Sankt Anton 15\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:11:\"Feldthurns \";s:12:\"emailaddress\";s:20:\"info@genussbunker.it\";s:12:\"mobilenumber\";s:10:\"3478447653\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.genussbunker.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 20:33:16'),(196,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Ulrich \";s:8:\"lastname\";s:6:\"Haller\";s:11:\"companyname\";s:6:\"Eishof\";s:7:\"address\";s:17:\"Jaufenstrasse 116\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:7:\"Riffian\";s:12:\"emailaddress\";s:15:\"info@eishof.com\";s:12:\"mobilenumber\";s:10:\"3467323773\";s:13:\"websitedomain\";s:31:\"http:&#047;&#047;www.eishof.com\";s:9:\"employees\";s:1:\"8\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-23 23:02:22'),(197,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Patrick\";s:8:\"lastname\";s:9:\"Lomsdalen\";s:11:\"companyname\";s:7:\"PAMIBAR\";s:7:\"address\";s:15:\"Vinschgaustr. 3\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:19:\"minibar@pamibar.com\";s:12:\"mobilenumber\";s:10:\"3355707818\";s:13:\"websitedomain\";s:32:\"http:&#047;&#047;www.pamibar.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"294c7830906ed3f893ba0002ff25e548\";}','2022-02-24 08:49:30'),(198,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"GÜNTHER\";s:8:\"lastname\";s:5:\"BIASI\";s:11:\"companyname\";s:17:\"Hofschank Lexnhof\";s:7:\"address\";s:12:\"Glenerweg 24\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Montan\";s:12:\"emailaddress\";s:15:\"info@lexnhof.it\";s:12:\"mobilenumber\";s:13:\"+393356816889\";s:13:\"websitedomain\";s:27:\"http:&#047;&#047;lexnhof.it\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-24 09:29:02'),(199,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:5:\"Alois\";s:8:\"lastname\";s:6:\"Thaler\";s:11:\"companyname\";s:10:\"sarnthaler\";s:7:\"address\";s:12:\"Enge Gasse 3\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:18:\"info@sarnthaler.it\";s:12:\"mobilenumber\";s:15:\"+49393475950495\";s:13:\"websitedomain\";s:34:\"http:&#047;&#047;www.sarnthaler.it\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-24 09:30:01'),(200,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Angela\";s:8:\"lastname\";s:14:\"Obergasteiger \";s:11:\"companyname\";s:17:\"Pasticceria ELVI \";s:7:\"address\";s:13:\"San Leonardo \";s:8:\"postcode\";s:5:\"39036\";s:4:\"city\";s:5:\"Badia\";s:12:\"emailaddress\";s:29:\"obergasteigerangela@gmail.com\";s:12:\"mobilenumber\";s:10:\"3383981232\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-24 10:26:15'),(201,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Angela\";s:8:\"lastname\";s:14:\"Obergasteiger \";s:11:\"companyname\";s:17:\"Pasticceria Elvi \";s:7:\"address\";s:10:\"San LINERT\";s:8:\"postcode\";s:5:\"39036\";s:4:\"city\";s:5:\"Badia\";s:12:\"emailaddress\";s:29:\"obergasteigerangela@gmail.com\";s:12:\"mobilenumber\";s:10:\"3383981232\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-24 13:13:52'),(202,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Martin\";s:8:\"lastname\";s:5:\"Bauer\";s:11:\"companyname\";s:33:\"Mietwagen mit Fahrer Bauer Martin\";s:7:\"address\";s:13:\"Plesdinaz 119\";s:8:\"postcode\";s:5:\"39047\";s:4:\"city\";s:13:\"St. Christina\";s:12:\"emailaddress\";s:20:\"bike@taxigardena.com\";s:12:\"mobilenumber\";s:10:\"3355606141\";s:13:\"websitedomain\";s:36:\"http:&#047;&#047;www.taxigardena.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-24 13:20:40'),(203,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Andreas\";s:8:\"lastname\";s:10:\"Mahlknecht\";s:11:\"companyname\";s:37:\"SonnleitenK.G. des Mahlknecht Andreas\";s:7:\"address\";s:19:\"Peter Anich Weg, 20\";s:8:\"postcode\";s:5:\"39053\";s:4:\"city\";s:20:\"Steinegg Collepietra\";s:12:\"emailaddress\";s:19:\"info@sonnleiten.net\";s:12:\"mobilenumber\";s:10:\"0471376530\";s:13:\"websitedomain\";s:35:\"http:&#047;&#047;www.sonnleiten.net\";s:9:\"employees\";s:1:\"5\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"10f195fb055a63394c6a8510cd1c1cd1\";}','2022-02-24 14:17:50'),(204,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:10:\"Alexander \";s:8:\"lastname\";s:11:\"Schechinger\";s:11:\"companyname\";s:21:\"XanderLuchsFotografie\";s:7:\"address\";s:22:\"St. Valentinstraße, 9\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:33:\"kontakt@xanderluchsfotografie.com\";s:12:\"mobilenumber\";s:10:\"3714900610\";s:13:\"websitedomain\";s:46:\"http:&#047;&#047;www.xanderluchsfotografie.com\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:3:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";i:2;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-24 16:13:12'),(205,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Verena \";s:8:\"lastname\";s:4:\"Mair\";s:11:\"companyname\";s:9:\"Berg Josl\";s:7:\"address\";s:16:\"Spöglerberg 6-8\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:8:\"Mölten \";s:12:\"emailaddress\";s:17:\"bergjosl@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3388720482\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-24 18:42:48'),(206,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"Verena \";s:8:\"lastname\";s:4:\"Mair\";s:11:\"companyname\";s:10:\"Berg Josl \";s:7:\"address\";s:16:\"Spöglerberg 6-8\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:8:\"Mölten \";s:12:\"emailaddress\";s:17:\"bergjosl@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3388720482\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-24 18:51:29'),(207,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Alfred\";s:8:\"lastname\";s:8:\"Tschager\";s:11:\"companyname\";s:38:\"Alfred Tschager-Photography & Coaching\";s:7:\"address\";s:13:\"Stroblwiese 8\";s:8:\"postcode\";s:5:\"39053\";s:4:\"city\";s:7:\"Karneid\";s:12:\"emailaddress\";s:23:\"klick@tschager-foto.com\";s:12:\"mobilenumber\";s:13:\"+393355839614\";s:13:\"websitedomain\";s:38:\"http:&#047;&#047;www.tschager-foto.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"99590cf1a02b260f8794a005c3dafdc1\";}','2022-02-24 19:13:44'),(208,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Thomas\";s:8:\"lastname\";s:11:\"Überbacher\";s:11:\"companyname\";s:63:\"Cafe&#047;Konditorei Überbacher des Überbacher Thomas & CO KG\";s:7:\"address\";s:19:\"Kirchplatz 5&#047;a\";s:8:\"postcode\";s:5:\"39022\";s:4:\"city\";s:6:\"Algund\";s:12:\"emailaddress\";s:25:\"info@cafe-ueberbacher.com\";s:12:\"mobilenumber\";s:10:\"3335710073\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"5\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-24 19:53:19'),(209,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:8:\"Angelika\";s:8:\"lastname\";s:8:\"Reissigl\";s:11:\"companyname\";s:13:\"Mode BÄRELE \";s:7:\"address\";s:11:\"Am Gries 13\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:4:\"Lana\";s:12:\"emailaddress\";s:28:\"angelikareissigl63@gmail.com\";s:12:\"mobilenumber\";s:10:\"3486941048\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"d5ad37beb96ace6a656e181da952a508\";}','2022-02-24 20:02:37'),(210,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:6:\"Markus\";s:8:\"lastname\";s:7:\"Santoni\";s:11:\"companyname\";s:10:\"Germatk kg\";s:7:\"address\";s:22:\"Schießstandstrasse, 6\";s:8:\"postcode\";s:5:\"39044\";s:4:\"city\";s:8:\"Neumarkt\";s:12:\"emailaddress\";s:22:\"germark.info@gmail.com\";s:12:\"mobilenumber\";s:10:\"3312873024\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:2:{i:0;s:13:\"Dienstleister\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-24 20:24:23'),(211,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:9:\"Christoph\";s:8:\"lastname\";s:3:\"Ulm\";s:11:\"companyname\";s:36:\"Elektrotechnik Ulm des Ulm Christoph\";s:7:\"address\";s:22:\"Waldheimweg, 29&#047;1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Aldein\";s:12:\"emailaddress\";s:23:\"ulmchristoph6@gmail.com\";s:12:\"mobilenumber\";s:10:\"3405738699\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','2022-02-24 21:00:58'),(212,106,'a:15:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"firstname\";s:7:\"vanessa\";s:8:\"lastname\";s:11:\"runggaldier\";s:11:\"companyname\";s:19:\"vanessa runggaldier\";s:7:\"address\";s:26:\"Oswald von Wolkenstein 171\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:28:\"info@vanessa-runggaldier.com\";s:12:\"mobilenumber\";s:10:\"3394441089\";s:13:\"websitedomain\";s:44:\"http:&#047;&#047;www.vanessa-runggaldier.com\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"90b93cba827ae86791b0770a9bd70df4\";}','2022-02-24 21:54:17');
+/*!40000 ALTER TABLE `wp_db7_forms` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_f12_cf7_doubleoptin`
+--
+
+DROP TABLE IF EXISTS `wp_f12_cf7_doubleoptin`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_f12_cf7_doubleoptin` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `cf_form_id` int(11) NOT NULL,
+  `doubleoptin` int(2) DEFAULT NULL,
+  `content` text DEFAULT NULL,
+  `files` text DEFAULT NULL,
+  `hash` varchar(255) DEFAULT NULL,
+  `ipaddr_register` varchar(255) NOT NULL DEFAULT '',
+  `ipaddr_confirmation` varchar(255) NOT NULL DEFAULT '',
+  `createtime` varchar(255) DEFAULT '',
+  `updatetime` varchar(255) DEFAULT '',
+  `exportedat` timestamp NULL DEFAULT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=282 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_f12_cf7_doubleoptin`
+--
+
+LOCK TABLES `wp_f12_cf7_doubleoptin` WRITE;
+/*!40000 ALTER TABLE `wp_f12_cf7_doubleoptin` DISABLE KEYS */;
+INSERT INTO `wp_f12_cf7_doubleoptin` VALUES (13,106,1,'a:11:{s:9:\"your-name\";s:11:\"Future GmbH\";s:11:\"your-adress\";s:25:\"Leonardo da Vinci Str. 12\";s:8:\"your-PLZ\";s:11:\"39100 Bozen\";s:12:\"your-country\";s:7:\"Italien\";s:7:\"Bereich\";a:1:{i:0;s:7:\"Anderes\";}s:17:\"Mitarbeiteranzahl\";s:0:\"\";s:10:\"your-email\";s:23:\"loackerhannes@gmail.com\";s:12:\"Telefonmobil\";s:13:\"+393356080868\";s:26:\"WebseitedesUnternehmensURL\";s:0:\"\";s:14:\"acceptance-379\";s:1:\"1\";s:4:\"Logo\";s:32:\"eac55e2225aaedc46598a6d4fac782b0\";}','a:1:{i:0;s:153:\"/srv/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1678078618/1644500651_Bildschirmfoto-2022-02-10-um-14.43.40.png\";}','MTY0NDUwMDY1MTEzMTA2','82.48.59.96','82.48.59.96','1644500651','1644500787','2022-03-01 14:07:51'),(14,106,1,'a:11:{s:9:\"your-name\";s:28:\"Oberrauch Bernahrd Architekt\";s:11:\"your-adress\";s:14:\"Penegalstr.21a\";s:8:\"your-PLZ\";s:5:\"39100\";s:12:\"your-country\";s:5:\"Bozen\";s:7:\"Bereich\";a:1:{i:0;s:10:\"Baugewerbe\";}s:17:\"Mitarbeiteranzahl\";s:1:\"1\";s:10:\"your-email\";s:13:\"info@a-bo.net\";s:12:\"Telefonmobil\";s:11:\"329 0514476\";s:26:\"WebseitedesUnternehmensURL\";s:19:\"http://www.a-bo.net\";s:14:\"acceptance-379\";s:1:\"1\";s:4:\"Logo\";s:32:\"3a63a1bc77ed83a8ee4d7bfe0c3bf105\";}','a:1:{i:0;s:127:\"/srv/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1987774555/1644560670_bo_arch1200.jpg\";}','MTY0NDU2MDY3MDE0MTA2','79.8.7.158','79.8.7.158','1644560670','1644560754','2022-03-01 14:07:51'),(15,106,1,'a:11:{s:9:\"your-name\";s:11:\"Gerwies-Hof\";s:11:\"your-adress\";s:18:\"Alte Landstraße 4\";s:8:\"your-PLZ\";s:5:\"39051\";s:12:\"your-country\";s:8:\"Branzoll\";s:7:\"Bereich\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:17:\"Mitarbeiteranzahl\";s:1:\"5\";s:10:\"your-email\";s:15:\"info@gerwies.it\";s:12:\"Telefonmobil\";s:13:\"+393471993150\";s:26:\"WebseitedesUnternehmensURL\";s:21:\"http://www.gerwies.it\";s:14:\"acceptance-379\";s:1:\"1\";s:4:\"Logo\";s:32:\"bd1e97400d813cad5b0e2d5b84293a27\";}','a:1:{i:0;s:165:\"/srv/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0500079921/1644754213_1476_20_Gerwies_Logografie_RGB_geschnitten_PPT_CP.jpg\";}','MTY0NDc1NDIxMzE1MTA2','95.255.118.168','95.255.118.168','1644754213','1644757609','2022-03-01 14:07:51'),(16,106,1,'a:11:{s:9:\"your-name\";s:10:\"Rothoblaas\";s:11:\"your-adress\";s:12:\"Etschweg 2/1\";s:8:\"your-PLZ\";s:5:\"39040\";s:12:\"your-country\";s:9:\"Kurtatsch\";s:7:\"Bereich\";a:1:{i:0;s:6:\"Handel\";}s:17:\"Mitarbeiteranzahl\";s:3:\"480\";s:10:\"your-email\";s:27:\"robert.blaas@rothoblaas.com\";s:12:\"Telefonmobil\";s:13:\"+393356178082\";s:26:\"WebseitedesUnternehmensURL\";s:25:\"http://www.rothoblaas.com\";s:14:\"acceptance-379\";s:1:\"1\";s:4:\"Logo\";s:32:\"3925c14606843a91f275d8b78f5086b9\";}','a:1:{i:0;s:141:\"/srv/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0059152839/1644823977_RB_logo_vert_payoff_black.jpg\";}','MTY0NDgyMzk4MjE2MTA2','84.18.143.38','84.18.143.38','1644823982','1644827327','2022-03-01 14:07:51'),(17,106,1,'a:11:{s:9:\"your-name\";s:28:\"Studio Zingerle DDr. Helmuth\";s:11:\"your-adress\";s:13:\"Hauptplatz 35\";s:8:\"your-PLZ\";s:5:\"39040\";s:12:\"your-country\";s:4:\"Auer\";s:7:\"Bereich\";a:1:{i:0;s:13:\"Dienstleister\";}s:17:\"Mitarbeiteranzahl\";s:1:\"2\";s:10:\"your-email\";s:23:\"info@studiozingerle.com\";s:12:\"Telefonmobil\";s:10:\"3472737002\";s:26:\"WebseitedesUnternehmensURL\";s:29:\"http://www.studiozingerle.com\";s:14:\"acceptance-379\";s:1:\"1\";s:4:\"Logo\";s:32:\"b39efc55462a6db000a0df45bb7d6c30\";}','a:1:{i:0;s:145:\"/srv/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0437593356/1644834782_header_Tavola-disegno-1-Copia.jpg\";}','MTY0NDgzNDc4MjE3MTA2','185.154.67.141','54.202.154.137','1644834782','1644834802','2022-03-01 14:07:51'),(18,106,1,'a:11:{s:9:\"your-name\";s:31:\"Brimo KG d. Zingerle Vera & Co.\";s:11:\"your-adress\";s:13:\"Hauptplatz 35\";s:8:\"your-PLZ\";s:5:\"39040\";s:12:\"your-country\";s:4:\"Auer\";s:7:\"Bereich\";a:1:{i:0;s:6:\"Handel\";}s:17:\"Mitarbeiteranzahl\";s:1:\"1\";s:10:\"your-email\";s:23:\"vera@studiozingerle.com\";s:12:\"Telefonmobil\";s:10:\"3477239109\";s:26:\"WebseitedesUnternehmensURL\";s:0:\"\";s:14:\"acceptance-379\";s:1:\"1\";s:4:\"Logo\";s:32:\"a42884ced953997d64986bd8724e4fca\";}','a:1:{i:0;s:125:\"/srv/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0994289055/1644835456_Documento.jpg\";}','MTY0NDgzNTQ1NjE4MTA2','185.154.67.141','34.212.134.148','1644835456','1644835475','2022-03-01 14:07:51'),(26,106,1,'a:14:{s:9:\"firstname\";s:8:\"Reinhard\";s:8:\"lastname\";s:6:\"Wehner\";s:11:\"companyname\";s:11:\"infeos GmbH\";s:7:\"address\";s:21:\"Via Luigi-Negrelli 15\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:7:\"Bolzano\";s:12:\"emailaddress\";s:25:\"reinhard.wehner@infeos.eu\";s:12:\"mobilenumber\";s:13:\"+393273220377\";s:13:\"websitedomain\";s:20:\"http://www.infeos.eu\";s:9:\"employees\";s:1:\"8\";s:7:\"branche\";a:2:{i:0;s:13:\"Dienstleister\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"4a21f693aedd765f9154720e77aebbf0\";}','a:1:{i:0;s:127:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0108024385/1645197375_Alpin_Power_Team_Logo_V5-2.png\";}','MTY0NTE5NzM3NTI2MTA2','37.186.169.162','37.186.169.162','1645197375','1645197628','2022-03-01 14:07:51'),(27,106,1,'a:14:{s:9:\"firstname\";s:8:\"Caroline\";s:8:\"lastname\";s:9:\"Bratschko\";s:11:\"companyname\";s:49:\"Studio für Schmerztherapie nach Liebscher&Bracht\";s:7:\"address\";s:13:\"Erbsengasse 8\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:33:\"studiocarolinebratschko@gmail.com\";s:12:\"mobilenumber\";s:10:\"3285972850\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"33678846b05fc83395a6247e88b2ad5c\";}','a:1:{i:0;s:109:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1942876582/1645221285_IMG_8483.jpg\";}','MTY0NTIyMTI4NTI3MTA2','79.7.39.189','79.7.39.189','1645221285','1645221329','2022-03-01 14:07:51'),(28,106,1,'a:14:{s:9:\"firstname\";s:7:\"Andreas\";s:8:\"lastname\";s:9:\"Raffeiner\";s:11:\"companyname\";s:14:\"RAFFEINER GMBH\";s:7:\"address\";s:17:\"Maria Rast Weg 32\";s:8:\"postcode\";s:5:\"39057\";s:4:\"city\";s:5:\"Eppan\";s:12:\"emailaddress\";s:20:\"andreas@raffeiner.bz\";s:12:\"mobilenumber\";s:13:\"+393482223446\";s:13:\"websitedomain\";s:23:\"http://www.raffeiner.bz\";s:9:\"employees\";s:2:\"22\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:10:\"Baugewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"fd4c16274b02632d656968215b2c0230\";}','a:1:{i:0;s:110:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0159525861/1645256372_Vorlage-1.jpg\";}','MTY0NTI1NjM3MjI4MTA2','195.254.231.13','195.254.231.13','1645256372','1645256415','2022-03-01 14:07:51'),(33,106,0,'a:14:{s:9:\"firstname\";s:8:\"Wolfgang\";s:8:\"lastname\";s:11:\"Andergassen\";s:11:\"companyname\";s:20:\"Andergassen Wolfgang\";s:7:\"address\";s:22:\"Heppenheimerstrasse 32\";s:8:\"postcode\";s:5:\"39052\";s:4:\"city\";s:7:\"Kaltern\";s:12:\"emailaddress\";s:29:\"andergassenwolfgang@gmail.com\";s:12:\"mobilenumber\";s:10:\"3927270040\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTI2OTI0MDMzMTA2','37.161.20.176','','1645269240','','2022-03-01 14:07:51'),(34,106,1,'a:14:{s:9:\"firstname\";s:6:\"Martin\";s:8:\"lastname\";s:7:\"Vieider\";s:11:\"companyname\";s:8:\"Saniflor\";s:7:\"address\";s:25:\"Gummer, Dörerwiese Nr. 5\";s:8:\"postcode\";s:5:\"39053\";s:4:\"city\";s:7:\"Karneid\";s:12:\"emailaddress\";s:17:\"info@saniflor.com\";s:12:\"mobilenumber\";s:11:\"0471/610115\";s:13:\"websitedomain\";s:23:\"http://www.saniflor.com\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:2:{i:0;s:13:\"Dienstleister\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"67fa73d878675520732b03419fc693e7\";}','a:1:{i:0;s:109:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0965931056/1645273425_Saniflor.jpg\";}','MTY0NTI3MzQyNTM0MTA2','89.163.247.134','89.107.110.239','1645273425','1645275267','2022-03-01 14:07:51'),(35,106,1,'a:14:{s:9:\"firstname\";s:7:\"Andrea \";s:8:\"lastname\";s:15:\"Daporta Fischer\";s:11:\"companyname\";s:18:\"Hotel Fischer GmbH\";s:7:\"address\";s:12:\"Trusentweg 7\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:25:\"hotel.fischer@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3281745492\";s:13:\"websitedomain\";s:27:\"http://www.hotel-fischer.it\";s:9:\"employees\";s:2:\"25\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"4a94b518a9690f51c67862ce51901f2f\";}','a:1:{i:0;s:135:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0073965757/1645278654_Logo_Fischer_2014-mittlere-Groesse.jpg\";}','MTY0NTI3ODY1NDM1MTA2','185.5.196.126','185.5.196.126','1645278654','1645284341','2022-03-01 14:07:51'),(36,106,0,'a:14:{s:9:\"firstname\";s:5:\"Heidi\";s:8:\"lastname\";s:9:\"Pernstich\";s:11:\"companyname\";s:11:\"Salon Heidi\";s:7:\"address\";s:21:\"Alte Landstrasse 20/1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:4:\"Auer\";s:12:\"emailaddress\";s:17:\"pernstichh@pec.it\";s:12:\"mobilenumber\";s:10:\"3492673964\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"1f26f531c44a55432e1d98d3ab7f87ff\";}','a:1:{i:0;s:117:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1079155317/1645286723_Logo-Salon-Heidi.jpg\";}','MTY0NTI4NjcyMzM2MTA2','2.198.48.173','','1645286723','','2022-03-01 14:07:51'),(37,106,1,'a:14:{s:9:\"firstname\";s:8:\"Johannes\";s:8:\"lastname\";s:3:\"Mur\";s:11:\"companyname\";s:35:\"Topconsult - Johannes Mur & Co. OHG\";s:7:\"address\";s:14:\"Bühelacker 20\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:11:\"Natz Schabs\";s:12:\"emailaddress\";s:22:\"hannes@mental-power.it\";s:12:\"mobilenumber\";s:13:\"+393292806542\";s:13:\"websitedomain\";s:26:\"http://www.mental-power.it\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"4dd795cdd89a2c2588f995a13fb539db\";}','a:1:{i:0;s:132:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1370081796/1645286957_hannes_mur_mentalpower-positiv1.png\";}','MTY0NTI4Njk1NzM3MTA2','185.214.203.35','185.214.203.35','1645286957','1645289104','2022-03-01 14:07:51'),(38,106,1,'a:14:{s:9:\"firstname\";s:15:\"Marie Elisabeth\";s:8:\"lastname\";s:6:\"Lassen\";s:11:\"companyname\";s:13:\"Pilates Marie\";s:7:\"address\";s:14:\"Bühelacker 20\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:11:\"Natz Schabs\";s:12:\"emailaddress\";s:23:\"marie@pilates-marie.com\";s:12:\"mobilenumber\";s:13:\"+393292806541\";s:13:\"websitedomain\";s:28:\"http://www.pilates-marie.com\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"daeb74080a7aa0307107b0c1c12ff4d8\";}','a:1:{i:0;s:115:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0315970529/1645287148_marie_logo_rgb.jpg\";}','MTY0NTI4NzE0ODM4MTA2','185.214.203.35','185.214.203.35','1645287148','1645289644','2022-03-01 14:07:51'),(39,106,1,'a:14:{s:9:\"firstname\";s:6:\"Alfred\";s:8:\"lastname\";s:8:\"Tschager\";s:11:\"companyname\";s:39:\"Alfred Tschager-Photography&Coaching KG\";s:7:\"address\";s:13:\"Stroblwiese 8\";s:8:\"postcode\";s:5:\"39053\";s:4:\"city\";s:7:\"Karneid\";s:12:\"emailaddress\";s:23:\"klick@tschager-foto.com\";s:12:\"mobilenumber\";s:10:\"3355839614\";s:13:\"websitedomain\";s:72:\"https://www.tschager-foto.com/fotografie-suedtirol-tschagerfoto-p1.html#\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"f54c9e4fea52cd70fc7a96619d576916\";}','a:1:{i:0;s:122:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0684773342/1645304283_tschager-signature@3x.png\";}','MTY0NTMwNDI4MzM5MTA2','195.254.249.215','195.254.249.215','1645304283','1645304404','2022-03-01 14:07:51'),(40,106,0,'a:14:{s:9:\"firstname\";s:8:\"Benjamin\";s:8:\"lastname\";s:9:\"Profanter\";s:11:\"companyname\";s:25:\"Profanter Natur-Backstube\";s:7:\"address\";s:21:\"Ignaz-Seidner-Str. 28\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:21:\"benjamin@profanter.it\";s:12:\"mobilenumber\";s:10:\"3485429300\";s:13:\"websitedomain\";s:23:\"http://www.profanter.it\";s:9:\"employees\";s:2:\"50\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"24a8ff1edbf830649bcc769c30035c53\";}','a:1:{i:0;s:126:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0577559817/1645347351_Profanter_Logo_RGB_300dpi.png\";}','MTY0NTM0NzM1MTQwMTA2','84.242.9.2','','1645347351','','2022-03-01 14:07:51'),(41,106,0,'a:14:{s:9:\"firstname\";s:6:\"Verena\";s:8:\"lastname\";s:10:\"Eberhöfer\";s:11:\"companyname\";s:16:\"Salon Freestyle \";s:7:\"address\";s:22:\"Unterrainerstrasse 55a\";s:8:\"postcode\";s:6:\"39057 \";s:4:\"city\";s:35:\"Unterrain/Eppan an der Weinstrasse \";s:12:\"emailaddress\";s:27:\"verena.eberhoefer@gmail.com\";s:12:\"mobilenumber\";s:10:\"3356912637\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM2MzgzNzQxMTA2','2.198.43.198','','1645363837','','2022-03-01 14:07:51'),(42,106,1,'a:14:{s:9:\"firstname\";s:8:\"Wilfried\";s:8:\"lastname\";s:6:\"Holzer\";s:11:\"companyname\";s:12:\"Freiberufler\";s:7:\"address\";s:19:\"Wiesenhof Straße 2\";s:8:\"postcode\";s:5:\"39032\";s:4:\"city\";s:15:\"Sand in Taufers\";s:12:\"emailaddress\";s:25:\"wilfriedholzer1@gmail.com\";s:12:\"mobilenumber\";s:10:\"3468715078\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM2NDA2ODQyMTA2','151.34.208.93','151.34.132.22','1645364068','1645368795','2022-03-01 14:07:51'),(43,106,1,'a:14:{s:9:\"firstname\";s:7:\"Kathrin\";s:8:\"lastname\";s:6:\"Rainer\";s:11:\"companyname\";s:17:\"Naturhotel Rainer\";s:7:\"address\";s:22:\"Jaufental Mittertal 48\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:7:\"Racines\";s:12:\"emailaddress\";s:22:\"privat@hotel-rainer.it\";s:12:\"mobilenumber\";s:10:\"0472765355\";s:13:\"websitedomain\";s:26:\"http://www.hotel-rainer.it\";s:9:\"employees\";s:2:\"18\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"d832709a74bf9e04054c3c5a63fe5ef6\";}','a:1:{i:0;s:137:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1251497931/1645364133_16402B99-65C1-4015-BEF0-34F2C63EA6C0.png\";}','MTY0NTM2NDEzMzQzMTA2','195.254.249.207','195.254.249.207','1645364133','1645430733','2022-03-01 14:07:51'),(44,106,0,'a:14:{s:9:\"firstname\";s:15:\"Uta-Christiane \";s:8:\"lastname\";s:11:\"Fett-Egger \";s:11:\"companyname\";s:15:\"Uta-Christiane \";s:7:\"address\";s:18:\"Wolkenstein Str 7b\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:26:\"uta-christiane@outlook.com\";s:12:\"mobilenumber\";s:10:\"3351472632\";s:13:\"websitedomain\";s:38:\"https://www.bioenergy-cosmetic.net/de/\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM2NDYxODQ0MTA2','79.44.246.11','','1645364618','','2022-03-01 14:07:51'),(45,106,1,'a:14:{s:9:\"firstname\";s:7:\"Johanna\";s:8:\"lastname\";s:6:\"Obexer\";s:11:\"companyname\";s:9:\"Bauernhof\";s:7:\"address\";s:15:\"Magdalenaweg 8 \";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:9:\"VillnÖss\";s:12:\"emailaddress\";s:26:\"margareth.obexer@gmail.com\";s:12:\"mobilenumber\";s:10:\"3293235491\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM2NDY2MTQ1MTA2','151.38.124.169','151.18.125.89','1645364661','1645381130','2022-03-01 14:07:51'),(46,106,0,'a:14:{s:9:\"firstname\";s:8:\"Herbert \";s:8:\"lastname\";s:5:\"Puner\";s:11:\"companyname\";s:10:\"Bauernhof \";s:7:\"address\";s:15:\"Magdalenaweg 8 \";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:9:\"VillnÖss\";s:12:\"emailaddress\";s:25:\"johanna.puner@outlook.com\";s:12:\"mobilenumber\";s:10:\"3289672451\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM2NDc2NTQ2MTA2','151.38.124.169','','1645364765','','2022-03-01 14:07:51'),(47,106,1,'a:14:{s:9:\"firstname\";s:10:\"Hans Georg\";s:8:\"lastname\";s:14:\"Oberprantacher\";s:11:\"companyname\";s:20:\"Tischlerei Holzidee \";s:7:\"address\";s:15:\"Sportplatzweg 6\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:6:\"Meran \";s:12:\"emailaddress\";s:16:\"info@holzidee.it\";s:12:\"mobilenumber\";s:10:\"0473201212\";s:13:\"websitedomain\";s:22:\"http://www.holzidee.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM2NDgwMTQ3MTA2','2.198.74.21','2.198.74.21','1645364801','1645365662','2022-03-01 14:07:51'),(48,106,1,'a:14:{s:9:\"firstname\";s:7:\"Andreas\";s:8:\"lastname\";s:5:\"Egger\";s:11:\"companyname\";s:7:\"AE GmbH\";s:7:\"address\";s:15:\"Boznerstrasse 8\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:4:\"Lana\";s:12:\"emailaddress\";s:22:\"boeden.egger@gmail.com\";s:12:\"mobilenumber\";s:10:\"3357029867\";s:13:\"websitedomain\";s:26:\"http://egger@bodenleger.bz\";s:9:\"employees\";s:1:\"6\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM2NTUyOTQ4MTA2','151.18.204.45','151.18.204.45','1645365529','1645365547','2022-03-01 14:07:51'),(49,106,1,'a:14:{s:9:\"firstname\";s:6:\"Ingrid\";s:8:\"lastname\";s:11:\"Pardatscher\";s:11:\"companyname\";s:19:\"Gasthof Fichtenhof \";s:7:\"address\";s:11:\"Pichl , 18 \";s:8:\"postcode\";s:6:\"39040 \";s:4:\"city\";s:18:\"Gfrill bei Salurn \";s:12:\"emailaddress\";s:18:\"info@fichtenhof.it\";s:12:\"mobilenumber\";s:10:\"3383028653\";s:13:\"websitedomain\";s:24:\"http://www.fichtenhof.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM2NjQ0NTQ5MTA2','185.4.193.172','185.4.193.172','1645366445','1645600809','2022-03-01 14:07:51'),(50,106,1,'a:14:{s:9:\"firstname\";s:8:\"Cappello\";s:8:\"lastname\";s:7:\"Manfred\";s:11:\"companyname\";s:14:\"Trübenbachgut\";s:7:\"address\";s:17:\"Hocheppanerweg 15\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:7:\"Andrian\";s:12:\"emailaddress\";s:18:\"leo2037p@gmail.com\";s:12:\"mobilenumber\";s:10:\"3347135033\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM2NjgzMDUwMTA2','151.68.148.111','151.18.148.228','1645366830','1645480534','2022-03-01 14:07:51'),(51,106,0,'a:14:{s:9:\"firstname\";s:8:\"Wilfried\";s:8:\"lastname\";s:6:\"Holzer\";s:11:\"companyname\";s:12:\"Freiberufler\";s:7:\"address\";s:19:\"Wiesenhof Strasse 2\";s:8:\"postcode\";s:5:\"39032\";s:4:\"city\";s:15:\"Sand in Taufers\";s:12:\"emailaddress\";s:25:\"wilfriedholzer1@gmail.com\";s:12:\"mobilenumber\";s:10:\"3468715078\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM2OTE5MzUxMTA2','151.34.132.22','','1645369193','','2022-03-01 14:07:51'),(52,106,1,'a:14:{s:9:\"firstname\";s:9:\"Hildegard\";s:8:\"lastname\";s:9:\"Stabinger\";s:11:\"companyname\";s:7:\"Bar Ett\";s:7:\"address\";s:12:\"Gilmplatz 1a\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Bruneck\";s:12:\"emailaddress\";s:24:\"hildestabinger@gmail.com\";s:12:\"mobilenumber\";s:11:\"03358398450\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM2OTU3NDUyMTA2','5.179.139.81','5.179.139.81','1645369574','1645370579','2022-03-01 14:07:51'),(53,106,1,'a:14:{s:9:\"firstname\";s:9:\"Christian\";s:8:\"lastname\";s:12:\"Kerschbaumer\";s:11:\"companyname\";s:16:\"Weingut Garlider\";s:7:\"address\";s:9:\"Untrum 20\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:19:\"Feldthurns/Velturno\";s:12:\"emailaddress\";s:16:\"info@garlider.it\";s:12:\"mobilenumber\";s:13:\"+393487451011\";s:13:\"websitedomain\";s:22:\"http://www.garlider.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"19c98f1db794b954672f7d560066bc92\";}','a:1:{i:0;s:108:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0935584083/1645370304_logoNEU.jpg\";}','MTY0NTM3MDMwNDUzMTA2','146.241.40.5','146.241.40.5','1645370304','1645370788','2022-03-01 14:07:51'),(54,106,1,'a:14:{s:9:\"firstname\";s:6:\"Manuel\";s:8:\"lastname\";s:10:\"Gschnitzer\";s:11:\"companyname\";s:32:\"Manuel Gschnitzer Baggerarbeiten\";s:7:\"address\";s:23:\"Jaufental St. Anton 39C\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Ratschings\";s:12:\"emailaddress\";s:26:\"manuel.gschnitzer@yahoo.it\";s:12:\"mobilenumber\";s:10:\"3395775636\";s:13:\"websitedomain\";s:27:\"http://manuel-gschnitzer.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:10:\"Baugewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"faa178275b279ff03818e3edf9f48a04\";}','a:1:{i:0;s:117:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1056531866/1645370423_logo-mit-Schrift.jpg\";}','MTY0NTM3MDQyMzU0MTA2','151.44.8.73','151.38.208.104','1645370423','1645386822','2022-03-01 14:07:51'),(55,106,1,'a:14:{s:9:\"firstname\";s:5:\"Edgar\";s:8:\"lastname\";s:6:\"Rogger\";s:11:\"companyname\";s:11:\"Tonyhof KG \";s:7:\"address\";s:11:\"Europaweg 5\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Sexten\";s:12:\"emailaddress\";s:17:\"edgar@tonyhof.com\";s:12:\"mobilenumber\";s:10:\"3342373971\";s:13:\"websitedomain\";s:22:\"http://www.tonyhof.com\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM3MDQ3NTU1MTA2','45.90.95.38','45.90.95.38','1645370475','1645372624','2022-03-01 14:07:51'),(56,106,1,'a:14:{s:9:\"firstname\";s:5:\"Oscar\";s:8:\"lastname\";s:7:\"Dibiasi\";s:11:\"companyname\";s:14:\"Energieberater\";s:7:\"address\";s:14:\"Hügelgasse 14\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Montan\";s:12:\"emailaddress\";s:22:\"info@oscar-dibiasi.com\";s:12:\"mobilenumber\";s:10:\"3331403644\";s:13:\"websitedomain\";s:28:\"http://www.oscar-dibiasi.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM3MzIyNDU2MTA2','84.33.140.164','84.33.140.164','1645373224','1645380384','2022-03-01 14:07:51'),(57,106,0,'a:14:{s:9:\"firstname\";s:5:\"Erwin\";s:8:\"lastname\";s:6:\"Gasser\";s:11:\"companyname\";s:14:\"Pfrantscherhof\";s:7:\"address\";s:13:\"Romstrasse 15\";s:8:\"postcode\";s:5:\"30010\";s:4:\"city\";s:8:\"Gargazon\";s:12:\"emailaddress\";s:19:\"erwing559@gmail.com\";s:12:\"mobilenumber\";s:10:\"3479108422\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM3NDY5NzU3MTA2','109.118.88.244','','1645374697','','2022-03-01 14:07:51'),(58,106,1,'a:14:{s:9:\"firstname\";s:4:\"Inge\";s:8:\"lastname\";s:15:\"Zwischenbrugger\";s:11:\"companyname\";s:17:\"Beautiful Moments\";s:7:\"address\";s:17:\"Hans Feur Str. 40\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Tramin\";s:12:\"emailaddress\";s:16:\"ngizws@gmail.com\";s:12:\"mobilenumber\";s:10:\"3331532353\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM3NTA4MTU4MTA2','5.90.35.126','5.90.1.21','1645375081','1645393046','2022-03-01 14:07:51'),(59,106,0,'a:14:{s:9:\"firstname\";s:5:\"Erwin\";s:8:\"lastname\";s:7:\"Vikoler\";s:11:\"companyname\";s:14:\"Erwin Vikoler \";s:7:\"address\";s:10:\"Albions 20\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:5:\"Lajen\";s:12:\"emailaddress\";s:18:\"ervin7775@live.com\";s:12:\"mobilenumber\";s:9:\"335476790\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM3NTY2NzU5MTA2','5.179.149.85','','1645375667','','2022-03-01 14:07:51'),(60,106,1,'a:14:{s:9:\"firstname\";s:7:\"Angerer\";s:8:\"lastname\";s:8:\"Benjamin\";s:11:\"companyname\";s:16:\"Angerer Benjamin\";s:7:\"address\";s:17:\"Kiefernhainweg 48\";s:8:\"postcode\";s:5:\"39026\";s:4:\"city\";s:12:\"Prad am Stj.\";s:12:\"emailaddress\";s:23:\"ben.angerer@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3484027671\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"6ad1379b03ff8645169962b0311b8677\";}','a:1:{i:0;s:106:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0793986882/1645376169_image.jpg\";}','MTY0NTM3NjE2OTYwMTA2','212.46.183.33','212.46.183.33','1645376169','1645376234','2022-03-01 14:07:51'),(61,106,1,'a:14:{s:9:\"firstname\";s:7:\"Hubert \";s:8:\"lastname\";s:10:\"Primisser \";s:11:\"companyname\";s:16:\"Hubert Primisser\";s:7:\"address\";s:13:\"Penegalweg 10\";s:8:\"postcode\";s:6:\"39052 \";s:4:\"city\";s:8:\"Kaltern \";s:12:\"emailaddress\";s:19:\"hubert@primisser.it\";s:12:\"mobilenumber\";s:13:\"+393356033030\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM3NjIwMDYxMTA2','188.14.216.77','188.14.216.77','1645376200','1645390547','2022-03-01 14:07:51'),(62,106,1,'a:14:{s:9:\"firstname\";s:8:\"Benjamin\";s:8:\"lastname\";s:7:\"Angerer\";s:11:\"companyname\";s:16:\"Angerer Benjamin\";s:7:\"address\";s:17:\"Kiefernhainweg 48\";s:8:\"postcode\";s:5:\"39026\";s:4:\"city\";s:12:\"Prad am Stj.\";s:12:\"emailaddress\";s:23:\"ben.angerer@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3484027671\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"3d053e25946640253585718f82afcd2d\";}','a:1:{i:0;s:106:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0469956225/1645376450_image.jpg\";}','MTY0NTM3NjQ1MDYyMTA2','212.46.183.33','212.46.183.33','1645376450','1645376489','2022-03-01 14:07:51'),(63,106,1,'a:14:{s:9:\"firstname\";s:4:\"Auer\";s:8:\"lastname\";s:9:\"Margerita\";s:11:\"companyname\";s:20:\"Gasthaus Oberöberst\";s:7:\"address\";s:7:\"Vernuer\";s:8:\"postcode\";s:5:\"39015\";s:4:\"city\";s:7:\"Riffian\";s:12:\"emailaddress\";s:31:\"margerita.bogelioubov@gmail.com\";s:12:\"mobilenumber\";s:10:\"3479709627\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM3NjkxMDYzMTA2','5.77.125.47','5.77.125.47','1645376910','1645377129','2022-03-01 14:07:51'),(64,106,1,'a:14:{s:9:\"firstname\";s:8:\"Reinhard\";s:8:\"lastname\";s:6:\"Rauter\";s:11:\"companyname\";s:11:\"Dietrichhof\";s:7:\"address\";s:18:\"Stilumserstraße 4\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Feldthurns\";s:12:\"emailaddress\";s:20:\"info@dietrichhof.com\";s:12:\"mobilenumber\";s:13:\"+393282221114\";s:13:\"websitedomain\";s:26:\"http://www.dietrichhof.com\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:2:{i:0;s:14:\"Landwirtschaft\";i:1;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM3NjkyNzY0MTA2','146.241.0.162','146.241.0.162','1645376927','1645377750','2022-03-01 14:07:51'),(65,106,1,'a:14:{s:9:\"firstname\";s:6:\"Aaron \";s:8:\"lastname\";s:9:\"Dorfmann \";s:11:\"companyname\";s:26:\"Aaron Dorfmann Dachservice\";s:7:\"address\";s:7:\"Huben 4\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Lüsen\";s:12:\"emailaddress\";s:23:\"info@aaron-dorfmann.com\";s:12:\"mobilenumber\";s:13:\"+393493549002\";s:13:\"websitedomain\";s:25:\"http://aaron-dorfmann.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"26b5176486dce4953f9940f8aeb63da8\";}','a:1:{i:0;s:144:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1800801302/1645377101_20211006_logo_aaron_dorfmann_hoch_grunge_4c.png\";}','MTY0NTM3NzEwMTY1MTA2','5.90.200.27','185.230.80.145','1645377101','1645384204','2022-03-01 14:07:51'),(66,106,1,'a:14:{s:9:\"firstname\";s:6:\"Robert\";s:8:\"lastname\";s:8:\"Plattner\";s:11:\"companyname\";s:13:\"Karosserie F1\";s:7:\"address\";s:12:\"Gschleier 21\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:7:\"Mölten\";s:12:\"emailaddress\";s:23:\"robert.plattner@bb44.it\";s:12:\"mobilenumber\";s:10:\"3478893434\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:2:\"12\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM3OTQ0NzY2MTA2','128.116.245.251','128.116.245.251','1645379447','1645379622','2022-03-01 14:07:51'),(67,106,1,'a:14:{s:9:\"firstname\";s:5:\"Lukas\";s:8:\"lastname\";s:9:\"Rainalter\";s:11:\"companyname\";s:12:\"Assiunio Ohg\";s:7:\"address\";s:20:\"Göflanerstrasse, 22\";s:8:\"postcode\";s:5:\"39028\";s:4:\"city\";s:10:\"Schlanders\";s:12:\"emailaddress\";s:23:\"rainalter.l@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3472246385\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM3OTUxMzY3MTA2','89.107.111.169','89.107.111.169','1645379513','1645383124','2022-03-01 14:07:51'),(68,106,1,'a:14:{s:9:\"firstname\";s:6:\"Walter\";s:8:\"lastname\";s:9:\"Atzwanger\";s:11:\"companyname\";s:21:\"Atzwanger Walter Gmbh\";s:7:\"address\";s:9:\"Bachla 22\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:8:\"Pfalzen \";s:12:\"emailaddress\";s:23:\"info@atzwangerwalter.it\";s:12:\"mobilenumber\";s:10:\"3358374128\";s:13:\"websitedomain\";s:29:\"http://www.atzwangerwalter.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM3OTcwMjY4MTA2','185.127.213.159','185.127.213.159','1645379702','1645470778','2022-03-01 14:07:51'),(69,106,1,'a:14:{s:9:\"firstname\";s:8:\"Nikolaus\";s:8:\"lastname\";s:7:\"Messmer\";s:11:\"companyname\";s:10:\"GALABAU KG\";s:7:\"address\";s:9:\"Klavenz 6\";s:8:\"postcode\";s:5:\"39052\";s:4:\"city\";s:7:\"Kaltern\";s:12:\"emailaddress\";s:25:\"klaus.messmer@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3665740543\";s:13:\"websitedomain\";s:24:\"http://www.messmer.bz.it\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4MDA0MjY5MTA2','79.24.107.84','79.24.107.84','1645380042','1645380591','2022-03-01 14:07:51'),(70,106,1,'a:14:{s:9:\"firstname\";s:8:\"Plattner\";s:8:\"lastname\";s:8:\"Günther\";s:11:\"companyname\";s:17:\"Plattner Günther\";s:7:\"address\";s:12:\"Ifingerweg 2\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:8:\"Tscherms\";s:12:\"emailaddress\";s:21:\"plattnerg@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3489119205\";s:13:\"websitedomain\";s:21:\"http://www.lehmbau.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4MDQ1NTcwMTA2','84.33.164.167','84.33.164.167','1645380455','1645467608','2022-03-01 14:07:51'),(71,106,1,'a:14:{s:9:\"firstname\";s:7:\"Dietmar\";s:8:\"lastname\";s:11:\"Reinstadler\";s:11:\"companyname\";s:37:\"REPISPORT OHG des Reinstadler Dietmar\";s:7:\"address\";s:22:\"Holzländestrasse 65/A\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:21:\"St.Martin in Passeier\";s:12:\"emailaddress\";s:20:\"dietmar@repisport.it\";s:12:\"mobilenumber\";s:13:\"+393450040155\";s:13:\"websitedomain\";s:21:\"https://repisport.it/\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"9b5c43ce1db3b07884383cd8c7b069b0\";}','a:1:{i:0;s:157:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/2047666964/1645381668_LOGOS_KOMBI-REPISPORT_PSAiRSPORT_OUTLET_PSAiR-RGB_farbig.jpg\";}','MTY0NTM4MTY2ODcxMTA2','195.254.249.90','195.254.249.90','1645381668','1645381832','2022-03-01 14:07:51'),(72,106,1,'a:14:{s:9:\"firstname\";s:8:\"Günther\";s:8:\"lastname\";s:5:\"Huber\";s:11:\"companyname\";s:17:\"Karosserie F1 OHG\";s:7:\"address\";s:15:\"Enzenbergweg 22\";s:8:\"postcode\";s:5:\"39018\";s:4:\"city\";s:6:\"Terlan\";s:12:\"emailaddress\";s:21:\"info@karosserief1.com\";s:12:\"mobilenumber\";s:10:\"3478127088\";s:13:\"websitedomain\";s:27:\"http://www.karosserief1.com\";s:9:\"employees\";s:2:\"13\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"daf3fd0a54d869662cab211169c0f9a7\";}','a:1:{i:0;s:129:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0124886114/1645382143_Logo-Karosserie-F1_page-0001.jpg\";}','MTY0NTM4MjE0MzcyMTA2','212.46.185.231','212.46.185.231','1645382143','1645382262','2022-03-01 14:07:51'),(73,106,1,'a:14:{s:9:\"firstname\";s:6:\"Silvia\";s:8:\"lastname\";s:5:\"Rungg\";s:11:\"companyname\";s:17:\"Hotel Himmelreich\";s:7:\"address\";s:17:\"Klostergasse 15 B\";s:8:\"postcode\";s:5:\"39020\";s:4:\"city\";s:18:\"Kastelbell Tschars\";s:12:\"emailaddress\";s:19:\"info@himmelreich.it\";s:12:\"mobilenumber\";s:10:\"3499205033\";s:13:\"websitedomain\";s:25:\"http://www.himmelreich.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"bfedefe13e4cad84b3b18f1ebeb49665\";}','a:1:{i:0;s:131:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0822156382/1645382268_logo-himmelreichsardis-spirale.png\";}','MTY0NTM4MjI2ODczMTA2','95.255.244.13','185.216.184.77','1645382268','1645482093','2022-03-01 14:07:51'),(74,106,1,'a:14:{s:9:\"firstname\";s:6:\"Thomas\";s:8:\"lastname\";s:6:\"Piazzi\";s:11:\"companyname\";s:17:\"Tischlerei Piazzi\";s:7:\"address\";s:12:\"Grissian12/a\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:6:\"Tisens\";s:12:\"emailaddress\";s:25:\"info@tischlerei-piazzi.it\";s:12:\"mobilenumber\";s:14:\"+3903332753452\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4MjQ0ODc0MTA2','146.241.25.120','146.241.25.120','1645382448','1645382533','2022-03-01 14:07:51'),(75,106,1,'a:14:{s:9:\"firstname\";s:9:\"christian\";s:8:\"lastname\";s:11:\"greifenberg\";s:11:\"companyname\";s:11:\"greifenberg\";s:7:\"address\";s:18:\"handwerkerzone 3 a\";s:8:\"postcode\";s:6:\"39052 \";s:4:\"city\";s:7:\"kaltern\";s:12:\"emailaddress\";s:30:\"greifenbergchristian@gmail.com\";s:12:\"mobilenumber\";s:11:\"339-1889543\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"7\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4MjY3OTc1MTA2','151.34.141.87','151.34.168.17','1645382679','1645427772','2022-03-01 14:07:51'),(76,106,1,'a:14:{s:9:\"firstname\";s:8:\"Brigitte\";s:8:\"lastname\";s:6:\"Gasser\";s:11:\"companyname\";s:7:\"Noafhof\";s:7:\"address\";s:17:\"Leadner-Alm-Weg 6\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:6:\"Vöran\";s:12:\"emailaddress\";s:15:\"info@noafhof.it\";s:12:\"mobilenumber\";s:10:\"3488276737\";s:13:\"websitedomain\";s:21:\"http://www.noafhof.it\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"0e2f8a47a7e2cdb036a3443837533176\";}','a:1:{i:0;s:128:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1578883368/1645383497_Logo-Noafhof-neu-Maerz-2021.jpg\";}','MTY0NTM4MzQ5Nzc2MTA2','176.243.29.44','176.243.29.44','1645383497','1645383699','2022-03-01 14:07:51'),(77,106,1,'a:14:{s:9:\"firstname\";s:7:\"Miriam \";s:8:\"lastname\";s:7:\"Burkia \";s:11:\"companyname\";s:20:\"Uhren Schmuck Burkia\";s:7:\"address\";s:25:\"Katharina Lanz Straße 76\";s:8:\"postcode\";s:5:\"39037\";s:4:\"city\";s:10:\"Mühlbach \";s:12:\"emailaddress\";s:17:\"info@burkia.bz.it\";s:12:\"mobilenumber\";s:10:\"3487641498\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4MzUzMzc3MTA2','195.254.233.243','2.198.26.242','1645383533','1645425927','2022-03-01 14:07:51'),(78,106,0,'a:14:{s:9:\"firstname\";s:7:\"Siegrun\";s:8:\"lastname\";s:6:\"Nagler\";s:11:\"companyname\";s:36:\"Studio Schlank&Schön Medical Beauty\";s:7:\"address\";s:17:\"Andreas Hofer 56A\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Brunico\";s:12:\"emailaddress\";s:26:\"schlankundschoen@gmail.com\";s:12:\"mobilenumber\";s:10:\"3485841993\";s:13:\"websitedomain\";s:30:\"http://www.schlankundschoen.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4MzY3MDc4MTA2','31.207.105.205','','1645383670','','2022-03-01 14:07:51'),(79,106,1,'a:14:{s:9:\"firstname\";s:9:\"Christine\";s:8:\"lastname\";s:6:\"Haller\";s:11:\"companyname\";s:13:\"Le Petit MaLu\";s:7:\"address\";s:13:\"Piave Str. 47\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:29:\"christine.haller.76@gmail.com\";s:12:\"mobilenumber\";s:10:\"3332511916\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4NDAwMjc5MTA2','5.94.248.143','5.94.248.143','1645384002','1645388639','2022-03-01 14:07:51'),(80,106,1,'a:14:{s:9:\"firstname\";s:12:\"Sabine Maria\";s:8:\"lastname\";s:7:\"Peukert\";s:11:\"companyname\";s:25:\"Sabine Peukert Mediatorin\";s:7:\"address\";s:13:\"Dantestr. 106\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:12:\"medi@tion.it\";s:12:\"mobilenumber\";s:13:\"335 644 96 85\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4NDg3MjgwMTA2','5.90.77.100','5.90.77.100','1645384872','1645385601','2022-03-01 14:07:51'),(81,106,1,'a:14:{s:9:\"firstname\";s:5:\"Karin\";s:8:\"lastname\";s:9:\"Postingel\";s:11:\"companyname\";s:22:\"Clematis blumen&dekor \";s:7:\"address\";s:14:\"Rathausring 37\";s:8:\"postcode\";s:5:\"39044\";s:4:\"city\";s:8:\"Neumarkt\";s:12:\"emailaddress\";s:23:\"karin@clematisblumen.it\";s:12:\"mobilenumber\";s:12:\"+39335247505\";s:13:\"websitedomain\";s:46:\"http://clematisblumen.it/clematis-blumendekor/\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:3:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";i:2;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"0ed753820943a78117c0df7d84db0744\";}','a:1:{i:0;s:106:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0684007277/1645385273_image.jpg\";}','MTY0NTM4NTI3MzgxMTA2','185.154.67.45','185.154.67.45','1645385273','1645385857','2022-03-01 14:07:51'),(82,106,0,'a:14:{s:9:\"firstname\";s:6:\"Robert\";s:8:\"lastname\";s:7:\"Holzner\";s:11:\"companyname\";s:20:\"Holzner & Premer OHG\";s:7:\"address\";s:15:\"Gewerbegebiet 8\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:6:\"Tisens\";s:12:\"emailaddress\";s:19:\"holzrob57@gmail.com\";s:12:\"mobilenumber\";s:9:\"335462598\";s:13:\"websitedomain\";s:29:\"http://www.holzner-premer.com\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4NTY2NjgyMTA2','82.50.42.186','','1645385666','','2022-03-01 14:07:51'),(83,106,1,'a:14:{s:9:\"firstname\";s:6:\"Margit\";s:8:\"lastname\";s:5:\"Forer\";s:11:\"companyname\";s:11:\"Meg Fashion\";s:7:\"address\";s:21:\"Ahrntalerstrasse 18 d\";s:8:\"postcode\";s:5:\"39032\";s:4:\"city\";s:15:\"Sand in Taufers\";s:12:\"emailaddress\";s:20:\"info@meg-fashion.com\";s:12:\"mobilenumber\";s:10:\"3498405190\";s:13:\"websitedomain\";s:26:\"http://www.meg-fashion.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4ODI1OTgzMTA2','93.33.94.65','93.33.94.65','1645388259','1645389614','2022-03-01 14:07:51'),(84,106,1,'a:14:{s:9:\"firstname\";s:7:\"Richard\";s:8:\"lastname\";s:8:\"Kirchler\";s:11:\"companyname\";s:13:\"Oberanewandte\";s:7:\"address\";s:11:\"Anewanten 3\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:4:\"Gais\";s:12:\"emailaddress\";s:27:\"kirchlerrichard48@gmail.com\";s:12:\"mobilenumber\";s:10:\"3299807966\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4ODY5NTg0MTA2','128.116.208.67','128.116.208.67','1645388695','1645388930','2022-03-01 14:07:51'),(85,106,0,'a:14:{s:9:\"firstname\";s:9:\"Christine\";s:8:\"lastname\";s:6:\"Haller\";s:11:\"companyname\";s:13:\"Le Petit MaLu\";s:7:\"address\";s:11:\"Maiastraße\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:29:\"christine.haller.76@gmail.com\";s:12:\"mobilenumber\";s:10:\"3332811916\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4ODczMzg1MTA2','5.94.248.143','','1645388733','','2022-03-01 14:07:51'),(86,106,0,'a:14:{s:9:\"firstname\";s:7:\"Richard\";s:8:\"lastname\";s:8:\"Kirchler\";s:11:\"companyname\";s:14:\"Oberanewandte \";s:7:\"address\";s:11:\"Anewanten 3\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:4:\"Gais\";s:12:\"emailaddress\";s:27:\"kirchlerrichard48@gmail.com\";s:12:\"mobilenumber\";s:10:\"3299807966\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4ODgxODg2MTA2','128.116.208.67','','1645388818','','2022-03-01 14:07:51'),(87,106,0,'a:14:{s:9:\"firstname\";s:7:\"Richard\";s:8:\"lastname\";s:8:\"Kirchler\";s:11:\"companyname\";s:13:\"Oberanewandte\";s:7:\"address\";s:11:\"Anewanten 3\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:4:\"Gais\";s:12:\"emailaddress\";s:27:\"kirchlerrichard48@gmail.com\";s:12:\"mobilenumber\";s:10:\"3299807966\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4OTA1NTg3MTA2','128.116.208.67','','1645389055','','2022-03-01 14:07:51'),(88,106,1,'a:14:{s:9:\"firstname\";s:9:\"Franziska\";s:8:\"lastname\";s:10:\"Patzleiner\";s:11:\"companyname\";s:8:\"di Hitte\";s:7:\"address\";s:14:\"Untergasse, 37\";s:8:\"postcode\";s:5:\"39035\";s:4:\"city\";s:7:\"Taisten\";s:12:\"emailaddress\";s:29:\"franzi.patzleiner.m@gmail.com\";s:12:\"mobilenumber\";s:10:\"3701332541\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4OTA5OTg4MTA2','5.90.202.246','5.90.202.246','1645389099','1645389342','2022-03-01 14:07:51'),(89,106,1,'a:14:{s:9:\"firstname\";s:5:\"Josef\";s:8:\"lastname\";s:5:\"Jörg\";s:11:\"companyname\";s:10:\"Jörg GmbH\";s:7:\"address\";s:17:\"Drei Kreuz Str. 4\";s:8:\"postcode\";s:5:\"39020\";s:4:\"city\";s:10:\"Schluderns\";s:12:\"emailaddress\";s:13:\"sepp@joerg.it\";s:12:\"mobilenumber\";s:13:\"+393356059453\";s:13:\"websitedomain\";s:15:\"http://joerg.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM4OTI1NDg5MTA2','2.198.74.96','104.28.98.44','1645389254','1645398239','2022-03-01 14:07:51'),(90,106,0,'a:14:{s:9:\"firstname\";s:16:\"Steffi und Lukas\";s:8:\"lastname\";s:15:\"Stricker Telser\";s:11:\"companyname\";s:20:\"Malerei Telser Lukas\";s:7:\"address\";s:10:\"Burgeis 60\";s:8:\"postcode\";s:5:\"39024\";s:4:\"city\";s:4:\"Mals\";s:12:\"emailaddress\";s:22:\"stefy_3185@hotmail.com\";s:12:\"mobilenumber\";s:10:\"3406555129\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"5\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM5MDU2NDkwMTA2','5.90.64.66','','1645390564','','2022-03-01 14:07:51'),(91,106,0,'a:14:{s:9:\"firstname\";s:7:\"Marlies\";s:8:\"lastname\";s:6:\"Pattis\";s:11:\"companyname\";s:13:\"Salon Marlies\";s:7:\"address\";s:15:\"Trattengasse 11\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:21:\"pattisselena@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3381097770\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM5MDU5MDkxMTA2','185.5.199.162','','1645390590','','2022-03-01 14:07:51'),(92,106,1,'a:14:{s:9:\"firstname\";s:4:\"Karl\";s:8:\"lastname\";s:9:\"Obkircher\";s:11:\"companyname\";s:14:\"1aAutoservice \";s:7:\"address\";s:11:\"Geirerweg 3\";s:8:\"postcode\";s:5:\"39054\";s:4:\"city\";s:10:\"OBERBOZEN \";s:12:\"emailaddress\";s:17:\"info@obkircher.bz\";s:12:\"mobilenumber\";s:10:\"3351211004\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTM5MjUyMjkyMTA2','185.214.202.209','185.214.202.209','1645392522','1645426636','2022-03-01 14:07:51'),(93,106,1,'a:14:{s:9:\"firstname\";s:8:\"Jürgen \";s:8:\"lastname\";s:15:\"Wirth Anderlan \";s:11:\"companyname\";s:23:\"Jürgen Wirth Anderlan \";s:7:\"address\";s:16:\"Mendelstrasse 34\";s:8:\"postcode\";s:5:\"39052\";s:4:\"city\";s:8:\"Kaltern \";s:12:\"emailaddress\";s:25:\"j.wirthanderlan@gmail.com\";s:12:\"mobilenumber\";s:10:\"3383205778\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQyMTc1MTkzMTA2','79.40.229.14','79.40.229.14','1645421751','1645422584','2022-03-01 14:07:51'),(94,106,0,'a:14:{s:9:\"firstname\";s:9:\"Günther \";s:8:\"lastname\";s:7:\"Reifer \";s:11:\"companyname\";s:15:\"Terra Institute\";s:7:\"address\";s:20:\"Säbenertorgasse 2/2\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:27:\"g.reifer@terra-institute.eu\";s:12:\"mobilenumber\";s:10:\"3355208653\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:2:\"25\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQyMTk5Mzk0MTA2','93.71.176.254','','1645421993','','2022-03-01 14:07:51'),(95,106,1,'a:14:{s:9:\"firstname\";s:6:\"Markus\";s:8:\"lastname\";s:7:\"Lintner\";s:11:\"companyname\";s:9:\"Schornhof\";s:7:\"address\";s:10:\"Lerch 23/1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Aldein\";s:12:\"emailaddress\";s:21:\"schornhof@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3403715530\";s:13:\"websitedomain\";s:25:\"http://www.schornhof.info\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQyNDQ3MDk1MTA2','151.68.95.102','95.248.105.228','1645424470','1645470339','2022-03-01 14:07:51'),(96,106,1,'a:14:{s:9:\"firstname\";s:7:\"Dietmar\";s:8:\"lastname\";s:9:\"Obkircher\";s:11:\"companyname\";s:36:\"Dietmar Obkircher grafic & webdesign\";s:7:\"address\";s:17:\"Handwerkerzone 12\";s:8:\"postcode\";s:5:\"39056\";s:4:\"city\";s:11:\"Welschnofen\";s:12:\"emailaddress\";s:18:\"info@obkircher.com\";s:12:\"mobilenumber\";s:10:\"3470581105\";s:13:\"websitedomain\";s:24:\"http://www.obkircher.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"d77e493e5d739addcc7b22e86e52d1bc\";}','a:1:{i:0;s:115:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1272773534/1645424709_obkircher-logo.jpg\";}','MTY0NTQyNDcwOTk2MTA2','195.254.249.6','195.254.249.6','1645424709','1645424861','2022-03-01 14:07:51'),(97,106,1,'a:14:{s:9:\"firstname\";s:4:\"Arno\";s:8:\"lastname\";s:7:\"Klammer\";s:11:\"companyname\";s:11:\"Laurin\'s Kg\";s:7:\"address\";s:14:\"St.Vigilstr. 5\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:4:\"Nals\";s:12:\"emailaddress\";s:15:\"info@Laurins.it\";s:12:\"mobilenumber\";s:10:\"3283439035\";s:13:\"websitedomain\";s:21:\"http://www.Laurins.it\";s:9:\"employees\";s:1:\"5\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"9caa6e087a6400690d2d12a49bf58f5b\";}','a:1:{i:0;s:126:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0140954695/1645424837_laurins_logo-neu-16-10-16.jpg\";}','MTY0NTQyNDgzNzk3MTA2','79.2.241.231','79.2.241.231','1645424837','1645425155','2022-03-01 14:07:51'),(98,106,1,'a:14:{s:9:\"firstname\";s:8:\"Günther\";s:8:\"lastname\";s:5:\"Hofer\";s:11:\"companyname\";s:19:\"Die Biermacherinnen\";s:7:\"address\";s:7:\"Moos 14\";s:8:\"postcode\";s:5:\"39016\";s:4:\"city\";s:5:\"Ulten\";s:12:\"emailaddress\";s:27:\"zoeschgbrigitte@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3333562074\";s:13:\"websitedomain\";s:30:\"http://die-biermacherinnen.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQyNTUzMDk4MTA2','176.243.59.118','176.243.59.118','1645425530','1645427274','2022-03-01 14:07:51'),(99,106,1,'a:14:{s:9:\"firstname\";s:8:\"Patrizia\";s:8:\"lastname\";s:11:\"Pardatscher\";s:11:\"companyname\";s:22:\"Residence Obermoarhof \";s:7:\"address\";s:12:\"Mairgasse, 3\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:9:\"Obervintl\";s:12:\"emailaddress\";s:20:\"info@obermoarhof.com\";s:12:\"mobilenumber\";s:10:\"3713591552\";s:13:\"websitedomain\";s:26:\"http://www.obermoarhof.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQyNjIyMzk5MTA2','146.241.20.34','146.241.20.34','1645426223','1645427256','2022-03-01 14:07:51'),(100,106,1,'a:14:{s:9:\"firstname\";s:7:\"Johann \";s:8:\"lastname\";s:8:\"Gröber \";s:11:\"companyname\";s:13:\"Living Natura\";s:7:\"address\";s:15:\"St Jakob Str 25\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:7:\"Percha \";s:12:\"emailaddress\";s:21:\"info@livingnatura.com\";s:12:\"mobilenumber\";s:10:\"3389229948\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQyNzEyOTEwMDEwNg==','8.21.9.99','8.21.9.99','1645427129','1645427238','2022-03-01 14:07:51'),(101,106,1,'a:14:{s:9:\"firstname\";s:7:\"Johann \";s:8:\"lastname\";s:8:\"Gröber \";s:11:\"companyname\";s:13:\"Living Natura\";s:7:\"address\";s:15:\"St Jakob Str 25\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:7:\"Percha \";s:12:\"emailaddress\";s:21:\"info@livingnatura.com\";s:12:\"mobilenumber\";s:10:\"3389229948\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQyNzMzNzEwMTEwNg==','8.21.9.99','8.21.9.99','1645427337','1645427387','2022-03-01 14:07:51'),(102,106,1,'a:14:{s:9:\"firstname\";s:8:\"Patrizia\";s:8:\"lastname\";s:11:\"Pardatscher\";s:11:\"companyname\";s:21:\"Residence Obermoarhof\";s:7:\"address\";s:12:\"Mairgasse 3 \";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:9:\"Obervintl\";s:12:\"emailaddress\";s:20:\"info@obermoarhof.com\";s:12:\"mobilenumber\";s:10:\"3713591552\";s:13:\"websitedomain\";s:26:\"http://www.obermoarhof.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQyNzUzNDEwMjEwNg==','146.241.20.34','146.241.20.34','1645427534','1645427610','2022-03-01 14:07:51'),(103,106,1,'a:14:{s:9:\"firstname\";s:8:\"Patrizia\";s:8:\"lastname\";s:11:\"Pardatscher\";s:11:\"companyname\";s:21:\"Residence Obermoarhof\";s:7:\"address\";s:12:\"Mairgasse, 3\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:9:\"Obervintl\";s:12:\"emailaddress\";s:20:\"info@obermoarhof.com\";s:12:\"mobilenumber\";s:10:\"3713591552\";s:13:\"websitedomain\";s:26:\"http://www.obermoarhof.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQyNzcyMzEwMzEwNg==','146.241.20.34','146.241.20.34','1645427723','1645428250','2022-03-01 14:07:51'),(104,106,1,'a:14:{s:9:\"firstname\";s:9:\"Gottfried\";s:8:\"lastname\";s:10:\"Wohlfarter\";s:11:\"companyname\";s:16:\"Optik Wohlfarter\";s:7:\"address\";s:15:\"Hauptstrasse 35\";s:8:\"postcode\";s:5:\"39025\";s:4:\"city\";s:7:\"Naturns\";s:12:\"emailaddress\";s:28:\"optik.wohlfarter@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3668107704\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"94b18c659e90ee129cad2def59e2e80e\";}','a:1:{i:0;s:126:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1206527958/1645427963_wohlfarter_logo-schwarz-2.jpg\";}','MTY0NTQyNzk2MzEwNDEwNg==','87.8.17.46','87.8.17.46','1645427963','1645429391','2022-03-01 14:07:51'),(105,106,0,'a:14:{s:9:\"firstname\";s:6:\"Renate\";s:8:\"lastname\";s:5:\"Kaser\";s:11:\"companyname\";s:18:\"Hairstudio Renate \";s:7:\"address\";s:21:\"Kennedy Strasser 112A\";s:8:\"postcode\";s:5:\"39055\";s:4:\"city\";s:7:\"Leifers\";s:12:\"emailaddress\";s:26:\"hairstudiorenate@gmail.com\";s:12:\"mobilenumber\";s:10:\"3298465073\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQyODA1NDEwNTEwNg==','5.77.69.10','','1645428054','','2022-03-01 14:07:51'),(106,106,1,'a:14:{s:9:\"firstname\";s:9:\"Hansjörg\";s:8:\"lastname\";s:14:\"Oberprantacher\";s:11:\"companyname\";s:19:\"Tischlerei Holzidee\";s:7:\"address\";s:15:\"Sportplatzweg 6\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:16:\"info@holzidee.it\";s:12:\"mobilenumber\";s:11:\"0473 201212\";s:13:\"websitedomain\";s:22:\"http://www.holzidee.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQyODQ0MjEwNjEwNg==','79.59.219.42','79.59.219.42','1645428442','1645428672','2022-03-01 14:07:51'),(107,106,1,'a:14:{s:9:\"firstname\";s:5:\"Bijan\";s:8:\"lastname\";s:7:\"Faustig\";s:11:\"companyname\";s:7:\"Faustig\";s:7:\"address\";s:16:\"Handwerkerzone 6\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:5:\"Vahrn\";s:12:\"emailaddress\";s:20:\"b.faustig@hotmail.de\";s:12:\"mobilenumber\";s:10:\"3456681865\";s:13:\"websitedomain\";s:21:\"http://www.faustig.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"e6a4b50b113566c9d628c2dcfa77df7e\";}','a:1:{i:0;s:115:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1568496277/1645428691_Faustigschwarz.png\";}','MTY0NTQyODY5MTEwNzEwNg==','84.18.153.89','84.18.153.89','1645428691','1645434111','2022-03-01 14:07:51'),(108,106,1,'a:14:{s:9:\"firstname\";s:6:\"Helmut\";s:8:\"lastname\";s:6:\"Lösch\";s:11:\"companyname\";s:17:\"Café S\'I-Tipftl \";s:7:\"address\";s:12:\"Hauptstr. 46\";s:8:\"postcode\";s:5:\"39025\";s:4:\"city\";s:7:\"Naturns\";s:12:\"emailaddress\";s:23:\"loesch.helmut@gmail.com\";s:12:\"mobilenumber\";s:10:\"3356845207\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"dac6107ed2c107ff32d76901d9749071\";}','a:1:{i:0;s:103:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/2018881210/1645431014_ti.jpg\";}','MTY0NTQzMTAxNDEwODEwNg==','185.132.59.42','84.33.65.14','1645431014','1645625080','2022-03-01 14:07:51'),(109,106,0,'a:14:{s:9:\"firstname\";s:4:\"Kurt\";s:8:\"lastname\";s:8:\"Peintner\";s:11:\"companyname\";s:21:\"Peintner Fliesen GmbH\";s:7:\"address\";s:10:\"Förche 50\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:11:\"Natz-Schabs\";s:12:\"emailaddress\";s:25:\"info@peintner-fliesen.com\";s:12:\"mobilenumber\";s:10:\"0472412465\";s:13:\"websitedomain\";s:27:\"http://www.peintnergroup.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:3:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";i:2;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"879ed15a1cefb834b33e312e07f1840c\";}','a:1:{i:0;s:133:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0381614160/1645431379_Logo-Peintner-Fliesen-und-Boeden.jpg\";}','MTY0NTQzMTM3OTEwOTEwNg==','185.121.101.222','','1645431379','','2022-03-01 14:07:51'),(110,106,1,'a:14:{s:9:\"firstname\";s:6:\"Monika\";s:8:\"lastname\";s:7:\"Aichner\";s:11:\"companyname\";s:27:\"KLENKdesign d. Klenk Harald\";s:7:\"address\";s:21:\"J.-G.-Mahl-Strasse 10\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Bruneck\";s:12:\"emailaddress\";s:19:\"info@klenkdesign.it\";s:12:\"mobilenumber\";s:10:\"3713065715\";s:13:\"websitedomain\";s:26:\"http://www.klenkdesign.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"80614357f58590358b78aff40bd762f9\";}','a:1:{i:0;s:117:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0739122000/1645432428_klenkdesign_logo.jpg\";}','MTY0NTQzMjQyODExMDEwNg==','188.10.227.11','188.10.227.11','1645432428','1645432460','2022-03-01 14:07:51'),(111,106,1,'a:14:{s:9:\"firstname\";s:6:\"Thomas\";s:8:\"lastname\";s:6:\"Wieser\";s:11:\"companyname\";s:14:\"Goldwerk Gmbh.\";s:7:\"address\";s:26:\"Albrecht Dürer Straße 18\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:14:\"tw@goldwerk.it\";s:12:\"mobilenumber\";s:10:\"3400776867\";s:13:\"websitedomain\";s:22:\"http://www.goldwerk.it\";s:9:\"employees\";s:2:\"30\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"a90c6a606955d1220ad92134162c865f\";}','a:1:{i:0;s:107:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1940848948/1645432966_LogoDE.jpg\";}','MTY0NTQzMjk2NjExMTEwNg==','151.62.192.142','151.62.192.142','1645432966','1645432985','2022-03-01 14:07:51'),(112,106,1,'a:14:{s:9:\"firstname\";s:15:\"Maria Magdalena\";s:8:\"lastname\";s:8:\"Hilberer\";s:11:\"companyname\";s:32:\"Star Service International GmbH.\";s:7:\"address\";s:26:\"Albrecht Dürer Straße 18\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:10:\"tw@ss-i.it\";s:12:\"mobilenumber\";s:10:\"3934532530\";s:13:\"websitedomain\";s:18:\"http://www.ssi.srl\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"3549ec8978ad706cbb7fa54e3a56cae3\";}','a:1:{i:0;s:132:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/2043764109/1645433146_Star-Service-International-LOGO.jpg\";}','MTY0NTQzMzE0NjExMjEwNg==','151.62.192.142','151.62.192.142','1645433146','1645433158','2022-03-01 14:07:51'),(113,106,1,'a:14:{s:9:\"firstname\";s:7:\"Thomas \";s:8:\"lastname\";s:6:\"Rieder\";s:11:\"companyname\";s:18:\"interior emotions \";s:7:\"address\";s:12:\"Goldgasse 7A\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:4:\"Nals\";s:12:\"emailaddress\";s:25:\"info@interior-emotions.eu\";s:12:\"mobilenumber\";s:13:\"+393482605664\";s:13:\"websitedomain\";s:31:\"http://www.interior-emotions.eu\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQzMzMwODExMzEwNg==','5.90.66.30','95.110.136.136','1645433308','1645433551','2022-03-01 14:07:51'),(114,106,1,'a:14:{s:9:\"firstname\";s:6:\"Johann\";s:8:\"lastname\";s:5:\"Matha\";s:11:\"companyname\";s:22:\"Montiggler Porphyr Srl\";s:7:\"address\";s:12:\"Montiggl 100\";s:8:\"postcode\";s:5:\"39057\";s:4:\"city\";s:5:\"Eppan\";s:12:\"emailaddress\";s:25:\"info@montigglerporphyr.it\";s:12:\"mobilenumber\";s:10:\"3473108836\";s:13:\"websitedomain\";s:31:\"http://www.montigglerporphyr.it\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:2:{i:0;s:9:\"Industrie\";i:1;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQzNDY1MzExNDEwNg==','84.33.65.34','84.33.65.34','1645434653','1645434691','2022-03-01 14:07:51'),(115,106,0,'a:14:{s:9:\"firstname\";s:6:\"Thomas\";s:8:\"lastname\";s:7:\"Steiner\";s:11:\"companyname\";s:14:\"Thomas Steiner\";s:7:\"address\";s:21:\"Köstlaner Straße 31\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:21:\"info@thomassteiner.eu\";s:12:\"mobilenumber\";s:10:\"3482224809\";s:13:\"websitedomain\";s:27:\"http://www.thomassteiner.eu\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:3:{i:0;s:13:\"Dienstleister\";i:1;s:11:\"Gastgewerbe\";i:2;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQzNDk0MTExNTEwNg==','151.62.96.35','','1645434941','','2022-03-01 14:07:51'),(116,106,1,'a:14:{s:9:\"firstname\";s:8:\"Leonhard\";s:8:\"lastname\";s:8:\"Plattner\";s:11:\"companyname\";s:45:\"Bio - Elektrik KG des Plattner Leonhard & Co.\";s:7:\"address\";s:16:\"Altenbergweg 2/a\";s:8:\"postcode\";s:5:\"39050\";s:4:\"city\";s:8:\"Jenesien\";s:12:\"emailaddress\";s:21:\"info@bio-elektrik.com\";s:12:\"mobilenumber\";s:10:\"0471354093\";s:13:\"websitedomain\";s:27:\"http://www.bio-elektrik.com\";s:9:\"employees\";s:2:\"02\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQzNzExMjExNjEwNg==','195.254.239.13','195.254.239.13','1645437112','1645438147','2022-03-01 14:07:51'),(117,106,0,'a:14:{s:9:\"firstname\";s:4:\"Mike\";s:8:\"lastname\";s:9:\"Marseiler\";s:11:\"companyname\";s:48:\"Holztechnik Marseiler d. Mike Marseiler & Co. KG\";s:7:\"address\";s:18:\"Glurnserstraße 44\";s:8:\"postcode\";s:5:\"39020\";s:4:\"city\";s:10:\"Schluderns\";s:12:\"emailaddress\";s:23:\"mike@marseiler-holz.com\";s:12:\"mobilenumber\";s:13:\"+393357018783\";s:13:\"websitedomain\";s:31:\"https://www.marseiler-holz.com/\";s:9:\"employees\";s:2:\"11\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"6b8ab360583c3ca2506836f60a39142e\";}','a:1:{i:0;s:110:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1548624070/1645438276_marseiler.jpg\";}','MTY0NTQzODI3NjExNzEwNg==','195.254.232.49','','1645438276','','2022-03-01 14:07:51'),(118,106,1,'a:14:{s:9:\"firstname\";s:11:\"Margherita \";s:8:\"lastname\";s:9:\"Morocutti\";s:11:\"companyname\";s:7:\"Vivaldi\";s:7:\"address\";s:16:\"laubenduchgang 6\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:7:\"Bolzano\";s:12:\"emailaddress\";s:21:\"vivaldi2201@gmail.com\";s:12:\"mobilenumber\";s:10:\"0472836126\";s:13:\"websitedomain\";s:28:\"http://shop@vivaldistore.com\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQzOTk3NjExODEwNg==','151.62.41.190','151.62.41.190','1645439976','1645442084','2022-03-01 14:07:51'),(119,106,1,'a:14:{s:9:\"firstname\";s:9:\"Elisabeth\";s:8:\"lastname\";s:6:\"Gruber\";s:11:\"companyname\";s:16:\"Lisette Boutique\";s:7:\"address\";s:23:\"Bruder Willramstrasse 2\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Bruneck\";s:12:\"emailaddress\";s:25:\"info@lisette-boutique.com\";s:12:\"mobilenumber\";s:10:\"3404964527\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"69662ef16e3693859d944467dad9cf35\";}','a:1:{i:0;s:106:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1053459050/1645440646_image.jpg\";}','MTY0NTQ0MDY0NjExOTEwNg==','31.207.101.39','31.207.101.39','1645440646','1645441221','2022-03-01 14:07:51'),(120,106,1,'a:14:{s:9:\"firstname\";s:8:\"Norbert \";s:8:\"lastname\";s:8:\"Waldner \";s:11:\"companyname\";s:16:\"Haflinger-Reiten\";s:7:\"address\";s:13:\"Saltenweg 3b \";s:8:\"postcode\";s:5:\"39050\";s:4:\"city\";s:8:\"Jenesien\";s:12:\"emailaddress\";s:25:\"info@haflinger-reiten.com\";s:12:\"mobilenumber\";s:10:\"3889866478\";s:13:\"websitedomain\";s:31:\"http://www.Haflinger-Reiten.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"7323a2956b5b9c145c1c97c9dec8cc91\";}','a:1:{i:0;s:137:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0995057275/1645441116_Logo_kompakt__WWW_no_Infos_7913x6833.png\";}','MTY0NTQ0MTExNjEyMDEwNg==','212.46.185.198','212.46.185.198','1645441116','1645441830','2022-03-01 14:07:51'),(121,106,1,'a:14:{s:9:\"firstname\";s:12:\"Blasbichler \";s:8:\"lastname\";s:6:\"Martin\";s:11:\"companyname\";s:15:\"b-mechanik GmbH\";s:7:\"address\";s:20:\"Handwerkerstraße 26\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Feldthurns\";s:12:\"emailaddress\";s:19:\"info@b-mechanik.com\";s:12:\"mobilenumber\";s:11:\"03498697902\";s:13:\"websitedomain\";s:25:\"http://www.b-mechanik.com\";s:9:\"employees\";s:1:\"6\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"2b4504c7fb07f363d05d04e7c4b6f863\";}','a:1:{i:0;s:187:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0408472784/1645441281_2022-02-21-11_58_02-Martin_Logo_DRUCK-4C_Querformat.pdf-Adobe-Acrobat-Reader-DC-64-bit.png\";}','MTY0NTQ0MTI4MTEyMTEwNg==','185.194.200.93','185.194.200.93','1645441281','1645509971','2022-03-01 14:07:51'),(122,106,0,'a:14:{s:9:\"firstname\";s:7:\"Alexia \";s:8:\"lastname\";s:9:\"Zöggeler\";s:11:\"companyname\";s:36:\"arteemis der Alexia Verena Zöggeler\";s:7:\"address\";s:16:\"Boznerstraße 33\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:4:\"Lana\";s:12:\"emailaddress\";s:20:\"contact@arteemis.com\";s:12:\"mobilenumber\";s:11:\"338 2566387\";s:13:\"websitedomain\";s:23:\"http://www.arteemis.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"d9d8209f5061cca0162d80a98da432af\";}','a:1:{i:0;s:120:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0633658988/1645441544_001-Logo-mit-Grafik.jpg\";}','MTY0NTQ0MTU0NDEyMjEwNg==','82.62.199.218','','1645441544','','2022-03-01 14:07:51'),(123,106,0,'a:14:{s:9:\"firstname\";s:7:\"Michael\";s:8:\"lastname\";s:9:\"Hellweger\";s:11:\"companyname\";s:8:\"enovi KG\";s:7:\"address\";s:16:\"Zur Bachwiese 23\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:11:\"St.Lorenzen\";s:12:\"emailaddress\";s:13:\"info@enovi.it\";s:12:\"mobilenumber\";s:13:\"+393485815455\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ0MTU3OTEyMzEwNg==','31.207.102.124','','1645441579','','2022-03-01 14:07:51'),(124,106,1,'a:14:{s:9:\"firstname\";s:5:\"Maria\";s:8:\"lastname\";s:10:\"Matzneller\";s:11:\"companyname\";s:14:\"KOSMETIKSTUDIO\";s:7:\"address\";s:14:\"Mühlbachweg 2\";s:8:\"postcode\";s:5:\"39044\";s:4:\"city\";s:4:\"Egna\";s:12:\"emailaddress\";s:21:\"matznellerm@gmail.com\";s:12:\"mobilenumber\";s:10:\"3332253330\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ0Mzk3ODEyNDEwNg==','151.36.21.111','151.36.21.111','1645443978','1645444009','2022-03-01 14:07:51'),(125,106,0,'a:14:{s:9:\"firstname\";s:5:\"Amara\";s:8:\"lastname\";s:4:\"Eder\";s:11:\"companyname\";s:10:\"Bauernhof \";s:7:\"address\";s:18:\"Wehrburgstrasse 12\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:8:\"Andriano\";s:12:\"emailaddress\";s:22:\"amara.eder@hotmail.com\";s:12:\"mobilenumber\";s:10:\"3457398252\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ0NDE4OTEyNTEwNg==','79.45.106.107','','1645444189','','2022-03-01 14:07:51'),(126,106,0,'a:14:{s:9:\"firstname\";s:6:\"Martin\";s:8:\"lastname\";s:12:\"Obermarzoner\";s:11:\"companyname\";s:9:\"JASMIN KG\";s:7:\"address\";s:11:\"Via Gries 4\";s:8:\"postcode\";s:5:\"39043\";s:4:\"city\";s:8:\"Klausen \";s:12:\"emailaddress\";s:18:\"info@bischofhof.it\";s:12:\"mobilenumber\";s:10:\"3288433972\";s:13:\"websitedomain\";s:24:\"http://www.bischofhof.it\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"9c6f9b065feb31eabedd897f4fc1531b\";}','a:1:{i:0;s:127:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1779161872/1645444843_jasmin-bischhof-logo-insta.jpg\";}','MTY0NTQ0NDg0MzEyNjEwNg==','185.132.58.161','','1645444843','','2022-03-01 14:07:51'),(127,106,1,'a:14:{s:9:\"firstname\";s:8:\"Walther \";s:8:\"lastname\";s:9:\"Endrizzi \";s:11:\"companyname\";s:25:\"Wem des Endrizzi walther \";s:7:\"address\";s:16:\"Drususallee 102g\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:17:\"wemjs29@gmail.com\";s:12:\"mobilenumber\";s:10:\"3383895200\";s:13:\"websitedomain\";s:24:\"http://www.avendrizzi.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ0NjM2MTEyNzEwNg==','195.254.244.8','195.254.244.8','1645446361','1645452327','2022-03-01 14:07:51'),(128,106,1,'a:14:{s:9:\"firstname\";s:10:\"Alexander \";s:8:\"lastname\";s:22:\"Von Fioreschy-Weinfeld\";s:11:\"companyname\";s:9:\"FruVit KG\";s:7:\"address\";s:10:\"Hilbweg 1g\";s:8:\"postcode\";s:6:\"39040 \";s:4:\"city\";s:4:\"Auer\";s:12:\"emailaddress\";s:14:\"info@fruvit.it\";s:12:\"mobilenumber\";s:10:\"3406429245\";s:13:\"websitedomain\";s:21:\"http://info@fruvit.it\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ0Nzc5NTEyODEwNg==','2.198.65.14','2.44.85.77','1645447795','1645455640','2022-03-01 14:07:51'),(129,106,1,'a:14:{s:9:\"firstname\";s:7:\"Johann \";s:8:\"lastname\";s:5:\"Bauer\";s:11:\"companyname\";s:19:\"Gasthof Furggerhof \";s:7:\"address\";s:11:\"Schlossweg5\";s:8:\"postcode\";s:5:\"39019\";s:4:\"city\";s:10:\"Dorf Tirol\";s:12:\"emailaddress\";s:18:\"info@furggerhof.it\";s:12:\"mobilenumber\";s:10:\"3489005746\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"8\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ0ODE1NTEyOTEwNg==','45.86.108.187','45.86.108.187','1645448155','1645467388','2022-03-01 14:07:51'),(130,106,0,'a:14:{s:9:\"firstname\";s:5:\"Karin\";s:8:\"lastname\";s:6:\"Wieser\";s:11:\"companyname\";s:21:\"Bistro Cafe Basilicum\";s:7:\"address\";s:13:\"Hauptplatz, 6\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:4:\"Auer\";s:12:\"emailaddress\";s:23:\"martin.ventir@gmail.com\";s:12:\"mobilenumber\";s:10:\"3395769993\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ0ODE5MjEzMDEwNg==','151.38.153.162','','1645448192','','2022-03-01 14:07:51'),(131,106,1,'a:14:{s:9:\"firstname\";s:6:\"Martin\";s:8:\"lastname\";s:5:\"Blaas\";s:11:\"companyname\";s:22:\"Blaas des Blaas Walter\";s:7:\"address\";s:18:\"Galileo Galilei 3 \";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:18:\"martin@blaas.bz.it\";s:12:\"mobilenumber\";s:10:\"3450669287\";s:13:\"websitedomain\";s:54:\"https://blaas.bz.it/de/?SID=7jqnj097qadv6me6qn542bvebk\";s:9:\"employees\";s:2:\"10\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"d2e307cc313ca83b402837ecd4cb64cf\";}','a:1:{i:0;s:137:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0193839526/1645448371_7767A1B2-ADB0-4204-9103-1523EF7E1E29.png\";}','MTY0NTQ0ODM3MTEzMTEwNg==','151.82.86.66','151.82.86.66','1645448371','1645449394','2022-03-01 14:07:51'),(132,106,1,'a:14:{s:9:\"firstname\";s:5:\"Peter\";s:8:\"lastname\";s:7:\"Zöschg\";s:11:\"companyname\";s:13:\"Zöschg Peter\";s:7:\"address\";s:13:\"Breitenkofl 3\";s:8:\"postcode\";s:5:\"39050\";s:4:\"city\";s:12:\"Deutschnofen\";s:12:\"emailaddress\";s:21:\"p.zoeschg@rolmail.net\";s:12:\"mobilenumber\";s:23:\"3384621787 - 3492575718\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"182dbd086c2ec96a53defcead2c80284\";}','a:1:{i:0;s:125:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1261634079/1645449647_Firmenlogo-mit-Anschrift.png\";}','MTY0NTQ0OTY0NzEzMjEwNg==','195.254.234.41','195.254.234.41','1645449647','1645450161','2022-03-01 14:07:51'),(133,106,1,'a:14:{s:9:\"firstname\";s:20:\"Friedrich Sebastian \";s:8:\"lastname\";s:8:\"Feichter\";s:11:\"companyname\";s:10:\"Bildhauer \";s:7:\"address\";s:9:\"Gisse 120\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:10:\"St. Johann\";s:12:\"emailaddress\";s:19:\"info@homosolaris.it\";s:12:\"mobilenumber\";s:10:\"3489030307\";s:13:\"websitedomain\";s:25:\"http://www.homosolaris.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ1MDAzMDEzMzEwNg==','31.207.116.195','31.207.106.42','1645450030','1645510991','2022-03-01 14:07:51'),(134,106,1,'a:14:{s:9:\"firstname\";s:5:\"Georg\";s:8:\"lastname\";s:5:\"Trebo\";s:11:\"companyname\";s:10:\"Urt da Ras\";s:7:\"address\";s:7:\"Ciase 4\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:21:\"St. Vigil in Enneberg\";s:12:\"emailaddress\";s:18:\"georg.t@posteo.org\";s:12:\"mobilenumber\";s:10:\"3478782033\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"1ddceb80cc540affc71450a39d6e83ac\";}','a:1:{i:0;s:121:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1914382111/1645451594_Farb-Logo-Urt-da-Ras.png\";}','MTY0NTQ1MTU5NDEzNDEwNg==','31.207.127.93','31.207.127.93','1645451594','1645451607','2022-03-01 14:07:51'),(135,106,1,'a:14:{s:9:\"firstname\";s:7:\"walther\";s:8:\"lastname\";s:8:\"endrizzi\";s:11:\"companyname\";s:9:\"wemjs sas\";s:7:\"address\";s:17:\"VIALE DRUSO 102/G\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:7:\"bolzano\";s:12:\"emailaddress\";s:17:\"wemjs29@gmail.com\";s:12:\"mobilenumber\";s:10:\"3383895200\";s:13:\"websitedomain\";s:24:\"http://www.avendrizzi.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ1MjQ1NTEzNTEwNg==','195.254.244.8','195.254.244.8','1645452455','1645452489','2022-03-01 14:07:51'),(136,106,1,'a:14:{s:9:\"firstname\";s:6:\"Thomas\";s:8:\"lastname\";s:10:\"Maurberger\";s:11:\"companyname\";s:10:\"Elektro TM\";s:7:\"address\";s:18:\"Johannesstrasse 32\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:4:\"Gais\";s:12:\"emailaddress\";s:27:\"thomas.maurberger@gmail.com\";s:12:\"mobilenumber\";s:14:\"00393281411511\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ1MjU5NDEzNjEwNg==','31.207.115.206','31.207.115.206','1645452594','1645452613','2022-03-01 14:07:51'),(137,106,1,'a:14:{s:9:\"firstname\";s:7:\"walther\";s:8:\"lastname\";s:8:\"endrizzi\";s:11:\"companyname\";s:9:\"wemjs sas\";s:7:\"address\";s:17:\"VIALE DRUSO 102/G\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:7:\"bolzano\";s:12:\"emailaddress\";s:17:\"wemjs29@gmail.com\";s:12:\"mobilenumber\";s:10:\"3383895200\";s:13:\"websitedomain\";s:24:\"http://www.avendrizzi.it\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"e3310b4901399b42f72aac64e769d568\";}','a:1:{i:0;s:105:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0857204168/1645452952_logo.jpg\";}','MTY0NTQ1Mjk1MjEzNzEwNg==','195.254.244.8','195.254.244.8','1645452952','1645453058','2022-03-01 14:07:51'),(138,106,1,'a:14:{s:9:\"firstname\";s:7:\"Helene \";s:8:\"lastname\";s:5:\"Paris\";s:11:\"companyname\";s:48:\"Bistro Fundus Lana + Bar Km23 Bahnhof Burgstall \";s:7:\"address\";s:16:\"Boznerstrasse 78\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:4:\"Lana\";s:12:\"emailaddress\";s:22:\"leni@bistro-fundus.com\";s:12:\"mobilenumber\";s:10:\"3393493668\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"7\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ1NjY4ODEzODEwNg==','195.254.228.108','151.36.50.22','1645456688','1645507502','2022-03-01 14:07:51'),(139,106,1,'a:14:{s:9:\"firstname\";s:7:\"Norbert\";s:8:\"lastname\";s:11:\"Blasbichler\";s:11:\"companyname\";s:18:\"Bioweingut. RADOAR\";s:7:\"address\";s:9:\"Pedratz 1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Feldthurns\";s:12:\"emailaddress\";s:15:\"info@radoar.com\";s:12:\"mobilenumber\";s:10:\"3477523550\";s:13:\"websitedomain\";s:21:\"http://wew.tadoar.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ1ODU4MjEzOTEwNg==','5.90.207.69','185.194.200.81','1645458582','1645472003','2022-03-01 14:07:51'),(140,106,1,'a:14:{s:9:\"firstname\";s:10:\"Jan-Martin\";s:8:\"lastname\";s:8:\"Achilles\";s:11:\"companyname\";s:12:\"AC-TEC GmbH \";s:7:\"address\";s:17:\"Handwerkerzone 26\";s:8:\"postcode\";s:5:\"39052\";s:4:\"city\";s:27:\"Kaltern an der Weinsteaße \";s:12:\"emailaddress\";s:14:\"info@ac-tec.it\";s:12:\"mobilenumber\";s:13:\"+393336048955\";s:13:\"websitedomain\";s:20:\"http://www.ac-tec.it\";s:9:\"employees\";s:1:\"6\";s:7:\"branche\";a:1:{i:0;s:9:\"Industrie\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"fe6cdee8566bd111b291a978dc6e0636\";}','a:1:{i:0;s:112:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0009548137/1645460026_Logo_AC-TEC.jpg\";}','MTY0NTQ2MDAyNjE0MDEwNg==','185.214.203.96','185.214.203.96','1645460026','1645464080','2022-03-01 14:07:51'),(141,106,1,'a:14:{s:9:\"firstname\";s:5:\"Lukas\";s:8:\"lastname\";s:9:\"Pernstich\";s:11:\"companyname\";s:8:\"Lignotec\";s:7:\"address\";s:27:\"Handwerkerzone Neuradein 12\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Aldein\";s:12:\"emailaddress\";s:17:\"lukas@lignotec.it\";s:12:\"mobilenumber\";s:10:\"3351243193\";s:13:\"websitedomain\";s:22:\"http://www.lignotec.it\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ2NDQwMjE0MTEwNg==','185.132.57.42','185.132.57.42','1645464402','1645511997','2022-03-01 14:07:51'),(142,106,1,'a:14:{s:9:\"firstname\";s:3:\"Evi\";s:8:\"lastname\";s:10:\"Oberleiter\";s:11:\"companyname\";s:16:\"Technografik OHG\";s:7:\"address\";s:21:\"St.Lorenznerstr. Nr 1\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Bruneck\";s:12:\"emailaddress\";s:23:\"evi.mayer@mayer-ing.com\";s:12:\"mobilenumber\";s:10:\"3483547064\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ2NTM4OTE0MjEwNg==','31.207.113.221','31.207.113.221','1645465389','1645540814','2022-03-01 14:07:51'),(143,106,0,'a:14:{s:9:\"firstname\";s:6:\"Walter\";s:8:\"lastname\";s:6:\"Steger\";s:11:\"companyname\";s:10:\"Künighof \";s:7:\"address\";s:15:\"Hauptstraße 43\";s:8:\"postcode\";s:5:\"39930\";s:4:\"city\";s:17:\"St.Jakob Ahrntal \";s:12:\"emailaddress\";s:25:\"walter.steger68@gmail.com\";s:12:\"mobilenumber\";s:10:\"3486926073\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ2NjgyOTE0MzEwNg==','95.249.249.54','','1645466829','','2022-03-01 14:07:51'),(144,106,1,'a:14:{s:9:\"firstname\";s:7:\"Gerhard\";s:8:\"lastname\";s:7:\"Tratter\";s:11:\"companyname\";s:24:\"Tratter Engineering GmbH\";s:7:\"address\";s:15:\"W. Gebert-Deeg \";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:24:\"g.tratter@trattereng.com\";s:12:\"mobilenumber\";s:10:\"3480071971\";s:13:\"websitedomain\";s:25:\"http://www.trattereng.com\";s:9:\"employees\";s:2:\"53\";s:7:\"branche\";a:2:{i:0;s:9:\"Industrie\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"980d9a4f8afdfce712c34865bbe78613\";}','a:1:{i:0;s:129:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0977981932/1645467262_Logo-Tratter-mit-claim-Email.jpg\";}','MTY0NTQ2NzI2MjE0NDEwNg==','217.199.10.233','217.199.10.236','1645467262','1645511486','2022-03-01 14:07:51'),(145,106,1,'a:14:{s:9:\"firstname\";s:8:\"Günther\";s:8:\"lastname\";s:8:\"Plattner\";s:11:\"companyname\";s:32:\"Bauunternehmen Plattner Günther\";s:7:\"address\";s:16:\"ifingerstrasse 2\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:8:\"Tscherms\";s:12:\"emailaddress\";s:21:\"plattnerg@rolmail.net\";s:12:\"mobilenumber\";s:10:\"+399119205\";s:13:\"websitedomain\";s:21:\"http://www.lehmbau.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"5811808bdc4b91fb943de249c7742dbe\";}','a:1:{i:0;s:105:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0662697647/1645467975_Logo.png\";}','MTY0NTQ2Nzk3NTE0NTEwNg==','84.33.164.167','84.33.164.167','1645467975','1645467991','2022-03-01 14:07:51'),(146,106,0,'a:14:{s:9:\"firstname\";s:6:\"Walter\";s:8:\"lastname\";s:9:\"Atzwanger\";s:11:\"companyname\";s:21:\"Atzwanger Walter Gmbh\";s:7:\"address\";s:9:\"Bachla 22\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:7:\"Pfalzen\";s:12:\"emailaddress\";s:23:\"info@atzwangerwalter.it\";s:12:\"mobilenumber\";s:10:\"3358374128\";s:13:\"websitedomain\";s:29:\"http://www.atzwangerwalter.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ3MDk4MjE0NjEwNg==','185.127.213.159','','1645470982','','2022-03-01 14:07:51'),(147,106,1,'a:14:{s:9:\"firstname\";s:7:\"Norbert\";s:8:\"lastname\";s:11:\"Blasbichler\";s:11:\"companyname\";s:17:\"Bioweingut RADOAR\";s:7:\"address\";s:9:\"Pedratz 1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Feldthurns\";s:12:\"emailaddress\";s:15:\"info@radoar.com\";s:12:\"mobilenumber\";s:13:\"347 75 23 550\";s:13:\"websitedomain\";s:21:\"http://www.radoar.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"1717c1577333f0f3369928b5191237be\";}','a:1:{i:0;s:109:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/2005707156/1645472202_Logo_neu.jpg\";}','MTY0NTQ3MjIwMjE0NzEwNg==','185.194.200.81','185.194.200.81','1645472202','1645474186','2022-03-01 14:07:51'),(148,106,1,'a:14:{s:9:\"firstname\";s:6:\"Johann\";s:8:\"lastname\";s:5:\"Bauer\";s:11:\"companyname\";s:10:\"Furggerhof\";s:7:\"address\";s:12:\"Schlossweg 5\";s:8:\"postcode\";s:5:\"39019\";s:4:\"city\";s:10:\"Dorf Tirol\";s:12:\"emailaddress\";s:18:\"info@furggerhof.it\";s:12:\"mobilenumber\";s:10:\"3489005746\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ3MjY1NzE0ODEwNg==','45.86.108.187','45.86.108.187','1645472657','1645472679','2022-03-01 14:07:51'),(149,106,0,'a:14:{s:9:\"firstname\";s:6:\"Sylvia\";s:8:\"lastname\";s:6:\"Berger\";s:11:\"companyname\";s:15:\"Unique.You GmbH\";s:7:\"address\";s:27:\"Sankt-Johannes-Straße 23/A\";s:8:\"postcode\";s:5:\"39034\";s:4:\"city\";s:7:\"Toblach\";s:12:\"emailaddress\";s:23:\"sylvia.berger@unique.bz\";s:12:\"mobilenumber\";s:10:\"3455683923\";s:13:\"websitedomain\";s:20:\"http://www.unique.bz\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:2:{i:0;s:13:\"Dienstleister\";i:1;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"e959fde0965dff3771f58a7263c2f03e\";}','a:1:{i:0;s:118:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0399084940/1645472870_Logo-Visitenkarte.jpg\";}','MTY0NTQ3Mjg3MDE0OTEwNg==','31.207.115.238','','1645472870','','2022-03-01 14:07:51'),(150,106,1,'a:14:{s:9:\"firstname\";s:6:\"Stefan\";s:8:\"lastname\";s:13:\"Höchenberger\";s:11:\"companyname\";s:18:\"Nextlevel Handwerk\";s:7:\"address\";s:16:\"Piaristengasse 8\";s:8:\"postcode\";s:4:\"1080\";s:4:\"city\";s:4:\"Wien\";s:12:\"emailaddress\";s:26:\"info@nextlevelhandwerk.com\";s:12:\"mobilenumber\";s:10:\"3460074669\";s:13:\"websitedomain\";s:33:\"https://www.nextlevelhandwerk.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"44aa09ebd40898c201dde02bf919e013\";}','a:1:{i:0;s:137:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/2115960482/1645473254_ABA7CD88-9407-420B-B37B-A742DD63A50F.png\";}','MTY0NTQ3MzI1NDE1MDEwNg==','37.186.135.72','37.186.135.72','1645473254','1645473274','2022-03-01 14:07:51'),(151,106,1,'a:14:{s:9:\"firstname\";s:14:\"Marako Markus \";s:8:\"lastname\";s:7:\"Munter \";s:11:\"companyname\";s:13:\"Rückenstudio\";s:7:\"address\";s:14:\"Mühlerbach 6 \";s:8:\"postcode\";s:6:\"39040 \";s:4:\"city\";s:10:\"Villnöss \";s:12:\"emailaddress\";s:28:\"markusmunter.sojer@gmail.com\";s:12:\"mobilenumber\";s:10:\"3478681507\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ3MzM0NDE1MTEwNg==','151.82.113.40','151.68.123.202','1645473344','1645516441','2022-03-01 14:07:51'),(152,106,1,'a:14:{s:9:\"firstname\";s:6:\"Johann\";s:8:\"lastname\";s:5:\"Zwick\";s:11:\"companyname\";s:18:\"Goldschmiede Zwick\";s:7:\"address\";s:21:\"Generalverdrossstr.51\";s:8:\"postcode\";s:5:\"39024\";s:4:\"city\";s:4:\"Mals\";s:12:\"emailaddress\";s:27:\"info@goldschmiede-zwick.com\";s:12:\"mobilenumber\";s:10:\"0473831936\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ3MzUzNTE1MjEwNg==','5.91.5.237','185.234.101.145','1645473535','1645521378','2022-03-01 14:07:51'),(153,106,0,'a:14:{s:9:\"firstname\";s:10:\"Sieglinde \";s:8:\"lastname\";s:7:\"Lageder\";s:11:\"companyname\";s:22:\"Blumart/Alpinfloristik\";s:7:\"address\";s:15:\"Unterleitach 11\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:6:\"Bozen \";s:12:\"emailaddress\";s:15:\"info@blumart.it\";s:12:\"mobilenumber\";s:10:\"3356484448\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ3Mzc1MDE1MzEwNg==','151.46.63.31','','1645473750','','2022-03-01 14:07:51'),(154,106,0,'a:14:{s:9:\"firstname\";s:10:\"Sieglinde \";s:8:\"lastname\";s:8:\"Lageder \";s:11:\"companyname\";s:23:\"Blumart/Alpinfloristik \";s:7:\"address\";s:13:\"Unterleitach \";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:6:\"Bozen \";s:12:\"emailaddress\";s:15:\"info@blumart.it\";s:12:\"mobilenumber\";s:10:\"3356484448\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ3MzkyMjE1NDEwNg==','151.46.63.31','','1645473922','','2022-03-01 14:07:51'),(155,106,1,'a:14:{s:9:\"firstname\";s:7:\"Verena \";s:8:\"lastname\";s:23:\"Weidemann-Bingel Schick\";s:11:\"companyname\";s:10:\"Luisenhof \";s:7:\"address\";s:15:\"Werderdammstr.3\";s:8:\"postcode\";s:7:\"D-14669\";s:4:\"city\";s:7:\"Paretz \";s:12:\"emailaddress\";s:15:\"vwbingel@web.de\";s:12:\"mobilenumber\";s:14:\"00491772293359\";s:13:\"websitedomain\";s:26:\"http://Luisenhof-Paretz.de\";s:9:\"employees\";s:1:\"8\";s:7:\"branche\";a:3:{i:0;s:13:\"Dienstleister\";i:1;s:11:\"Gastgewerbe\";i:2;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ3NDQzODE1NTEwNg==','2.206.123.144','2.206.123.144','1645474438','1645521234','2022-03-01 14:07:51'),(156,106,1,'a:14:{s:9:\"firstname\";s:4:\"Karl\";s:8:\"lastname\";s:6:\"Wierer\";s:11:\"companyname\";s:6:\"WirNoi\";s:7:\"address\";s:15:\"Bahnhofplatz 10\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:20:\"wierer.k@rolmail.net\";s:12:\"mobilenumber\";s:13:\"+393475304521\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ3NjgxMDE1NjEwNg==','93.70.89.18','93.70.89.18','1645476810','1645477472','2022-03-01 14:07:51'),(157,106,1,'a:14:{s:9:\"firstname\";s:6:\"Markus\";s:8:\"lastname\";s:7:\"Stocker\";s:11:\"companyname\";s:11:\"Jack & King\";s:7:\"address\";s:21:\"Vinschgauerstrasse 63\";s:8:\"postcode\";s:5:\"39020\";s:4:\"city\";s:4:\"Töl\";s:12:\"emailaddress\";s:19:\"info@jackandking.it\";s:12:\"mobilenumber\";s:10:\"3381725780\";s:13:\"websitedomain\";s:25:\"http://www.jackandking.it\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:4:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";i:2;s:6:\"Handel\";i:3;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTQ3Njk2MzE1NzEwNg==','79.21.108.241','87.11.27.151','1645476963','1645508198','2022-03-01 14:07:51'),(158,106,1,'a:14:{s:9:\"firstname\";s:8:\"Benedikt\";s:8:\"lastname\";s:6:\"Thaler\";s:11:\"companyname\";s:27:\"Il tetto di benedikt Thaler\";s:7:\"address\";s:7:\"Auen 26\";s:8:\"postcode\";s:5:\"39058\";s:4:\"city\";s:9:\"Sarnthein\";s:12:\"emailaddress\";s:19:\"iltetto@iltetto.biz\";s:12:\"mobilenumber\";s:10:\"3479331384\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUwNTIzNTE1ODEwNg==','146.241.19.117','146.241.19.117','1645505235','1645600487','2022-03-01 14:07:51'),(159,106,0,'a:14:{s:9:\"firstname\";s:5:\"Petra\";s:8:\"lastname\";s:12:\"Schrentewein\";s:11:\"companyname\";s:13:\"Schrentewein \";s:7:\"address\";s:22:\"Montigglerstrasse 74/A\";s:8:\"postcode\";s:5:\"39057\";s:4:\"city\";s:5:\"Eppan\";s:12:\"emailaddress\";s:29:\"perraschrentewein@hotmail.com\";s:12:\"mobilenumber\";s:10:\"3391005474\";s:13:\"websitedomain\";s:32:\"http://www.petraschrentewein.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUwNzc3NzE1OTEwNg==','77.32.89.5','','1645507777','','2022-03-01 14:07:51'),(160,106,0,'a:14:{s:9:\"firstname\";s:4:\"Inge\";s:8:\"lastname\";s:15:\"Zwischenbrugger\";s:11:\"companyname\";s:17:\"Beautiful Moments\";s:7:\"address\";s:17:\"Hans Feur Str. 40\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Tramin\";s:12:\"emailaddress\";s:16:\"ngizws@gmail.com\";s:12:\"mobilenumber\";s:10:\"3331532353\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUwODA1NzE2MDEwNg==','5.90.196.110','','1645508057','','2022-03-01 14:07:51'),(161,106,1,'a:14:{s:9:\"firstname\";s:7:\"Pircher\";s:8:\"lastname\";s:6:\"Martin\";s:11:\"companyname\";s:17:\"Einzelunternehmen\";s:7:\"address\";s:28:\"Kondominium Alpenrose 84/194\";s:8:\"postcode\";s:5:\"39016\";s:4:\"city\";s:17:\"St. Walburg/Ulten\";s:12:\"emailaddress\";s:28:\"martin.pircher53@rolmail.net\";s:12:\"mobilenumber\";s:11:\"03489046153\";s:13:\"websitedomain\";s:28:\"http://www.wanderfuehrer.net\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUwODc3MjE2MTEwNg==','5.90.69.230','79.49.69.212','1645508772','1645515304','2022-03-01 14:07:51'),(162,106,1,'a:14:{s:9:\"firstname\";s:11:\"Maria Luise\";s:8:\"lastname\";s:5:\"Stark\";s:11:\"companyname\";s:11:\"Fallrohrhof\";s:7:\"address\";s:11:\"Allitz4 4/A\";s:8:\"postcode\";s:5:\"39023\";s:4:\"city\";s:4:\"Laas\";s:12:\"emailaddress\";s:23:\"Luise.stark81@gmail.com\";s:12:\"mobilenumber\";s:10:\"3480345692\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUwOTI5ODE2MjEwNg==','93.70.82.156','93.70.82.156','1645509298','1645512990','2022-03-01 14:07:51'),(163,106,0,'a:14:{s:9:\"firstname\";s:6:\"Elias \";s:8:\"lastname\";s:8:\"Gatterer\";s:11:\"companyname\";s:11:\"Forchnerhof\";s:7:\"address\";s:16:\"Peinerstraße 20\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:8:\"Terenten\";s:12:\"emailaddress\";s:22:\"elias.gatterer@live.de\";s:12:\"mobilenumber\";s:10:\"3404180192\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUxMTI0NjE2MzEwNg==','5.90.204.26','','1645511246','','2022-03-01 14:07:51'),(164,106,0,'a:14:{s:9:\"firstname\";s:5:\"David\";s:8:\"lastname\";s:5:\"Somvi\";s:11:\"companyname\";s:11:\"DASOTEC Srl\";s:7:\"address\";s:21:\"via Monte San Zeno 15\";s:8:\"postcode\";s:5:\"39019\";s:4:\"city\";s:6:\"Tirolo\";s:12:\"emailaddress\";s:22:\"david.somvi@dasotec.it\";s:12:\"mobilenumber\";s:10:\"3315371685\";s:13:\"websitedomain\";s:21:\"http://www.dasotec.it\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:9:\"Industrie\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"3651998194c0290a39170844555d50c8\";}','a:1:{i:0;s:135:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/2140940404/1645512125_LOGO_DASOTEC_2019-big-large-margin.png\";}','MTY0NTUxMjEyNTE2NDEwNg==','176.201.230.85','','1645512125','','2022-03-01 14:07:51'),(165,106,1,'a:14:{s:9:\"firstname\";s:5:\"Lukas\";s:8:\"lastname\";s:9:\"Pernstich\";s:11:\"companyname\";s:8:\"Lignotec\";s:7:\"address\";s:28:\"Handwerkerzone Neuradein, 12\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Aldein\";s:12:\"emailaddress\";s:17:\"lukas@lignotec.it\";s:12:\"mobilenumber\";s:11:\"335 1243193\";s:13:\"websitedomain\";s:22:\"http://www.lignotec.it\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"f9bb9fef28466688cbe9e47ac5dac992\";}','a:1:{i:0;s:112:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0673101053/1645512147_logo_social.jpg\";}','MTY0NTUxMjE0NzE2NTEwNg==','185.132.57.42','185.132.57.42','1645512147','1645512181','2022-03-01 14:07:51'),(166,106,1,'a:14:{s:9:\"firstname\";s:6:\"Astrid\";s:8:\"lastname\";s:6:\"Kofler\";s:11:\"companyname\";s:14:\"GARNI SUNNWIES\";s:7:\"address\";s:15:\"St. Felixweg 12\";s:8:\"postcode\";s:5:\"39020\";s:4:\"city\";s:7:\"Marling\";s:12:\"emailaddress\";s:23:\"info@garni-sunnwies.com\";s:12:\"mobilenumber\";s:10:\"3334233371\";s:13:\"websitedomain\";s:29:\"http://www.garni-sunnwies.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUxNTQyNjE2NjEwNg==','151.68.56.0','151.68.56.0','1645515426','1645516232','2022-03-01 14:07:51'),(167,106,1,'a:14:{s:9:\"firstname\";s:7:\"Michael\";s:8:\"lastname\";s:11:\"Überbacher\";s:11:\"companyname\";s:11:\"Soleon GmbH\";s:7:\"address\";s:15:\"Eisackstrasse 1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:5:\"Vahrn\";s:12:\"emailaddress\";s:17:\"michael@soleon.it\";s:12:\"mobilenumber\";s:10:\"3355994441\";s:13:\"websitedomain\";s:20:\"http://www.soleon.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"c590cd4942aded94f6dd7869cdb14963\";}','a:1:{i:0;s:107:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1782444601/1645515710_soleon.jpg\";}','MTY0NTUxNTcxMDE2NzEwNg==','84.18.146.20','84.18.146.20','1645515710','1645516689','2022-03-01 14:07:51'),(168,106,1,'a:14:{s:9:\"firstname\";s:7:\"Patrick\";s:8:\"lastname\";s:9:\"Cumerlato\";s:11:\"companyname\";s:8:\"Hydrobau\";s:7:\"address\";s:18:\"Luis zueggstr. 22 \";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:17:\"info@hydrobau.com\";s:12:\"mobilenumber\";s:10:\"3357029218\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"4caac6d8e4e9599edbfdc808d7ffe917\";}','a:1:{i:0;s:106:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0898554141/1645516357_image.jpg\";}','MTY0NTUxNjM1NzE2ODEwNg==','87.26.120.19','87.26.120.19','1645516357','1645517278','2022-03-01 14:07:51'),(169,106,1,'a:14:{s:9:\"firstname\";s:9:\"Edeltraud\";s:8:\"lastname\";s:11:\"Wiedenhofer\";s:11:\"companyname\";s:14:\"Geiser Gerhard\";s:7:\"address\";s:16:\"Handwerkerzone 3\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:8:\"St.Felix\";s:12:\"emailaddress\";s:26:\"geiser.gerhard@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3395865883\";s:13:\"websitedomain\";s:28:\"http://geiser.gerhard.lvh.it\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:10:\"Baugewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUxNjczOTE2OTEwNg==','185.127.213.82','185.127.213.82','1645516739','1645516841','2022-03-01 14:07:51'),(170,106,1,'a:14:{s:9:\"firstname\";s:7:\"Marlies\";s:8:\"lastname\";s:6:\"Pattis\";s:11:\"companyname\";s:13:\"Salon marlies\";s:7:\"address\";s:15:\"Trattengasse 11\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:21:\"pattisselena@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3381097770\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUxNjg0MjE3MDEwNg==','185.5.199.162','185.5.199.162','1645516842','1645516862','2022-03-01 14:07:51'),(171,106,1,'a:14:{s:9:\"firstname\";s:7:\"Marlies\";s:8:\"lastname\";s:6:\"Pattis\";s:11:\"companyname\";s:13:\"Salon marlies\";s:7:\"address\";s:17:\"Trattengassec11, \";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:21:\"pattisselena@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3381097770\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUxNjk1NTE3MTEwNg==','185.5.199.162','185.5.199.162','1645516955','1645518244','2022-03-01 14:07:51'),(172,106,1,'a:14:{s:9:\"firstname\";s:6:\"Philip\";s:8:\"lastname\";s:7:\"Stauder\";s:11:\"companyname\";s:17:\"sein-wohnen-leben\";s:7:\"address\";s:27:\"Kehlburgweg 14, St. Georgen\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Bruneck\";s:12:\"emailaddress\";s:23:\"philipstauder@gmail.com\";s:12:\"mobilenumber\";s:10:\"3405255423\";s:13:\"websitedomain\";s:32:\"http://www.sein-wohnen-leben.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"8ba90ed378d888251311c1dc475e2cc1\";}','a:1:{i:0;s:105:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1201910929/1645518333_Logo.jpg\";}','MTY0NTUxODMzMzE3MjEwNg==','31.207.111.193','31.207.111.193','1645518333','1645518349','2022-03-01 14:07:51'),(173,106,1,'a:14:{s:9:\"firstname\";s:6:\"Philip\";s:8:\"lastname\";s:7:\"Stauder\";s:11:\"companyname\";s:17:\"sein-wohnen-leben\";s:7:\"address\";s:27:\"Kehlburgweg 14, St. Georgen\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Bruneck\";s:12:\"emailaddress\";s:23:\"philipstauder@gmail.com\";s:12:\"mobilenumber\";s:10:\"3405255423\";s:13:\"websitedomain\";s:32:\"http://www.sein-wohnen-leben.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"8ba90ed378d888251311c1dc475e2cc1\";}','a:1:{i:0;s:105:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0324391466/1645518448_Logo.jpg\";}','MTY0NTUxODQ0ODE3MzEwNg==','31.207.111.193','31.207.111.193','1645518448','1645518473','2022-03-01 14:07:51'),(174,106,1,'a:14:{s:9:\"firstname\";s:6:\"Thomas\";s:8:\"lastname\";s:8:\"Lochmann\";s:11:\"companyname\";s:13:\"Kestnholz.Hof\";s:7:\"address\";s:13:\"Rateiserweg 4\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:4:\"Lana\";s:12:\"emailaddress\";s:28:\"kestnholz.hof@protonmail.com\";s:12:\"mobilenumber\";s:10:\"3487737578\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUxODg1ODE3NDEwNg==','84.33.185.165','84.33.185.165','1645518858','1645518882','2022-03-01 14:07:51'),(175,106,1,'a:14:{s:9:\"firstname\";s:6:\"Marcel\";s:8:\"lastname\";s:9:\"Weirather\";s:11:\"companyname\";s:16:\"Marcel Weirather\";s:7:\"address\";s:17:\"G.-I.-Verdross 47\";s:8:\"postcode\";s:5:\"39024\";s:4:\"city\";s:4:\"Mals\";s:12:\"emailaddress\";s:21:\"m.weirather@gmail.com\";s:12:\"mobilenumber\";s:10:\"3389730190\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUyMDQxMjE3NTEwNg==','89.107.105.156','89.107.105.156','1645520412','1645520425','2022-03-01 14:07:51'),(176,106,0,'a:14:{s:9:\"firstname\";s:5:\"Paolo\";s:8:\"lastname\";s:7:\"Vettori\";s:11:\"companyname\";s:13:\"Paolo Vettori\";s:7:\"address\";s:24:\"Andreas Hofer Strasse 44\";s:8:\"postcode\";s:5:\"39044\";s:4:\"city\";s:8:\"Neumarkt\";s:12:\"emailaddress\";s:26:\"paolo.vettori.mirco@tim.it\";s:12:\"mobilenumber\";s:10:\"3342636126\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"3bcc4b5cd09590f365f6ceea06d533f8\";}','a:1:{i:0;s:111:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0462423880/1645521360_Firmenlogo.png\";}','MTY0NTUyMTM2MDE3NjEwNg==','185.121.101.237','','1645521360','','2022-03-01 14:07:51'),(177,106,1,'a:14:{s:9:\"firstname\";s:6:\"Johann\";s:8:\"lastname\";s:5:\"Zwick\";s:11:\"companyname\";s:19:\"Goldschmiede Zwick \";s:7:\"address\";s:21:\"Generalverdrossstr.51\";s:8:\"postcode\";s:5:\"39024\";s:4:\"city\";s:4:\"Mals\";s:12:\"emailaddress\";s:27:\"info@goldschmiede-zwick.com\";s:12:\"mobilenumber\";s:10:\"0473831936\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUyMTU2MTE3NzEwNg==','185.234.101.145','185.234.101.145','1645521561','1645525074','2022-03-01 14:07:51'),(178,106,1,'a:14:{s:9:\"firstname\";s:6:\"Thomas\";s:8:\"lastname\";s:5:\"Major\";s:11:\"companyname\";s:12:\"Major Thomas\";s:7:\"address\";s:12:\"Herrnanger 4\";s:8:\"postcode\";s:5:\"39050\";s:4:\"city\";s:5:\"Eggen\";s:12:\"emailaddress\";s:24:\"thomas.major@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3669787523\";s:13:\"websitedomain\";s:24:\"http://www.major-bau.com\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUyNDc4OTE3ODEwNg==','151.38.153.247','212.46.179.87','1645524789','1645544480','2022-03-01 14:07:51'),(179,106,1,'a:14:{s:9:\"firstname\";s:6:\"Markus\";s:8:\"lastname\";s:7:\"Lintner\";s:11:\"companyname\";s:7:\"Pegasus\";s:7:\"address\";s:12:\"Obstplatz 22\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:20:\"markus@pegasus.bz.it\";s:12:\"mobilenumber\";s:10:\"0471978875\";s:13:\"websitedomain\";s:24:\"http://www.pegasus.bz.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"9f6cc4608830cf714846bfe610b05390\";}','a:1:{i:0;s:119:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0223021862/1645525634_Pegasus-logo-druck.jpg\";}','MTY0NTUyNTYzNDE3OTEwNg==','79.10.196.198','79.10.196.198','1645525634','1645529447','2022-03-01 14:07:51'),(180,106,1,'a:14:{s:9:\"firstname\";s:7:\"Silvia \";s:8:\"lastname\";s:6:\"Wirths\";s:11:\"companyname\";s:12:\"Delizia GmbH\";s:7:\"address\";s:18:\"St. Agatha Weg 1/1\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:4:\"Lana\";s:12:\"emailaddress\";s:19:\"info@deliziaeco.com\";s:12:\"mobilenumber\";s:10:\"3283111590\";s:13:\"websitedomain\";s:25:\"http://www.deliziaeco.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"cd97c28bd85f0036b5f066d7507d7b7d\";}','a:1:{i:0;s:137:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0608156164/1645526098_B0276553-4458-44D2-9670-B91F4B9148EF.png\";}','MTY0NTUyNjA5ODE4MDEwNg==','87.8.109.25','87.8.109.25','1645526098','1645528070','2022-03-01 14:07:51'),(181,106,0,'a:14:{s:9:\"firstname\";s:8:\"Reinhold\";s:8:\"lastname\";s:8:\"Gabloner\";s:11:\"companyname\";s:13:\"Blueflow GmbH\";s:7:\"address\";s:16:\"CAVOUR-STR. 23/C\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"BOZEN\";s:12:\"emailaddress\";s:18:\"gabloner@gmail.com\";s:12:\"mobilenumber\";s:13:\"+393472348996\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"d71f422c6cc2f04a3013564dd02c989b\";}','a:1:{i:0;s:114:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1629698637/1645526098_Blueflow-Logo.jpg\";}','MTY0NTUyNjA5ODE4MTEwNg==','212.46.180.192','','1645526098','','2022-03-01 14:07:51'),(182,106,1,'a:14:{s:9:\"firstname\";s:6:\"Lorenz\";s:8:\"lastname\";s:4:\"Puff\";s:11:\"companyname\";s:11:\"Lorenz Puff\";s:7:\"address\";s:20:\"Telser Galerie, 11-3\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:20:\"info@lorenz-puff.com\";s:12:\"mobilenumber\";s:11:\"347 0788923\";s:13:\"websitedomain\";s:23:\"http://www.alchewat.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"c66eea8f685291caa1445a0d1537bed2\";}','a:1:{i:0;s:125:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1042151185/1645526335_Alchewat-Alpine-Fountain.jpg\";}','MTY0NTUyNjMzNTE4MjEwNg==','93.34.235.69','93.34.235.69','1645526335','1645528544','2022-03-01 14:07:51'),(183,106,1,'a:14:{s:9:\"firstname\";s:6:\"ingrid\";s:8:\"lastname\";s:7:\"aichner\";s:11:\"companyname\";s:11:\"mode ingrid\";s:7:\"address\";s:25:\"oswald v.wolkenstein 29/c\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"kastelruth\";s:12:\"emailaddress\";s:23:\"aichneringrid@gmail.com\";s:12:\"mobilenumber\";s:10:\"3356924857\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUyNjg0NTE4MzEwNg==','2.198.41.130','2.198.41.130','1645526845','1645527008','2022-03-01 14:07:51'),(184,106,1,'a:14:{s:9:\"firstname\";s:8:\"Bernhard\";s:8:\"lastname\";s:8:\"Tammerle\";s:11:\"companyname\";s:13:\"Taxi Tammerle\";s:7:\"address\";s:16:\"Riffianerweg 4/D\";s:8:\"postcode\";s:5:\"39017\";s:4:\"city\";s:7:\"Schenna\";s:12:\"emailaddress\";s:22:\"info@taxi-tammerle.com\";s:12:\"mobilenumber\";s:13:\"+393483104645\";s:13:\"websitedomain\";s:28:\"http://www.taxi-tammerle.com\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUyNjg1NjE4NDEwNg==','88.147.75.228','88.147.75.228','1645526856','1645526936','2022-03-01 14:07:51'),(185,106,1,'a:14:{s:9:\"firstname\";s:9:\"Katharina\";s:8:\"lastname\";s:7:\"Stuefer\";s:11:\"companyname\";s:29:\"Federkielstickerei Katharina \";s:7:\"address\";s:10:\"Astfeld 17\";s:8:\"postcode\";s:5:\"39058\";s:4:\"city\";s:7:\"Sarntal\";s:12:\"emailaddress\";s:23:\"pema.katharina@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3498360109\";s:13:\"websitedomain\";s:43:\"http://www.federkielstickerei-katharina.com\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"730c0c9e3829afc8b6c98a5c0412fe02\";}','a:1:{i:0;s:141:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0319877477/1645527012_IMG_20220222_114935_edit_582629899887138.jpg\";}','MTY0NTUyNzAxMjE4NTEwNg==','151.82.2.55','151.82.2.55','1645527012','1645529247','2022-03-01 14:07:51'),(186,106,1,'a:14:{s:9:\"firstname\";s:8:\"Günther\";s:8:\"lastname\";s:9:\"Pallweber\";s:11:\"companyname\";s:13:\"VK Italia Srl\";s:7:\"address\";s:16:\"Via Kuperion 2-4\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:6:\"Merano\";s:12:\"emailaddress\";s:21:\"pallweber@vkitalia.it\";s:12:\"mobilenumber\";s:10:\"3358134120\";s:13:\"websitedomain\";s:18:\"http://vkitalia.it\";s:9:\"employees\";s:2:\"17\";s:7:\"branche\";a:4:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";i:2;s:6:\"Handel\";i:3;s:10:\"Baugewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"b0eedcd7abf15be9b54c217d530ded7f\";}','a:1:{i:0;s:125:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0920396323/1645527375_2021-Logo-VK-ITALIA_CMYK.jpg\";}','MTY0NTUyNzM3NTE4NjEwNg==','46.234.238.227','46.234.238.227','1645527375','1645528088','2022-03-01 14:07:51'),(187,106,1,'a:14:{s:9:\"firstname\";s:6:\"Ulrike\";s:8:\"lastname\";s:5:\"Gratl\";s:11:\"companyname\";s:11:\"Holzmannhof\";s:7:\"address\";s:9:\"Montigl 1\";s:8:\"postcode\";s:5:\"39018\";s:4:\"city\";s:6:\"Terlan\";s:12:\"emailaddress\";s:13:\"pezza@live.de\";s:12:\"mobilenumber\";s:10:\"3388189137\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUyNzUxOTE4NzEwNg==','77.32.119.79','77.32.119.79','1645527519','1645527907','2022-03-01 14:07:51'),(188,106,1,'a:14:{s:9:\"firstname\";s:7:\"Monika \";s:8:\"lastname\";s:8:\"Schatzer\";s:11:\"companyname\";s:12:\"INNEREDERHOF\";s:7:\"address\";s:14:\"Mitterberg 15a\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Sexten\";s:12:\"emailaddress\";s:27:\"monika.schatzer@hotmail.com\";s:12:\"mobilenumber\";s:10:\"3497427349\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUyOTAzNDE4ODEwNg==','5.90.14.231','5.90.14.231','1645529034','1645541412','2022-03-01 14:07:51'),(189,106,1,'a:14:{s:9:\"firstname\";s:6:\"Alfred\";s:8:\"lastname\";s:9:\"Lanzinger\";s:11:\"companyname\";s:12:\"Innerederhof\";s:7:\"address\";s:13:\"Mitterberg15a\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Sexten\";s:12:\"emailaddress\";s:27:\"alfred.lanzinger@outlook.de\";s:12:\"mobilenumber\";s:10:\"3492252178\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUyOTMzMzE4OTEwNg==','5.90.191.96','5.90.191.96','1645529333','1645541518','2022-03-01 14:07:51'),(190,106,1,'a:14:{s:9:\"firstname\";s:6:\"Martin\";s:8:\"lastname\";s:7:\"Fontana\";s:11:\"companyname\";s:12:\"Brückenwirt\";s:7:\"address\";s:19:\"Breitebnerstrasse 2\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:9:\"St. Matin\";s:12:\"emailaddress\";s:17:\"pixnerevi@live.de\";s:12:\"mobilenumber\";s:10:\"3495672328\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"5\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUyOTc4NzE5MDEwNg==','151.18.86.30','151.82.25.16','1645529787','1645534236','2022-03-01 14:07:51'),(191,106,1,'a:14:{s:9:\"firstname\";s:6:\"Ronnie\";s:8:\"lastname\";s:10:\"Mittermair\";s:11:\"companyname\";s:28:\"Mittermair Heinrich & Co. KG\";s:7:\"address\";s:20:\"Linkes Eisackufer 53\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:27:\"mittermair@scaniaservice.it\";s:12:\"mobilenumber\";s:10:\"3284954595\";s:13:\"websitedomain\";s:27:\"http://www.scaniaservice.it\";s:9:\"employees\";s:2:\"10\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"9f2af51543b3c55ad41fc31d8b4aa82f\";}','a:1:{i:0;s:116:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0235242417/1645530124_logo-Mittermair.png\";}','MTY0NTUzMDEyNDE5MTEwNg==','146.241.6.19','109.168.30.185','1645530124','1645535315','2022-03-01 14:07:51'),(192,106,0,'a:14:{s:9:\"firstname\";s:8:\"Brigitte\";s:8:\"lastname\";s:6:\"Walter\";s:11:\"companyname\";s:16:\"Walter Brigitte \";s:7:\"address\";s:10:\"Cavalese 5\";s:8:\"postcode\";s:5:\"39044\";s:4:\"city\";s:8:\"Neumarkt\";s:12:\"emailaddress\";s:21:\"bwalter35@hotmail.com\";s:12:\"mobilenumber\";s:10:\"3356797972\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUzMTU5MzE5MjEwNg==','84.18.131.201','','1645531593','','2022-03-01 14:07:51'),(193,106,0,'a:14:{s:9:\"firstname\";s:7:\"Familie\";s:8:\"lastname\";s:6:\"Marini\";s:11:\"companyname\";s:22:\"Marinis giardino Hotel\";s:7:\"address\";s:15:\"Hauptstrasse 28\";s:8:\"postcode\";s:6:\"39019 \";s:4:\"city\";s:5:\"Tirol\";s:12:\"emailaddress\";s:19:\"info@hotelmarini.it\";s:12:\"mobilenumber\";s:10:\"3388726515\";s:13:\"websitedomain\";s:30:\"http://www.marinisgiardino.com\";s:9:\"employees\";s:2:\"12\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTUzNDE1ODE5MzEwNg==','37.186.169.129','','1645534158','','2022-03-01 14:07:51'),(194,106,0,'a:14:{s:9:\"firstname\";s:6:\"Roland\";s:8:\"lastname\";s:7:\"Gabasch\";s:11:\"companyname\";s:18:\"Naturalia-BAU GmbH\";s:7:\"address\";s:17:\"C. Abarth-Str. 20\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:31:\"roland.gabasch@naturalia-bau.it\";s:12:\"mobilenumber\";s:11:\"335 6590876\";s:13:\"websitedomain\";s:27:\"http://www.naturalia-bau.it\";s:9:\"employees\";s:2:\"13\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"57b5b27a863fe52acae45f4c76af028c\";}','a:1:{i:0;s:108:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0710104657/1645541486_NB_Logo.png\";}','MTY0NTU0MTQ4NjE5NDEwNg==','46.234.239.137','','1645541486','','2022-03-01 14:07:51'),(195,106,0,'a:14:{s:9:\"firstname\";s:7:\"Michael\";s:8:\"lastname\";s:7:\"Brenner\";s:11:\"companyname\";s:9:\"Gallushof\";s:7:\"address\";s:13:\"Romstraße 1A\";s:8:\"postcode\";s:5:\"39044\";s:4:\"city\";s:8:\"Neumarkt\";s:12:\"emailaddress\";s:19:\"brenner.m@libero.it\";s:12:\"mobilenumber\";s:10:\"3395204201\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU0MTUzMDE5NTEwNg==','151.34.37.154','','1645541530','','2022-03-01 14:07:51'),(196,106,1,'a:14:{s:9:\"firstname\";s:6:\"Alfred\";s:8:\"lastname\";s:9:\"Lanzinger\";s:11:\"companyname\";s:12:\"Innerederhof\";s:7:\"address\";s:13:\"Mitterberg15a\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Sexten\";s:12:\"emailaddress\";s:27:\"alfred.lanzinger@outlook.de\";s:12:\"mobilenumber\";s:11:\"03492252178\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU0MTU1NzE5NjEwNg==','5.90.191.96','79.55.65.192','1645541557','1645614443','2022-03-01 14:07:51'),(197,106,0,'a:14:{s:9:\"firstname\";s:8:\"Alexius \";s:8:\"lastname\";s:7:\"Terzer \";s:11:\"companyname\";s:19:\"Hof am Bürgerfleck\";s:7:\"address\";s:17:\"Bahnhofstraße 23\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:7:\"Tramin \";s:12:\"emailaddress\";s:23:\"alex.terzer@virgilio.it\";s:12:\"mobilenumber\";s:10:\"3497120701\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU0MjA4NDE5NzEwNg==','5.90.32.14','','1645542084','','2022-03-01 14:07:51'),(198,106,1,'a:14:{s:9:\"firstname\";s:5:\"Heidi\";s:8:\"lastname\";s:7:\"Pichler\";s:11:\"companyname\";s:16:\"Hotel Schönwies\";s:7:\"address\";s:13:\"Wies, Wik 7/1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Aldein\";s:12:\"emailaddress\";s:26:\"heidipichlerhp74@gmail.com\";s:12:\"mobilenumber\";s:10:\"3343106164\";s:13:\"websitedomain\";s:24:\"http://www.schoenwies.it\";s:9:\"employees\";s:1:\"6\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU0Mjg1MjE5ODEwNg==','151.82.212.88','151.34.66.178','1645542852','1645559805','2022-03-01 14:07:51'),(199,106,0,'a:14:{s:9:\"firstname\";s:6:\"Robert\";s:8:\"lastname\";s:6:\"Thaler\";s:11:\"companyname\";s:8:\"Wieshof \";s:7:\"address\";s:15:\"Wies, Winkl 7/1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Aldein\";s:12:\"emailaddress\";s:21:\"robertthaler@alice.it\";s:12:\"mobilenumber\";s:10:\"3398871998\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU0Mjk5MzE5OTEwNg==','151.82.212.88','','1645542993','','2022-03-01 14:07:51'),(200,106,1,'a:14:{s:9:\"firstname\";s:5:\"David\";s:8:\"lastname\";s:7:\"Pircher\";s:11:\"companyname\";s:13:\"David Pircher\";s:7:\"address\";s:14:\"Obermühlweg 7\";s:8:\"postcode\";s:5:\"39021\";s:4:\"city\";s:6:\"Latsch\";s:12:\"emailaddress\";s:14:\"pirdav@gmx.net\";s:12:\"mobilenumber\";s:10:\"3331379389\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU0MzQ4NjIwMDEwNg==','151.18.0.79','185.231.231.238','1645543486','1645597480','2022-03-01 14:07:51'),(201,106,1,'a:14:{s:9:\"firstname\";s:7:\"Birgit \";s:8:\"lastname\";s:4:\"Waid\";s:11:\"companyname\";s:14:\"Inside home KG\";s:7:\"address\";s:12:\"Bachgasse 14\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Tramin\";s:12:\"emailaddress\";s:18:\"info@insidehome.it\";s:12:\"mobilenumber\";s:10:\"3332392988\";s:13:\"websitedomain\";s:20:\"http://insidehome.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU0NDUwODIwMTEwNg==','2.198.61.31','80.104.143.189','1645544508','1645544738','2022-03-01 14:07:51'),(202,106,1,'a:14:{s:9:\"firstname\";s:6:\"Monika\";s:8:\"lastname\";s:8:\"Schatzer\";s:11:\"companyname\";s:12:\"Innerederhof\";s:7:\"address\";s:14:\"Mitterberg 15a\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Sexten\";s:12:\"emailaddress\";s:27:\"monika.schatzer@hotmail.com\";s:12:\"mobilenumber\";s:10:\"3497427349\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU0NDU0NTIwMjEwNg==','5.90.37.243','5.90.37.243','1645544545','1645548191','2022-03-01 14:07:51'),(203,106,1,'a:14:{s:9:\"firstname\";s:8:\"Marcello\";s:8:\"lastname\";s:11:\"Paternoster\";s:11:\"companyname\";s:27:\"M.P di Paternoster Marcello\";s:7:\"address\";s:17:\"Maria-Rast-Weg 4i\";s:8:\"postcode\";s:5:\"39057\";s:4:\"city\";s:18:\"St. Michael Eppan \";s:12:\"emailaddress\";s:30:\"marcello.paternoster@gmail.com\";s:12:\"mobilenumber\";s:10:\"3398041735\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU0NjExNDIwMzEwNg==','93.70.67.255','93.70.67.255','1645546114','1645546220','2022-03-01 14:07:51'),(204,106,1,'a:14:{s:9:\"firstname\";s:8:\"Marcello\";s:8:\"lastname\";s:11:\"Paternoster\";s:11:\"companyname\";s:27:\"M.P di Paternoster Marcello\";s:7:\"address\";s:17:\"Maria-Rast-Weg 4i\";s:8:\"postcode\";s:5:\"39057\";s:4:\"city\";s:17:\"St. Michael Eppan\";s:12:\"emailaddress\";s:30:\"marcello.paternoster@gmail.com\";s:12:\"mobilenumber\";s:10:\"3398041735\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU0NjMwNzIwNDEwNg==','93.70.67.255','93.70.67.255','1645546307','1645546442','2022-03-01 14:07:51'),(205,106,1,'a:14:{s:9:\"firstname\";s:7:\"Hannes \";s:8:\"lastname\";s:11:\"Kühebacher\";s:11:\"companyname\";s:20:\"Hotel Weisses Rössl\";s:7:\"address\";s:24:\"Herzog Tassilo Strasse 1\";s:8:\"postcode\";s:5:\"39038\";s:4:\"city\";s:8:\"Innichen\";s:12:\"emailaddress\";s:28:\"hannes.kuehebacher@gmail.com\";s:12:\"mobilenumber\";s:10:\"3492917408\";s:13:\"websitedomain\";s:36:\"http://www.hotel-cavallinobianco.com\";s:9:\"employees\";s:2:\"17\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"f479c40f895738776cf2dad2305ec519\";}','a:1:{i:0;s:114:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0215712497/1645550573_logo-weiss-de.jpg\";}','MTY0NTU1MDU3MzIwNTEwNg==','195.254.227.1','195.254.227.1','1645550573','1645563029','2022-03-01 14:07:51'),(206,106,1,'a:14:{s:9:\"firstname\";s:7:\"Tengler\";s:8:\"lastname\";s:5:\"Alois\";s:11:\"companyname\";s:13:\"Tengler Alois\";s:7:\"address\";s:8:\"Sella 55\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Termeno BZ\";s:12:\"emailaddress\";s:23:\"info@nussbaumerhof.info\";s:12:\"mobilenumber\";s:13:\"0393885732974\";s:13:\"websitedomain\";s:29:\"http://www.nussbaumerhof.info\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU1NDIwMDIwNjEwNg==','95.251.135.192','95.251.135.192','1645554200','1645554288','2022-03-01 14:07:51'),(207,106,1,'a:14:{s:9:\"firstname\";s:7:\"Michael\";s:8:\"lastname\";s:6:\"Siller\";s:11:\"companyname\";s:21:\"Firma Siller Michael \";s:7:\"address\";s:15:\"Mareit, Wetzl 7\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Ratschings\";s:12:\"emailaddress\";s:23:\"siller.michael@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3409857884\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"1c0a4e2b5e98acb5cf7c8a38c564aebe\";}','a:1:{i:0;s:108:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0632009220/1645554501_8760556.png\";}','MTY0NTU1NDUwMTIwNzEwNg==','5.90.69.150','5.90.69.150','1645554501','1645554524','2022-03-01 14:07:51'),(208,106,0,'a:14:{s:9:\"firstname\";s:5:\"Anita\";s:8:\"lastname\";s:11:\"Runggaldier\";s:11:\"companyname\";s:24:\"Hebamme Kräuterexpertin\";s:7:\"address\";s:7:\"Muls 36\";s:8:\"postcode\";s:5:\"39058\";s:4:\"city\";s:7:\"SARNTAL\";s:12:\"emailaddress\";s:29:\"anita.runggaldier@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3460504227\";s:13:\"websitedomain\";s:36:\"http://anita.runggaldier@rolmail.net\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU1NTQ0NDIwODEwNg==','5.90.76.109','','1645555444','','2022-03-01 14:07:51'),(209,106,1,'a:14:{s:9:\"firstname\";s:6:\"Markus\";s:8:\"lastname\";s:11:\"Nussbaumer \";s:11:\"companyname\";s:10:\"Ofensetzer\";s:7:\"address\";s:7:\"Muls 36\";s:8:\"postcode\";s:5:\"39058\";s:4:\"city\";s:7:\"SARNTAL\";s:12:\"emailaddress\";s:29:\"markus.nussbaumer@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3487032539\";s:13:\"websitedomain\";s:36:\"http://markus.nussbaumer@rolmail.net\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU1NTU4MDIwOTEwNg==','5.90.76.109','5.90.71.152','1645555580','1645639926','2022-03-01 14:07:51'),(210,106,1,'a:14:{s:9:\"firstname\";s:6:\"Markus\";s:8:\"lastname\";s:10:\"Nussbaumer\";s:11:\"companyname\";s:10:\"Ofensetzer\";s:7:\"address\";s:7:\"Muls 36\";s:8:\"postcode\";s:5:\"39058\";s:4:\"city\";s:7:\"SARNTAL\";s:12:\"emailaddress\";s:29:\"markus.nussbaumer@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3487032539\";s:13:\"websitedomain\";s:36:\"http://markus.nussbaumer@rolmail.net\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU1NTY5OTIxMDEwNg==','5.90.76.109','5.90.71.152','1645555699','1645640263','2022-03-01 14:07:51'),(211,106,1,'a:14:{s:9:\"firstname\";s:5:\"Adele\";s:8:\"lastname\";s:8:\"Rabanser\";s:11:\"companyname\";s:12:\"Rabanser OHG\";s:7:\"address\";s:16:\"Reziastrasse 28b\";s:8:\"postcode\";s:5:\"39046\";s:4:\"city\";s:17:\"St.Ulrich Gröden\";s:12:\"emailaddress\";s:18:\"adele@rabanser.com\";s:12:\"mobilenumber\";s:10:\"3355928694\";s:13:\"websitedomain\";s:23:\"http://www.rabanser.com\";s:9:\"employees\";s:1:\"7\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU1Njg3OTIxMTEwNg==','2.198.48.145','2.198.48.145','1645556879','1645559229','2022-03-01 14:07:51'),(212,106,0,'a:14:{s:9:\"firstname\";s:8:\"Hartmann\";s:8:\"lastname\";s:10:\"Stragenegg\";s:11:\"companyname\";s:19:\"Fighting Club Meran\";s:7:\"address\";s:15:\"O. Huberstr. 31\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:6:\"Merano\";s:12:\"emailaddress\";s:20:\"hartmann90@libero.it\";s:12:\"mobilenumber\";s:10:\"3382445844\";s:13:\"websitedomain\";s:26:\"http://www.fightingclub.it\";s:9:\"employees\";s:1:\"6\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"a0c7245fce02558eecac6e08426be193\";}','a:1:{i:0;s:128:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/2096315102/1645557620_Screenshot_20210922-1948012.jpg\";}','MTY0NTU1NzYyMDIxMjEwNg==','151.34.82.234','','1645557620','','2022-03-01 14:07:51'),(213,106,1,'a:14:{s:9:\"firstname\";s:5:\"Georg\";s:8:\"lastname\";s:8:\"Kirchler\";s:11:\"companyname\";s:13:\"Top - Ofenbau\";s:7:\"address\";s:22:\"St. Peter - Hollechn 5\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:7:\"Ahrntal\";s:12:\"emailaddress\";s:20:\"info@top-ofenbau.com\";s:12:\"mobilenumber\";s:10:\"3465006630\";s:13:\"websitedomain\";s:22:\"http://top-ofenbau.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"9c8840d9b81e02333b3e9771d2029c36\";}','a:1:{i:0;s:119:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1629512192/1645557802_Top-Ofenbau-a-Logo.jpg\";}','MTY0NTU1NzgwMjIxMzEwNg==','195.254.236.97','195.254.236.97','1645557802','1645557973','2022-03-01 14:07:51'),(214,106,1,'a:14:{s:9:\"firstname\";s:6:\"Hubert\";s:8:\"lastname\";s:5:\"Egger\";s:11:\"companyname\";s:11:\"OMega fisch\";s:7:\"address\";s:9:\"Köfele 1\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:13:\"Sankt Pankraz\";s:12:\"emailaddress\";s:21:\"hubert.egger@alice.it\";s:12:\"mobilenumber\";s:10:\"3498823918\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU1NzgxMjIxNDEwNg==','212.46.183.156','185.214.200.203','1645557812','1645611081','2022-03-01 14:07:51'),(215,106,1,'a:14:{s:9:\"firstname\";s:17:\"Egon und Philipp \";s:8:\"lastname\";s:5:\"Heiss\";s:11:\"companyname\";s:15:\"Cosmo Life GmbH\";s:7:\"address\";s:16:\"Europastraße 13\";s:8:\"postcode\";s:5:\"39052\";s:4:\"city\";s:7:\"Kaltern\";s:12:\"emailaddress\";s:17:\"info@cosmolife.it\";s:12:\"mobilenumber\";s:10:\"3357373315\";s:13:\"websitedomain\";s:23:\"http://www.cosmolife.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU2MDAzMzIxNTEwNg==','109.117.51.37','109.117.51.37','1645560033','1645560943','2022-03-01 14:07:51'),(216,106,1,'a:14:{s:9:\"firstname\";s:8:\"Michaela\";s:8:\"lastname\";s:4:\"Auer\";s:11:\"companyname\";s:34:\"Nähstube Sternenstaub Accessories\";s:7:\"address\";s:16:\"Gebirgsjäger 17\";s:8:\"postcode\";s:5:\"39031\";s:4:\"city\";s:7:\"Brunico\";s:12:\"emailaddress\";s:21:\"michaelaauer@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3480447020\";s:13:\"websitedomain\";s:26:\"http://www.sternenstaub.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU2MTA3NzIxNjEwNg==','5.90.203.58','5.90.203.58','1645561077','1645561556','2022-03-01 14:07:51'),(217,106,0,'a:14:{s:9:\"firstname\";s:5:\"Karl \";s:8:\"lastname\";s:8:\"Leitgeb \";s:11:\"companyname\";s:10:\"Weidnerhof\";s:7:\"address\";s:17:\"Ammererstraße 21\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:18:\"Antholz Mittertal \";s:12:\"emailaddress\";s:28:\"weidnerhof.antholz@gmail.com\";s:12:\"mobilenumber\";s:10:\"3477778984\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU2MjAzOTIxNzEwNg==','78.6.127.214','','1645562039','','2022-03-01 14:07:51'),(218,106,1,'a:14:{s:9:\"firstname\";s:9:\"Matthias \";s:8:\"lastname\";s:6:\"Mulser\";s:11:\"companyname\";s:14:\"JuMa Biomasse \";s:7:\"address\";s:12:\"St.Oswald 23\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Kastelruth\";s:12:\"emailaddress\";s:16:\"matthias@juma.bz\";s:12:\"mobilenumber\";s:10:\"3357059265\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"8\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU2MjIzNDIxODEwNg==','128.116.212.235','128.116.212.235','1645562234','1645594041','2022-03-01 14:07:51'),(219,106,0,'a:14:{s:9:\"firstname\";s:7:\"Hermann\";s:8:\"lastname\";s:6:\"Andres\";s:11:\"companyname\";s:9:\"Gösslhof\";s:7:\"address\";s:11:\"Mendelweg 7\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:4:\"Lana\";s:12:\"emailaddress\";s:26:\"hermann-andres@hotmail.com\";s:12:\"mobilenumber\";s:10:\"3388249936\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU2MzUwNjIxOTEwNg==','151.68.156.149','','1645563506','','2022-03-01 14:07:51'),(220,106,1,'a:14:{s:9:\"firstname\";s:8:\"Bernhard\";s:8:\"lastname\";s:8:\"Schuster\";s:11:\"companyname\";s:17:\"Bernhard Schuster\";s:7:\"address\";s:17:\"Schiesstandweg 37\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Percha\";s:12:\"emailaddress\";s:26:\"info@bernhard-schuster.com\";s:12:\"mobilenumber\";s:10:\"3487054468\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU2NDM0NjIyMDEwNg==','31.207.101.11','31.207.101.11','1645564346','1645595329','2022-03-01 14:07:51'),(221,106,1,'a:14:{s:9:\"firstname\";s:4:\"Alma\";s:8:\"lastname\";s:8:\"Agreiter\";s:11:\"companyname\";s:22:\"Ciasa Tlara Apartments\";s:7:\"address\";s:24:\"Strada AlPlan dessora 24\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:21:\"St. Vigil in Enneberg\";s:12:\"emailaddress\";s:29:\"alma.agreiter.tlara@gmail.com\";s:12:\"mobilenumber\";s:10:\"3480339636\";s:13:\"websitedomain\";s:25:\"http://www.ciasa-tlara.it\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU2NTg3MjIyMTEwNg==','79.17.152.111','79.17.152.111','1645565872','1645566316','2022-03-01 14:07:51'),(222,106,1,'a:14:{s:9:\"firstname\";s:8:\"Angelika\";s:8:\"lastname\";s:7:\"Klammer\";s:11:\"companyname\";s:29:\"Psychologin/Psychotherapeutin\";s:7:\"address\";s:15:\"S.Heinrichstr.5\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:26:\"klammer.angelika@gmail.com\";s:12:\"mobilenumber\";s:10:\"3397939943\";s:13:\"websitedomain\";s:30:\"http://www.angelika.klammer.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU2NzI1NTIyMjEwNg==','101.56.211.33','2.198.44.101','1645567255','1645604181','2022-03-01 14:07:51'),(223,106,1,'a:14:{s:9:\"firstname\";s:9:\"Matthias \";s:8:\"lastname\";s:7:\"Mulser \";s:11:\"companyname\";s:14:\"JuMa Biomasse \";s:7:\"address\";s:12:\"St.Oswald 23\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Kastelruth\";s:12:\"emailaddress\";s:16:\"matthias@juma.bz\";s:12:\"mobilenumber\";s:10:\"3357059265\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"8\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU5NDIxNTIyMzEwNg==','128.116.212.235','128.116.212.235','1645594215','1645594334','2022-03-01 14:07:51'),(224,106,0,'a:14:{s:9:\"firstname\";s:7:\"Manfred\";s:8:\"lastname\";s:5:\"Hofer\";s:11:\"companyname\";s:18:\"Hofer & Zelger OHG\";s:7:\"address\";s:10:\"Angerweg 1\";s:8:\"postcode\";s:6:\"39042 \";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:20:\"info@hofer-zelger.it\";s:12:\"mobilenumber\";s:10:\"3356157100\";s:13:\"websitedomain\";s:26:\"http://www.hofer-zelger.it\";s:9:\"employees\";s:2:\"11\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU5NDY1MDIyNDEwNg==','37.176.60.124','','1645594650','','2022-03-01 14:07:51'),(225,106,1,'a:14:{s:9:\"firstname\";s:7:\"Hubert \";s:8:\"lastname\";s:8:\"Stockner\";s:11:\"companyname\";s:36:\"Der Genussbunker des Hubert Stockner\";s:7:\"address\";s:12:\"St. Anton 15\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:11:\"Feldthurns \";s:12:\"emailaddress\";s:20:\"info@genussbunker.it\";s:12:\"mobilenumber\";s:10:\"3478447653\";s:13:\"websitedomain\";s:26:\"http://www.genussbunker.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU5NjE2MDIyNTEwNg==','195.254.237.21','195.254.237.21','1645596160','1645596237','2022-03-01 14:07:51'),(226,106,1,'a:14:{s:9:\"firstname\";s:7:\"Roland \";s:8:\"lastname\";s:13:\"Fuchsbrugger \";s:11:\"companyname\";s:16:\"Gasthof Brugghof\";s:7:\"address\";s:9:\"Badlweg 1\";s:8:\"postcode\";s:5:\"39032\";s:4:\"city\";s:15:\"Sand in Taufers\";s:12:\"emailaddress\";s:18:\"rollofux@gmail.com\";s:12:\"mobilenumber\";s:10:\"3482611612\";s:13:\"websitedomain\";s:23:\"http://www.brugghof.com\";s:9:\"employees\";s:1:\"7\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU5NjM4MzIyNjEwNg==','185.216.187.168','185.216.187.168','1645596383','1645608259','2022-03-01 14:07:51'),(227,106,1,'a:14:{s:9:\"firstname\";s:6:\"Hubert\";s:8:\"lastname\";s:8:\"Stockner\";s:11:\"companyname\";s:36:\"Der Genussbunker des Hubert Stockner\";s:7:\"address\";s:11:\"St.Anton 15\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:11:\"Feldthurns \";s:12:\"emailaddress\";s:20:\"info@genussbunker.it\";s:12:\"mobilenumber\";s:10:\"3478447653\";s:13:\"websitedomain\";s:26:\"http://www.genussbunker.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU5NjQxOTIyNzEwNg==','195.254.237.21','195.254.237.21','1645596419','1645596441','2022-03-01 14:07:51'),(228,106,1,'a:14:{s:9:\"firstname\";s:6:\"Isidor\";s:8:\"lastname\";s:9:\"oberrauch\";s:11:\"companyname\";s:14:\"Randötsch Hof\";s:7:\"address\";s:16:\"In der Flauge 80\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"brixen\";s:12:\"emailaddress\";s:24:\"isidoroberrauch@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3492777322\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU5NjQzNTIyODEwNg==','151.68.18.185','151.68.18.185','1645596435','1645596483','2022-03-01 14:07:51'),(229,106,0,'a:14:{s:9:\"firstname\";s:7:\"Manfred\";s:8:\"lastname\";s:5:\"Hofer\";s:11:\"companyname\";s:18:\"Hofer & Zelger OHG\";s:7:\"address\";s:10:\"Angerweg 1\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:20:\"info@hofer-zelger.it\";s:12:\"mobilenumber\";s:10:\"3356157100\";s:13:\"websitedomain\";s:26:\"http://www.hofer-zelger.it\";s:9:\"employees\";s:2:\"11\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTU5OTEzNDIyOTEwNg==','109.117.49.114','','1645599134','','2022-03-01 14:07:51'),(230,106,1,'a:14:{s:9:\"firstname\";s:9:\"Alexandra\";s:8:\"lastname\";s:7:\"Stadler\";s:11:\"companyname\";s:6:\"GYM2do\";s:7:\"address\";s:18:\"Katerseestraße 74\";s:8:\"postcode\";s:5:\"39056\";s:4:\"city\";s:11:\"Welschnofen\";s:12:\"emailaddress\";s:14:\"alex@gym2do.it\";s:12:\"mobilenumber\";s:11:\"347-8984096\";s:13:\"websitedomain\";s:20:\"http://www.gym2do.it\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYwMDE5NDIzMDEwNg==','185.216.185.171','185.216.185.171','1645600194','1645610475','2022-03-01 14:07:51'),(231,106,0,'a:14:{s:9:\"firstname\";s:7:\"Ingrid \";s:8:\"lastname\";s:11:\"Pardatscher\";s:11:\"companyname\";s:19:\"Gasthof Fichtenhof \";s:7:\"address\";s:29:\"Pichl 18 / Gfrill bei Salurn \";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:18:\"Gfrill bei Salurn \";s:12:\"emailaddress\";s:18:\"info@fichtenhof.it\";s:12:\"mobilenumber\";s:10:\"3383028653\";s:13:\"websitedomain\";s:24:\"http://www.fichtenhof.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYwMTAyMTIzMTEwNg==','185.4.193.172','','1645601021','','2022-03-01 14:07:51'),(232,106,1,'a:14:{s:9:\"firstname\";s:7:\"Dominik\";s:8:\"lastname\";s:5:\"Amort\";s:11:\"companyname\";s:23:\"Creative Art Company KG\";s:7:\"address\";s:9:\"Perggis 1\";s:8:\"postcode\";s:5:\"39037\";s:4:\"city\";s:8:\"Rodeneck\";s:12:\"emailaddress\";s:18:\"info@waldzeit.shop\";s:12:\"mobilenumber\";s:10:\"3474670401\";s:13:\"websitedomain\";s:24:\"http://www.waldzeit.shop\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"3dccc2246f167a0d2f0af33f30e6453f\";}','a:1:{i:0;s:110:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0264578748/1645601205_Logo-2020.jpg\";}','MTY0NTYwMTIwNTIzMjEwNg==','195.254.249.233','195.254.249.233','1645601205','1645601584','2022-03-01 14:07:51'),(233,106,1,'a:14:{s:9:\"firstname\";s:6:\"Oswald\";s:8:\"lastname\";s:5:\"Amort\";s:11:\"companyname\";s:28:\"Holzschnitzerei Oswald Amort\";s:7:\"address\";s:9:\"Perggis 1\";s:8:\"postcode\";s:5:\"39037\";s:4:\"city\";s:8:\"Rodeneck\";s:12:\"emailaddress\";s:14:\"info@krippe.it\";s:12:\"mobilenumber\";s:10:\"3407132170\";s:13:\"websitedomain\";s:20:\"http://www.krippe.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"77f84c7e2ac5dcc8c64beb674363bfe0\";}','a:1:{i:0;s:105:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1165332276/1645601330_logo.jpg\";}','MTY0NTYwMTMzMDIzMzEwNg==','195.254.249.233','195.254.249.233','1645601330','1645601576','2022-03-01 14:07:51'),(234,106,1,'a:14:{s:9:\"firstname\";s:8:\"Angelika\";s:8:\"lastname\";s:7:\"Klammer\";s:11:\"companyname\";s:30:\"Psychololgin/Psychotherapeutin\";s:7:\"address\";s:15:\"S.Heinrichstr.5\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:26:\"klammer.angelika@gmail.com\";s:12:\"mobilenumber\";s:10:\"3397939943\";s:13:\"websitedomain\";s:29:\"http://www.angelikaklammer.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYwNDM0ODIzNDEwNg==','2.198.44.101','101.56.211.71','1645604348','1645606496','2022-03-01 14:07:51'),(235,106,0,'a:14:{s:9:\"firstname\";s:7:\"Thomas \";s:8:\"lastname\";s:10:\"Oberhofer \";s:11:\"companyname\";s:17:\"Thomas Oberhofer \";s:7:\"address\";s:11:\"Kapellweg 5\";s:8:\"postcode\";s:5:\"39021\";s:4:\"city\";s:6:\"Latsch\";s:12:\"emailaddress\";s:20:\"t.pfitscher@alice.it\";s:12:\"mobilenumber\";s:10:\"3358275001\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYwNDYwOTIzNTEwNg==','212.46.186.85','','1645604609','','2022-03-01 14:07:51'),(236,106,1,'a:14:{s:9:\"firstname\";s:9:\"Schatzer \";s:8:\"lastname\";s:9:\"Günther \";s:11:\"companyname\";s:19:\"Residenz Erschbaum \";s:7:\"address\";s:20:\"Bad Bergfallweg Nr 2\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:6:\"Olang \";s:12:\"emailaddress\";s:18:\"info@erschbaum.com\";s:12:\"mobilenumber\";s:10:\"3398072800\";s:13:\"websitedomain\";s:24:\"http://www.erschbaum.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:2:{i:0;s:11:\"Gastgewerbe\";i:1;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYwODYzOTIzNjEwNg==','31.207.125.3','31.207.125.3','1645608639','1645608671','2022-03-01 14:07:51'),(237,106,1,'a:14:{s:9:\"firstname\";s:6:\"Hubert\";s:8:\"lastname\";s:8:\"Stockner\";s:11:\"companyname\";s:16:\"Der Genussbunker\";s:7:\"address\";s:12:\"St. Anton 15\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Feldthurns\";s:12:\"emailaddress\";s:20:\"info@genussbunker.it\";s:12:\"mobilenumber\";s:10:\"3478447653\";s:13:\"websitedomain\";s:26:\"http://www.genussbunker.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"566fc3522bc155424c8ca2f671ac31bc\";}','a:1:{i:0;s:113:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0681636953/1645614724_genussbunker.jpg\";}','MTY0NTYxNDcyNDIzNzEwNg==','2.198.14.10','2.198.14.10','1645614724','1645614769','2022-03-01 14:07:51'),(238,106,1,'a:14:{s:9:\"firstname\";s:6:\"Klaus \";s:8:\"lastname\";s:11:\"Wellenzohn \";s:11:\"companyname\";s:11:\"Plauserhof \";s:7:\"address\";s:27:\"Kortsch alte landstraße 32\";s:8:\"postcode\";s:5:\"39028\";s:4:\"city\";s:11:\"Schlanders \";s:12:\"emailaddress\";s:25:\"klauswellenzohn@gmail.com\";s:12:\"mobilenumber\";s:10:\"3397834096\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYxNDg0MDIzODEwNg==','5.90.71.139','5.90.71.139','1645614840','1645614892','2022-03-01 14:07:51'),(239,106,1,'a:14:{s:9:\"firstname\";s:5:\"Elnar\";s:8:\"lastname\";s:7:\"Steiner\";s:11:\"companyname\";s:17:\"Este Maschinenbau\";s:7:\"address\";s:16:\"St. Michael 53/4\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Kastelruth\";s:12:\"emailaddress\";s:12:\"Info@este.bz\";s:12:\"mobilenumber\";s:10:\"3333709227\";s:13:\"websitedomain\";s:18:\"http://www.este.bz\";s:9:\"employees\";s:1:\"4\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYxNTMwMzIzOTEwNg==','5.90.196.218','84.33.64.136','1645615303','1645617004','2022-03-01 14:07:51'),(240,106,1,'a:14:{s:9:\"firstname\";s:8:\"Rosmarie\";s:8:\"lastname\";s:7:\"Dignös\";s:11:\"companyname\";s:7:\"Koflhof\";s:7:\"address\";s:19:\"Franz Schöpf Weg 7\";s:8:\"postcode\";s:5:\"39057\";s:4:\"city\";s:29:\"APPIANO SULLA STRADA DEL VINO\";s:12:\"emailaddress\";s:17:\"rdignoes@yahoo.it\";s:12:\"mobilenumber\";s:10:\"3338862196\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYxNzAwODI0MDEwNg==','5.90.206.102','5.90.206.102','1645617008','1645617032','2022-03-01 14:07:51'),(241,106,0,'a:14:{s:9:\"firstname\";s:6:\"Konrad\";s:8:\"lastname\";s:6:\"Steger\";s:11:\"companyname\";s:25:\"Pension.steger@gmail.com \";s:7:\"address\";s:7:\"Ahrn 35\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:17:\"Ahrntal St.Johann\";s:12:\"emailaddress\";s:24:\"pension.steger@gmail.com\";s:12:\"mobilenumber\";s:10:\"3482532691\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYyMTY2ODI0MTEwNg==','5.90.194.141','','1645621668','','2022-03-01 14:07:51'),(242,106,1,'a:14:{s:9:\"firstname\";s:8:\"Patrizia\";s:8:\"lastname\";s:11:\"Pardatscher\";s:11:\"companyname\";s:21:\"Residence Obermoarhof\";s:7:\"address\";s:12:\"Mairgasse, 3\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:9:\"Obervintl\";s:12:\"emailaddress\";s:20:\"info@obermoarhof.com\";s:12:\"mobilenumber\";s:10:\"3713591552\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYyMTgxOTI0MjEwNg==','146.241.57.118','146.241.57.118','1645621819','1645622123','2022-03-01 14:07:51'),(243,106,1,'a:14:{s:9:\"firstname\";s:6:\"Helmut\";s:8:\"lastname\";s:6:\"Lösch\";s:11:\"companyname\";s:16:\"Café S`I-Tipftl\";s:7:\"address\";s:12:\"Färberweg 1\";s:8:\"postcode\";s:5:\"39025\";s:4:\"city\";s:7:\"Naturno\";s:12:\"emailaddress\";s:23:\"loesch.helmut@gmail.com\";s:12:\"mobilenumber\";s:10:\"3356845207\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYyNTE2ODI0MzEwNg==','84.33.65.14','84.33.65.14','1645625168','1645626447','2022-03-01 14:07:51'),(244,106,0,'a:14:{s:9:\"firstname\";s:5:\"Erich\";s:8:\"lastname\";s:6:\"Karbon\";s:11:\"companyname\";s:15:\"Erich Karbon KG\";s:7:\"address\";s:14:\"Grondlboden 29\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:10:\"Kastelruth\";s:12:\"emailaddress\";s:19:\"info@karbonerich.it\";s:12:\"mobilenumber\";s:11:\"335 5242244\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYzMDcyMTI0NDEwNg==','212.46.184.215','','1645630721','','2022-03-01 14:07:51'),(245,106,1,'a:14:{s:9:\"firstname\";s:9:\"Christian\";s:8:\"lastname\";s:11:\"Steinhauser\";s:11:\"companyname\";s:12:\"Maskero Gmbh\";s:7:\"address\";s:15:\"Pfarrhofstr. 4F\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:20:\"christian@maskero.it\";s:12:\"mobilenumber\";s:10:\"3356438948\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"a08d468ead96fcff0aa5275ff62ad727\";}','a:1:{i:0;s:113:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1003848755/1645631629_maskero_logo.jpg\";}','MTY0NTYzMTYyOTI0NTEwNg==','5.90.204.194','5.90.204.194','1645631629','1645631661','2022-03-01 14:07:51'),(246,106,1,'a:14:{s:9:\"firstname\";s:6:\"Paola \";s:8:\"lastname\";s:7:\"Schenk \";s:11:\"companyname\";s:11:\"Thaler1333 \";s:7:\"address\";s:11:\"Am Gries 22\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:5:\"Lana \";s:12:\"emailaddress\";s:21:\"paola.schenk@alice.it\";s:12:\"mobilenumber\";s:10:\"3382656047\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYzMzc4ODI0NjEwNg==','151.55.191.213','151.55.191.213','1645633788','1645643531','2022-03-01 14:07:51'),(247,106,1,'a:14:{s:9:\"firstname\";s:7:\"Patrick\";s:8:\"lastname\";s:9:\"Lomsdalen\";s:11:\"companyname\";s:7:\"PAMIBAR\";s:7:\"address\";s:15:\"Vinschgaustr. 3\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:19:\"minibar@pamibar.com\";s:12:\"mobilenumber\";s:10:\"3355707818\";s:13:\"websitedomain\";s:22:\"http://www.pamibar.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"294c7830906ed3f893ba0002ff25e548\";}','a:1:{i:0;s:123:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0554271994/1645635265_PAMIBAR-Hotel-Minibars.png\";}','MTY0NTYzNTI2NTI0NzEwNg==','188.14.181.227','188.14.181.227','1645635265','1645688970','2022-03-01 14:07:51'),(248,106,1,'a:14:{s:9:\"firstname\";s:7:\"Manfred\";s:8:\"lastname\";s:8:\"Staffler\";s:11:\"companyname\";s:24:\"Elektro Staffler Manfred\";s:7:\"address\";s:13:\"Tusengrabl 13\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:11:\"St. Pankraz\";s:12:\"emailaddress\";s:16:\"info@staffler.it\";s:12:\"mobilenumber\";s:10:\"3472424103\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYzNTM3MDI0ODEwNg==','212.46.183.156','212.46.183.156','1645635370','1645635455','2022-03-01 14:07:51'),(249,106,1,'a:14:{s:9:\"firstname\";s:5:\"Luigi\";s:8:\"lastname\";s:8:\"Spolsino\";s:11:\"companyname\";s:15:\"Spolsino Luigi \";s:7:\"address\";s:18:\"Via Stazione 55 C \";s:8:\"postcode\";s:5:\"39018\";s:4:\"city\";s:11:\"Settequerce\";s:12:\"emailaddress\";s:23:\"spolsinoluigi@gmail.com\";s:12:\"mobilenumber\";s:10:\"3397576393\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:2:{i:0;s:6:\"Handel\";i:1;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYzNTk0NTI0OTEwNg==','151.82.87.253','151.82.87.253','1645635945','1645636083','2022-03-01 14:07:51'),(250,106,1,'a:14:{s:9:\"firstname\";s:7:\"Barbara\";s:8:\"lastname\";s:6:\"Illmer\";s:11:\"companyname\";s:42:\"Garni Stübele der Illmer Barbara & Co OHG\";s:7:\"address\";s:16:\"Mühlangerweg 23\";s:8:\"postcode\";s:5:\"39019\";s:4:\"city\";s:5:\"Tirol\";s:12:\"emailaddress\";s:20:\"stuebele@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3405296889\";s:13:\"websitedomain\";s:34:\"https://www.stuebele-dorftirol.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"21914ce92e541d78998a29477a4cc700\";}','a:1:{i:0;s:109:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1321008981/1645636737_Logo-neu.jpg\";}','MTY0NTYzNjczNzI1MDEwNg==','89.107.111.74','89.107.111.74','1645636737','1645636761','2022-03-01 14:07:51'),(251,106,1,'a:14:{s:9:\"firstname\";s:10:\"Peter paul\";s:8:\"lastname\";s:13:\"Mutschlechner\";s:11:\"companyname\";s:24:\"Transporte Mutschlechner\";s:7:\"address\";s:19:\"Hinterbergstrasse 4\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:5:\"Olang\";s:12:\"emailaddress\";s:35:\"transportemutschlechner@rolmail.net\";s:12:\"mobilenumber\";s:10:\"3356142112\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYzODUwNDI1MTEwNg==','5.179.172.103','5.179.172.103','1645638504','1645640335','2022-03-01 14:07:51'),(252,106,1,'a:14:{s:9:\"firstname\";s:7:\"Sabrina\";s:8:\"lastname\";s:5:\"Deval\";s:11:\"companyname\";s:13:\"Sabrina Deval\";s:7:\"address\";s:9:\"Surega 10\";s:8:\"postcode\";s:5:\"39036\";s:4:\"city\";s:5:\"Abtei\";s:12:\"emailaddress\";s:24:\"sabrinadeval79@gmail.com\";s:12:\"mobilenumber\";s:10:\"3486046449\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:2:{i:0;s:11:\"Gastgewerbe\";i:1;s:14:\"Landwirtschaft\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTYzOTAxMjI1MjEwNg==','185.194.202.168','185.194.202.168','1645639012','1645643908','2022-03-01 14:07:51'),(253,106,1,'a:14:{s:9:\"firstname\";s:10:\"Hans Peter\";s:8:\"lastname\";s:8:\"Ladurner\";s:11:\"companyname\";s:35:\"Hans Peter Ladurner Garni Spiss Hof\";s:7:\"address\";s:12:\"Leitenweg 12\";s:8:\"postcode\";s:5:\"39022\";s:4:\"city\";s:6:\"Algund\";s:12:\"emailaddress\";s:17:\"info@spisshof.com\";s:12:\"mobilenumber\";s:13:\"+390473448654\";s:13:\"websitedomain\";s:23:\"http://www.spisshof.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTY0MDIzMzI1MzEwNg==','84.33.188.82','84.33.188.82','1645640233','1645640395','2022-03-01 14:07:51'),(254,106,0,'a:14:{s:9:\"firstname\";s:7:\"Walter \";s:8:\"lastname\";s:8:\"Gummerer\";s:11:\"companyname\";s:11:\"Target GmbH\";s:7:\"address\";s:16:\"Sonnenstrasse 34\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:7:\"Andrian\";s:12:\"emailaddress\";s:17:\"waanmob@libero.it\";s:12:\"mobilenumber\";s:10:\"3401038710\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:2:{i:0;s:13:\"Dienstleister\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTY0MjE4MzI1NDEwNg==','5.90.65.120','','1645642183','','2022-03-01 14:07:51'),(255,106,0,'a:14:{s:9:\"firstname\";s:6:\"Walter\";s:8:\"lastname\";s:9:\"Gummerer \";s:11:\"companyname\";s:12:\"Waan- Mobill\";s:7:\"address\";s:14:\"Sonnenstrasse \";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:7:\"Andrian\";s:12:\"emailaddress\";s:17:\"waanmob@libero.it\";s:12:\"mobilenumber\";s:10:\"3401038710\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTY0MjMzMzI1NTEwNg==','5.90.65.120','','1645642333','','2022-03-01 14:07:51'),(256,106,1,'a:14:{s:9:\"firstname\";s:6:\"Hubert\";s:8:\"lastname\";s:8:\"Stockner\";s:11:\"companyname\";s:17:\"Der Genussbunker \";s:7:\"address\";s:14:\"Sankt Anton 15\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:11:\"Feldthurns \";s:12:\"emailaddress\";s:20:\"info@genussbunker.it\";s:12:\"mobilenumber\";s:10:\"3478447653\";s:13:\"websitedomain\";s:26:\"http://www.genussbunker.it\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTY0NDc2MzI1NjEwNg==','195.254.237.21','195.254.237.21','1645644763','1645644796','2022-03-01 14:07:51'),(257,106,0,'a:14:{s:9:\"firstname\";s:6:\"Harald\";s:8:\"lastname\";s:8:\"Ladurner\";s:11:\"companyname\";s:34:\"Freelance - passion for technology\";s:7:\"address\";s:16:\"Leitergasse, 11B\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:6:\"Merano\";s:12:\"emailaddress\";s:27:\"harald.ladurner@outlook.com\";s:12:\"mobilenumber\";s:10:\"3450655553\";s:13:\"websitedomain\";s:27:\"http://www.freelance-web.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"69aedf30748a38e2f34ec612f2178590\";}','a:1:{i:0;s:141:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1374030083/1645650220_logo_mit_Schriftzug_Freigestellt_700x114.png\";}','MTY0NTY1MDIyMDI1NzEwNg==','151.84.170.194','','1645650220','','2022-03-01 14:07:51'),(258,106,1,'a:14:{s:9:\"firstname\";s:5:\"Alois\";s:8:\"lastname\";s:6:\"Thaler\";s:11:\"companyname\";s:10:\"sarnthaler\";s:7:\"address\";s:12:\"Enge Gasse 3\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:18:\"info@sarnthaler.it\";s:12:\"mobilenumber\";s:15:\"+49393475950495\";s:13:\"websitedomain\";s:24:\"http://www.sarnthaler.it\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTY1MDU1MjI1ODEwNg==','37.116.76.226','37.116.76.226','1645650552','1645691401','2022-03-01 14:07:51'),(259,106,1,'a:14:{s:9:\"firstname\";s:7:\"Ulrich \";s:8:\"lastname\";s:6:\"Haller\";s:11:\"companyname\";s:6:\"Eishof\";s:7:\"address\";s:17:\"Jaufenstrasse 116\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:7:\"Riffian\";s:12:\"emailaddress\";s:15:\"info@eishof.com\";s:12:\"mobilenumber\";s:10:\"3467323773\";s:13:\"websitedomain\";s:21:\"http://www.eishof.com\";s:9:\"employees\";s:1:\"8\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTY1MTUyODI1OTEwNg==','62.211.136.229','87.0.21.24','1645651528','1645653742','2022-03-01 14:07:51'),(260,106,1,'a:14:{s:9:\"firstname\";s:8:\"GÜNTHER\";s:8:\"lastname\";s:5:\"BIASI\";s:11:\"companyname\";s:17:\"Hofschank Lexnhof\";s:7:\"address\";s:12:\"Glenerweg 24\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Montan\";s:12:\"emailaddress\";s:15:\"info@lexnhof.it\";s:12:\"mobilenumber\";s:13:\"+393356816889\";s:13:\"websitedomain\";s:17:\"http://lexnhof.it\";s:9:\"employees\";s:1:\"3\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTY4MTEyNTI2MDEwNg==','95.249.110.6','95.249.110.6','1645681125','1645691342','2022-03-01 14:07:51'),(261,106,0,'a:14:{s:9:\"firstname\";s:8:\"Sieginde\";s:8:\"lastname\";s:11:\"Steinhauser\";s:11:\"companyname\";s:10:\"Homeoffice\";s:7:\"address\";s:14:\"Kirchdorf 79 m\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:7:\"Prettau\";s:12:\"emailaddress\";s:28:\"sigisteinhauser@gmail.comcom\";s:12:\"mobilenumber\";s:10:\"3474682177\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTY4MjQzNTI2MTEwNg==','5.11.111.173','','1645682435','','2022-03-01 14:07:51'),(262,106,1,'a:14:{s:9:\"firstname\";s:6:\"Angela\";s:8:\"lastname\";s:14:\"Obergasteiger \";s:11:\"companyname\";s:17:\"Pasticceria ELVI \";s:7:\"address\";s:13:\"San Leonardo \";s:8:\"postcode\";s:5:\"39036\";s:4:\"city\";s:5:\"Badia\";s:12:\"emailaddress\";s:29:\"obergasteigerangela@gmail.com\";s:12:\"mobilenumber\";s:10:\"3383981232\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTY4OTMyMTI2MjEwNg==','5.90.194.64','5.90.194.64','1645689321','1645694775','2022-03-01 14:07:51'),(263,106,0,'a:14:{s:9:\"firstname\";s:5:\"Alois\";s:8:\"lastname\";s:6:\"Thaler\";s:11:\"companyname\";s:10:\"Sarnthaler\";s:7:\"address\";s:12:\"Enge Gasse 3\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:17:\"info@santhaler.it\";s:12:\"mobilenumber\";s:14:\"+39 3475950495\";s:13:\"websitedomain\";s:24:\"http://www.sarnthaler.it\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"2dc7251102584ba96836ed3b6f6505c6\";}','a:1:{i:0;s:132:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0114263763/1645691723_Logo-SarnThaler-blattgold-gross.jpg\";}','MTY0NTY5MTcyMzI2MzEwNg==','37.116.76.226','','1645691723','','2022-03-01 14:07:51'),(264,106,0,'a:14:{s:9:\"firstname\";s:7:\"Joachim\";s:8:\"lastname\";s:7:\"Steiner\";s:11:\"companyname\";s:15:\"Steiner Joachim\";s:7:\"address\";s:13:\"St.Peter 19/c\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:5:\"LAJEN\";s:12:\"emailaddress\";s:20:\"info@steinerholz.com\";s:12:\"mobilenumber\";s:10:\"3382531529\";s:13:\"websitedomain\";s:26:\"http://www.steinerholz.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTY5MzA2NDI2NDEwNg==','95.242.184.104','','1645693064','','2022-03-01 14:07:51'),(265,106,1,'a:14:{s:9:\"firstname\";s:6:\"Angela\";s:8:\"lastname\";s:14:\"Obergasteiger \";s:11:\"companyname\";s:17:\"Pasticceria Elvi \";s:7:\"address\";s:10:\"San LINERT\";s:8:\"postcode\";s:5:\"39036\";s:4:\"city\";s:5:\"Badia\";s:12:\"emailaddress\";s:29:\"obergasteigerangela@gmail.com\";s:12:\"mobilenumber\";s:10:\"3383981232\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTY5NDkyODI2NTEwNg==','5.90.194.64','5.90.203.99','1645694928','1645704832','2022-03-01 14:07:51'),(266,106,1,'a:14:{s:9:\"firstname\";s:10:\"Alexander \";s:8:\"lastname\";s:11:\"Schechinger\";s:11:\"companyname\";s:21:\"XanderLuchsFotografie\";s:7:\"address\";s:22:\"St. Valentinstraße, 9\";s:8:\"postcode\";s:5:\"39012\";s:4:\"city\";s:5:\"Meran\";s:12:\"emailaddress\";s:33:\"kontakt@xanderluchsfotografie.com\";s:12:\"mobilenumber\";s:10:\"3714900610\";s:13:\"websitedomain\";s:36:\"http://www.xanderluchsfotografie.com\";s:9:\"employees\";s:1:\"0\";s:7:\"branche\";a:3:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";i:2;s:7:\"Anderes\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTcwMjIwNDI2NjEwNg==','151.36.118.68','151.34.124.186','1645702204','1645715592','2022-03-01 14:07:51'),(267,106,1,'a:14:{s:9:\"firstname\";s:6:\"Martin\";s:8:\"lastname\";s:5:\"Bauer\";s:11:\"companyname\";s:33:\"Mietwagen mit Fahrer Bauer Martin\";s:7:\"address\";s:13:\"Plesdinaz 119\";s:8:\"postcode\";s:5:\"39047\";s:4:\"city\";s:13:\"St. Christina\";s:12:\"emailaddress\";s:20:\"bike@taxigardena.com\";s:12:\"mobilenumber\";s:10:\"3355606141\";s:13:\"websitedomain\";s:26:\"http://www.taxigardena.com\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTcwMzk1OTI2NzEwNg==','151.68.4.126','151.68.4.126','1645703959','1645705240','2022-03-01 14:07:51'),(268,106,0,'a:14:{s:9:\"firstname\";s:7:\"Arturo \";s:8:\"lastname\";s:9:\"Miribung \";s:11:\"companyname\";s:15:\"Pasticcere ELVI\";s:7:\"address\";s:11:\"S.Leonhard \";s:8:\"postcode\";s:5:\"39036\";s:4:\"city\";s:5:\"Badia\";s:12:\"emailaddress\";s:25:\"miribung.arturo@gmail.com\";s:12:\"mobilenumber\";s:10:\"3805136868\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"2\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTcwNDk4MzI2ODEwNg==','5.90.203.99','','1645704983','','2022-03-01 14:07:51'),(269,106,0,'a:14:{s:9:\"firstname\";s:5:\"Ilse \";s:8:\"lastname\";s:5:\"Hofer\";s:11:\"companyname\";s:10:\"Morx Puite\";s:7:\"address\";s:6:\"Stuls \";s:8:\"postcode\";s:5:\"39013\";s:4:\"city\";s:13:\"Moos Passeier\";s:12:\"emailaddress\";s:21:\"puite.stuls@gmail.com\";s:12:\"mobilenumber\";s:10:\"3498051982\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTcwNjExMTI2OTEwNg==','185.144.74.226','','1645706111','','2022-03-01 14:07:51'),(270,106,1,'a:14:{s:9:\"firstname\";s:7:\"Andreas\";s:8:\"lastname\";s:10:\"Mahlknecht\";s:11:\"companyname\";s:37:\"SonnleitenK.G. des Mahlknecht Andreas\";s:7:\"address\";s:19:\"Peter Anich Weg, 20\";s:8:\"postcode\";s:5:\"39053\";s:4:\"city\";s:20:\"Steinegg Collepietra\";s:12:\"emailaddress\";s:19:\"info@sonnleiten.net\";s:12:\"mobilenumber\";s:10:\"0471376530\";s:13:\"websitedomain\";s:25:\"http://www.sonnleiten.net\";s:9:\"employees\";s:1:\"5\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"10f195fb055a63394c6a8510cd1c1cd1\";}','a:1:{i:0;s:117:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1405623749/1645708462_Logo-1200x1200-1.jpg\";}','MTY0NTcwODQ2MjI3MDEwNg==','85.40.109.254','85.40.109.254','1645708462','1645708670','2022-03-01 14:07:51'),(271,106,0,'a:14:{s:9:\"firstname\";s:6:\"Fabian\";s:8:\"lastname\";s:10:\"Castlunger\";s:11:\"companyname\";s:18:\"Hotel al Sonnenhof\";s:7:\"address\";s:21:\"Str. Catarina Lanz, 8\";s:8:\"postcode\";s:5:\"39030\";s:4:\"city\";s:16:\"St. Vigil i. E. \";s:12:\"emailaddress\";s:20:\"hotel@sonnen-hof.com\";s:12:\"mobilenumber\";s:13:\"+393312752268\";s:13:\"websitedomain\";s:25:\"http://wwe.sonnen-hof.com\";s:9:\"employees\";s:2:\"14\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTcxMzA2NDI3MTEwNg==','31.207.115.119','','1645713064','','2022-03-01 14:07:51'),(272,106,0,'a:14:{s:9:\"firstname\";s:5:\"georg\";s:8:\"lastname\";s:6:\"zelger\";s:11:\"companyname\";s:13:\"Taxisuedtirol\";s:7:\"address\";s:18:\"Vittorio Veneto 92\";s:8:\"postcode\";s:5:\"39100\";s:4:\"city\";s:5:\"Bozen\";s:12:\"emailaddress\";s:21:\"Georgzelger@gmail.com\";s:12:\"mobilenumber\";s:10:\"3938156624\";s:13:\"websitedomain\";s:27:\"http://www.taxisuedtirol.it\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTcxNTQwOTI3MjEwNg==','88.149.198.163','','1645715409','','2022-03-01 14:07:51'),(273,106,1,'a:14:{s:9:\"firstname\";s:7:\"Verena \";s:8:\"lastname\";s:4:\"Mair\";s:11:\"companyname\";s:9:\"Berg Josl\";s:7:\"address\";s:16:\"Spöglerberg 6-8\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:8:\"Mölten \";s:12:\"emailaddress\";s:17:\"bergjosl@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3388720482\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTcxNjE1MDI3MzEwNg==','146.241.29.255','146.241.24.66','1645716150','1645724568','2022-03-01 14:07:51'),(274,106,1,'a:14:{s:9:\"firstname\";s:7:\"Verena \";s:8:\"lastname\";s:4:\"Mair\";s:11:\"companyname\";s:10:\"Berg Josl \";s:7:\"address\";s:16:\"Spöglerberg 6-8\";s:8:\"postcode\";s:5:\"39010\";s:4:\"city\";s:8:\"Mölten \";s:12:\"emailaddress\";s:17:\"bergjosl@yahoo.de\";s:12:\"mobilenumber\";s:10:\"3388720482\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:1:{i:0;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTcyNDY2NjI3NDEwNg==','146.241.24.66','146.241.24.66','1645724666','1645725089','2022-03-01 14:07:51'),(275,106,1,'a:14:{s:9:\"firstname\";s:6:\"Alfred\";s:8:\"lastname\";s:8:\"Tschager\";s:11:\"companyname\";s:38:\"Alfred Tschager-Photography & Coaching\";s:7:\"address\";s:13:\"Stroblwiese 8\";s:8:\"postcode\";s:5:\"39053\";s:4:\"city\";s:7:\"Karneid\";s:12:\"emailaddress\";s:23:\"klick@tschager-foto.com\";s:12:\"mobilenumber\";s:13:\"+393355839614\";s:13:\"websitedomain\";s:28:\"http://www.tschager-foto.com\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"99590cf1a02b260f8794a005c3dafdc1\";}','a:1:{i:0;s:122:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0163482286/1645726359_tschager-signature@2x.png\";}','MTY0NTcyNjM1OTI3NTEwNg==','195.254.249.215','195.254.249.215','1645726359','1645726424','2022-03-01 14:07:51'),(276,106,1,'a:14:{s:9:\"firstname\";s:8:\"Angelika\";s:8:\"lastname\";s:8:\"Reissigl\";s:11:\"companyname\";s:13:\"Mode BÄRELE \";s:7:\"address\";s:11:\"Am Gries 13\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:4:\"Lana\";s:12:\"emailaddress\";s:28:\"angelikareissigl63@gmail.com\";s:12:\"mobilenumber\";s:10:\"3486941048\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"d5ad37beb96ace6a656e181da952a508\";}','a:1:{i:0;s:127:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/0637800725/1645726464_Screenshot_20201225_122418.jpg\";}','MTY0NTcyNjQ2NDI3NjEwNg==','87.4.15.147','87.4.15.147','1645726464','1645729357','2022-03-01 14:07:51'),(277,106,1,'a:14:{s:9:\"firstname\";s:6:\"Markus\";s:8:\"lastname\";s:7:\"Santoni\";s:11:\"companyname\";s:10:\"Germatk kg\";s:7:\"address\";s:22:\"Schießstandstrasse, 6\";s:8:\"postcode\";s:5:\"39044\";s:4:\"city\";s:8:\"Neumarkt\";s:12:\"emailaddress\";s:22:\"germark.info@gmail.com\";s:12:\"mobilenumber\";s:10:\"3312873024\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:2:{i:0;s:13:\"Dienstleister\";i:1;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTcyODM2MTI3NzEwNg==','93.70.82.91','93.70.82.91','1645728361','1645730663','2022-03-01 14:07:51'),(278,106,1,'a:14:{s:9:\"firstname\";s:6:\"Thomas\";s:8:\"lastname\";s:11:\"Überbacher\";s:11:\"companyname\";s:58:\"Cafe/Konditorei Überbacher des Überbacher Thomas & CO KG\";s:7:\"address\";s:14:\"Kirchplatz 5/a\";s:8:\"postcode\";s:5:\"39022\";s:4:\"city\";s:6:\"Algund\";s:12:\"emailaddress\";s:25:\"info@cafe-ueberbacher.com\";s:12:\"mobilenumber\";s:10:\"3335710073\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"5\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:11:\"Gastgewerbe\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTcyODczODI3ODEwNg==','82.48.60.241','82.48.60.241','1645728738','1645728799','2022-03-01 14:07:51'),(279,106,0,'a:14:{s:9:\"firstname\";s:8:\"Angelika\";s:8:\"lastname\";s:8:\"Reissigl\";s:11:\"companyname\";s:13:\"Mode BÄRELE \";s:7:\"address\";s:11:\"Am Gries 13\";s:8:\"postcode\";s:5:\"39011\";s:4:\"city\";s:4:\"Lana\";s:12:\"emailaddress\";s:28:\"angelikareissigl63@gmail.com\";s:12:\"mobilenumber\";s:10:\"3486941048\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:6:\"Handel\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTcyOTU3MTI3OTEwNg==','87.4.15.147','','1645729571','','2022-03-01 14:07:51'),(280,106,1,'a:14:{s:9:\"firstname\";s:9:\"Christoph\";s:8:\"lastname\";s:3:\"Ulm\";s:11:\"companyname\";s:36:\"Elektrotechnik Ulm des Ulm Christoph\";s:7:\"address\";s:17:\"Waldheimweg, 29/1\";s:8:\"postcode\";s:5:\"39040\";s:4:\"city\";s:6:\"Aldein\";s:12:\"emailaddress\";s:23:\"ulmchristoph6@gmail.com\";s:12:\"mobilenumber\";s:10:\"3405738699\";s:13:\"websitedomain\";s:0:\"\";s:9:\"employees\";s:1:\"1\";s:7:\"branche\";a:1:{i:0;s:8:\"Handwerk\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:0:\"\";}','a:0:{}','MTY0NTczMjgyODI4MDEwNg==','31.177.119.1','31.177.119.1','1645732828','1645732858','2022-03-01 14:07:51'),(281,106,1,'a:14:{s:9:\"firstname\";s:7:\"vanessa\";s:8:\"lastname\";s:11:\"runggaldier\";s:11:\"companyname\";s:19:\"vanessa runggaldier\";s:7:\"address\";s:26:\"Oswald von Wolkenstein 171\";s:8:\"postcode\";s:5:\"39042\";s:4:\"city\";s:6:\"Brixen\";s:12:\"emailaddress\";s:28:\"info@vanessa-runggaldier.com\";s:12:\"mobilenumber\";s:10:\"3394441089\";s:13:\"websitedomain\";s:34:\"http://www.vanessa-runggaldier.com\";s:9:\"employees\";s:0:\"\";s:7:\"branche\";a:2:{i:0;s:8:\"Handwerk\";i:1;s:13:\"Dienstleister\";}s:7:\"privacy\";a:1:{i:0;s:2:\"Ja\";}s:10:\"authorised\";a:1:{i:0;s:2:\"Ja\";}s:8:\"filelogo\";s:32:\"90b93cba827ae86791b0770a9bd70df4\";}','a:1:{i:0;s:137:\"/media/dragon/www/unternehmen.wir-noi.org/wp-content/uploads/wpcf7_uploads/1382441920/1645735981_FE469C5E-8542-4FE0-A83B-E37E0153D247.png\";}','MTY0NTczNTk4MTI4MTEwNg==','2.198.68.79','2.198.68.79','1645735981','1645736057','2022-03-01 14:07:51');
+/*!40000 ALTER TABLE `wp_f12_cf7_doubleoptin` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_fusion_form_entries`
+--
+
+DROP TABLE IF EXISTS `wp_fusion_form_entries`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_fusion_form_entries` (
+  `id` bigint(20) NOT NULL AUTO_INCREMENT,
+  `submission_id` bigint(20) NOT NULL,
+  `form_id` bigint(20) NOT NULL,
+  `field_id` bigint(20) NOT NULL,
+  `value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  `privacy` tinyint(1) DEFAULT NULL,
+  `data` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  PRIMARY KEY (`id`),
+  UNIQUE KEY `id` (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_fusion_form_entries`
+--
+
+LOCK TABLES `wp_fusion_form_entries` WRITE;
+/*!40000 ALTER TABLE `wp_fusion_form_entries` DISABLE KEYS */;
+/*!40000 ALTER TABLE `wp_fusion_form_entries` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_fusion_form_fields`
+--
+
+DROP TABLE IF EXISTS `wp_fusion_form_fields`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_fusion_form_fields` (
+  `id` bigint(20) NOT NULL AUTO_INCREMENT,
+  `form_id` bigint(20) NOT NULL,
+  `field_name` varchar(256) COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `field_label` varchar(256) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  `data` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  PRIMARY KEY (`id`),
+  UNIQUE KEY `id` (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_fusion_form_fields`
+--
+
+LOCK TABLES `wp_fusion_form_fields` WRITE;
+/*!40000 ALTER TABLE `wp_fusion_form_fields` DISABLE KEYS */;
+/*!40000 ALTER TABLE `wp_fusion_form_fields` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_fusion_form_submissions`
+--
+
+DROP TABLE IF EXISTS `wp_fusion_form_submissions`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_fusion_form_submissions` (
+  `id` bigint(20) NOT NULL AUTO_INCREMENT,
+  `form_id` bigint(20) NOT NULL,
+  `time` datetime NOT NULL,
+  `source_url` varchar(512) COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `post_id` bigint(20) DEFAULT NULL,
+  `user_id` bigint(20) DEFAULT NULL,
+  `user_agent` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  `ip` varchar(512) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  `is_read` tinyint(1) DEFAULT NULL,
+  `privacy_scrub_date` date DEFAULT NULL,
+  `on_privacy_scrub` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `data` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  PRIMARY KEY (`id`),
+  UNIQUE KEY `id` (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_fusion_form_submissions`
+--
+
+LOCK TABLES `wp_fusion_form_submissions` WRITE;
+/*!40000 ALTER TABLE `wp_fusion_form_submissions` DISABLE KEYS */;
+/*!40000 ALTER TABLE `wp_fusion_form_submissions` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_fusion_forms`
+--
+
+DROP TABLE IF EXISTS `wp_fusion_forms`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_fusion_forms` (
+  `id` bigint(20) NOT NULL AUTO_INCREMENT,
+  `form_id` bigint(20) NOT NULL,
+  `views` bigint(20) DEFAULT 0,
+  `submissions_count` bigint(20) DEFAULT 0,
+  `data` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  PRIMARY KEY (`id`),
+  UNIQUE KEY `id` (`id`),
+  UNIQUE KEY `form_id` (`form_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_fusion_forms`
+--
+
+LOCK TABLES `wp_fusion_forms` WRITE;
+/*!40000 ALTER TABLE `wp_fusion_forms` DISABLE KEYS */;
+/*!40000 ALTER TABLE `wp_fusion_forms` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_links`
+--
+
+DROP TABLE IF EXISTS `wp_links`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_links` (
+  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
+  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
+  `link_rating` int(11) NOT NULL DEFAULT 0,
+  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  PRIMARY KEY (`link_id`),
+  KEY `link_visible` (`link_visible`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_links`
+--
+
+LOCK TABLES `wp_links` WRITE;
+/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
+/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_options`
+--
+
+DROP TABLE IF EXISTS `wp_options`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_options` (
+  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
+  PRIMARY KEY (`option_id`),
+  UNIQUE KEY `option_name` (`option_name`),
+  KEY `autoload` (`autoload`)
+) ENGINE=InnoDB AUTO_INCREMENT=17119 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_options`
+--
+
+LOCK TABLES `wp_options` WRITE;
+/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
+INSERT INTO `wp_options` VALUES (1,'siteurl','https://unternehmen.wir-noi.org','yes'),(2,'home','https://unternehmen.wir-noi.org','yes'),(3,'blogname','Unternehmen für Menschen','yes'),(4,'blogdescription','WIR NOI','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','software@infeos.de','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','j. F Y','yes'),(24,'time_format','G:i','yes'),(25,'links_updated_date_format','j. F Y G:i','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:302:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:18:\"portfolio-items/?$\";s:35:\"index.php?post_type=avada_portfolio\";s:48:\"portfolio-items/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=avada_portfolio&feed=$matches[1]\";s:43:\"portfolio-items/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=avada_portfolio&feed=$matches[1]\";s:35:\"portfolio-items/page/([0-9]{1,})/?$\";s:53:\"index.php?post_type=avada_portfolio&paged=$matches[1]\";s:12:\"faq-items/?$\";s:29:\"index.php?post_type=avada_faq\";s:42:\"faq-items/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=avada_faq&feed=$matches[1]\";s:37:\"faq-items/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=avada_faq&feed=$matches[1]\";s:29:\"faq-items/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=avada_faq&paged=$matches[1]\";s:44:\"fusion_tb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"fusion_tb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"fusion_tb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"fusion_tb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"fusion_tb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"fusion_tb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"fusion_tb_layout/([^/]+)/embed/?$\";s:49:\"index.php?fusion_tb_layout=$matches[1]&embed=true\";s:37:\"fusion_tb_layout/([^/]+)/trackback/?$\";s:43:\"index.php?fusion_tb_layout=$matches[1]&tb=1\";s:45:\"fusion_tb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?fusion_tb_layout=$matches[1]&paged=$matches[2]\";s:52:\"fusion_tb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?fusion_tb_layout=$matches[1]&cpage=$matches[2]\";s:41:\"fusion_tb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?fusion_tb_layout=$matches[1]&page=$matches[2]\";s:33:\"fusion_tb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"fusion_tb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"fusion_tb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"fusion_tb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"fusion_tb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"fusion_tb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"fusion_tb_section/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"fusion_tb_section/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"fusion_tb_section/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"fusion_tb_section/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"fusion_tb_section/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"fusion_tb_section/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"fusion_tb_section/([^/]+)/embed/?$\";s:50:\"index.php?fusion_tb_section=$matches[1]&embed=true\";s:38:\"fusion_tb_section/([^/]+)/trackback/?$\";s:44:\"index.php?fusion_tb_section=$matches[1]&tb=1\";s:46:\"fusion_tb_section/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?fusion_tb_section=$matches[1]&paged=$matches[2]\";s:53:\"fusion_tb_section/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?fusion_tb_section=$matches[1]&cpage=$matches[2]\";s:42:\"fusion_tb_section/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?fusion_tb_section=$matches[1]&page=$matches[2]\";s:34:\"fusion_tb_section/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"fusion_tb_section/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"fusion_tb_section/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"fusion_tb_section/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"fusion_tb_section/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"fusion_tb_section/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"fusion_tb_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?fusion_tb_category=$matches[1]&feed=$matches[2]\";s:54:\"fusion_tb_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?fusion_tb_category=$matches[1]&feed=$matches[2]\";s:35:\"fusion_tb_category/([^/]+)/embed/?$\";s:51:\"index.php?fusion_tb_category=$matches[1]&embed=true\";s:47:\"fusion_tb_category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?fusion_tb_category=$matches[1]&paged=$matches[2]\";s:29:\"fusion_tb_category/([^/]+)/?$\";s:40:\"index.php?fusion_tb_category=$matches[1]\";s:39:\"fusion_form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"fusion_form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"fusion_form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"fusion_form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"fusion_form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"fusion_form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"fusion_form/([^/]+)/embed/?$\";s:44:\"index.php?fusion_form=$matches[1]&embed=true\";s:32:\"fusion_form/([^/]+)/trackback/?$\";s:38:\"index.php?fusion_form=$matches[1]&tb=1\";s:40:\"fusion_form/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?fusion_form=$matches[1]&paged=$matches[2]\";s:47:\"fusion_form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?fusion_form=$matches[1]&cpage=$matches[2]\";s:36:\"fusion_form/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?fusion_form=$matches[1]&page=$matches[2]\";s:28:\"fusion_form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"fusion_form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"fusion_form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"fusion_form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"fusion_form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"fusion_form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:41:\"wp_navigation/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"wp_navigation/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"wp_navigation/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"wp_navigation/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"wp_navigation/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"wp_navigation/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"wp_navigation/([^/]+)/embed/?$\";s:46:\"index.php?wp_navigation=$matches[1]&embed=true\";s:34:\"wp_navigation/([^/]+)/trackback/?$\";s:40:\"index.php?wp_navigation=$matches[1]&tb=1\";s:42:\"wp_navigation/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?wp_navigation=$matches[1]&paged=$matches[2]\";s:49:\"wp_navigation/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?wp_navigation=$matches[1]&cpage=$matches[2]\";s:38:\"wp_navigation/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?wp_navigation=$matches[1]&page=$matches[2]\";s:30:\"wp_navigation/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"wp_navigation/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"wp_navigation/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"wp_navigation/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"wp_navigation/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"wp_navigation/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:43:\"portfolio-items/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"portfolio-items/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"portfolio-items/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"portfolio-items/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"portfolio-items/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"portfolio-items/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"portfolio-items/([^/]+)/embed/?$\";s:48:\"index.php?avada_portfolio=$matches[1]&embed=true\";s:36:\"portfolio-items/([^/]+)/trackback/?$\";s:42:\"index.php?avada_portfolio=$matches[1]&tb=1\";s:56:\"portfolio-items/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&feed=$matches[2]\";s:51:\"portfolio-items/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&feed=$matches[2]\";s:44:\"portfolio-items/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?avada_portfolio=$matches[1]&paged=$matches[2]\";s:51:\"portfolio-items/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?avada_portfolio=$matches[1]&cpage=$matches[2]\";s:40:\"portfolio-items/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&page=$matches[2]\";s:32:\"portfolio-items/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"portfolio-items/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"portfolio-items/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"portfolio-items/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"portfolio-items/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"portfolio-items/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"portfolio_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio_category=$matches[1]&feed=$matches[2]\";s:54:\"portfolio_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio_category=$matches[1]&feed=$matches[2]\";s:35:\"portfolio_category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio_category=$matches[1]&embed=true\";s:47:\"portfolio_category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio_category=$matches[1]&paged=$matches[2]\";s:29:\"portfolio_category/([^/]+)/?$\";s:40:\"index.php?portfolio_category=$matches[1]\";s:57:\"portfolio_skills/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?portfolio_skills=$matches[1]&feed=$matches[2]\";s:52:\"portfolio_skills/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?portfolio_skills=$matches[1]&feed=$matches[2]\";s:33:\"portfolio_skills/([^/]+)/embed/?$\";s:49:\"index.php?portfolio_skills=$matches[1]&embed=true\";s:45:\"portfolio_skills/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?portfolio_skills=$matches[1]&paged=$matches[2]\";s:27:\"portfolio_skills/([^/]+)/?$\";s:38:\"index.php?portfolio_skills=$matches[1]\";s:55:\"portfolio_tags/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio_tags=$matches[1]&feed=$matches[2]\";s:50:\"portfolio_tags/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio_tags=$matches[1]&feed=$matches[2]\";s:31:\"portfolio_tags/([^/]+)/embed/?$\";s:47:\"index.php?portfolio_tags=$matches[1]&embed=true\";s:43:\"portfolio_tags/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?portfolio_tags=$matches[1]&paged=$matches[2]\";s:25:\"portfolio_tags/([^/]+)/?$\";s:36:\"index.php?portfolio_tags=$matches[1]\";s:37:\"faq-items/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"faq-items/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"faq-items/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"faq-items/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"faq-items/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"faq-items/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"faq-items/([^/]+)/embed/?$\";s:42:\"index.php?avada_faq=$matches[1]&embed=true\";s:30:\"faq-items/([^/]+)/trackback/?$\";s:36:\"index.php?avada_faq=$matches[1]&tb=1\";s:50:\"faq-items/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?avada_faq=$matches[1]&feed=$matches[2]\";s:45:\"faq-items/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?avada_faq=$matches[1]&feed=$matches[2]\";s:38:\"faq-items/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?avada_faq=$matches[1]&paged=$matches[2]\";s:45:\"faq-items/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?avada_faq=$matches[1]&cpage=$matches[2]\";s:34:\"faq-items/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?avada_faq=$matches[1]&page=$matches[2]\";s:26:\"faq-items/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"faq-items/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"faq-items/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"faq-items/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"faq-items/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"faq-items/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"faq_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?faq_category=$matches[1]&feed=$matches[2]\";s:48:\"faq_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?faq_category=$matches[1]&feed=$matches[2]\";s:29:\"faq_category/([^/]+)/embed/?$\";s:45:\"index.php?faq_category=$matches[1]&embed=true\";s:41:\"faq_category/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?faq_category=$matches[1]&paged=$matches[2]\";s:23:\"faq_category/([^/]+)/?$\";s:34:\"index.php?faq_category=$matches[1]\";s:33:\"slide/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"slide/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"slide/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"slide/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"slide/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"slide/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"slide/([^/]+)/embed/?$\";s:38:\"index.php?slide=$matches[1]&embed=true\";s:26:\"slide/([^/]+)/trackback/?$\";s:32:\"index.php?slide=$matches[1]&tb=1\";s:34:\"slide/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?slide=$matches[1]&paged=$matches[2]\";s:41:\"slide/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?slide=$matches[1]&cpage=$matches[2]\";s:30:\"slide/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?slide=$matches[1]&page=$matches[2]\";s:22:\"slide/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"slide/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"slide/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"slide/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"slide/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"slide/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:51:\"slide-page/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?slide-page=$matches[1]&feed=$matches[2]\";s:46:\"slide-page/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?slide-page=$matches[1]&feed=$matches[2]\";s:27:\"slide-page/([^/]+)/embed/?$\";s:43:\"index.php?slide-page=$matches[1]&embed=true\";s:39:\"slide-page/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?slide-page=$matches[1]&paged=$matches[2]\";s:21:\"slide-page/([^/]+)/?$\";s:32:\"index.php?slide-page=$matches[1]\";s:43:\"fusion_template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"fusion_template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"fusion_template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"fusion_template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"fusion_template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"fusion_template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"fusion_template/([^/]+)/embed/?$\";s:48:\"index.php?fusion_template=$matches[1]&embed=true\";s:36:\"fusion_template/([^/]+)/trackback/?$\";s:42:\"index.php?fusion_template=$matches[1]&tb=1\";s:44:\"fusion_template/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?fusion_template=$matches[1]&paged=$matches[2]\";s:51:\"fusion_template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?fusion_template=$matches[1]&cpage=$matches[2]\";s:40:\"fusion_template/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?fusion_template=$matches[1]&page=$matches[2]\";s:32:\"fusion_template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"fusion_template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"fusion_template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"fusion_template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"fusion_template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"fusion_template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"fusion_element/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"fusion_element/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"fusion_element/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"fusion_element/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"fusion_element/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"fusion_element/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"fusion_element/([^/]+)/embed/?$\";s:47:\"index.php?fusion_element=$matches[1]&embed=true\";s:35:\"fusion_element/([^/]+)/trackback/?$\";s:41:\"index.php?fusion_element=$matches[1]&tb=1\";s:43:\"fusion_element/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?fusion_element=$matches[1]&paged=$matches[2]\";s:50:\"fusion_element/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?fusion_element=$matches[1]&cpage=$matches[2]\";s:39:\"fusion_element/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?fusion_element=$matches[1]&page=$matches[2]\";s:31:\"fusion_element/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"fusion_element/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"fusion_element/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"fusion_element/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"fusion_element/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"fusion_element/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"element_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?element_category=$matches[1]&feed=$matches[2]\";s:52:\"element_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?element_category=$matches[1]&feed=$matches[2]\";s:33:\"element_category/([^/]+)/embed/?$\";s:49:\"index.php?element_category=$matches[1]&embed=true\";s:45:\"element_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?element_category=$matches[1]&paged=$matches[2]\";s:27:\"element_category/([^/]+)/?$\";s:38:\"index.php?element_category=$matches[1]\";s:58:\"template_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?template_category=$matches[1]&feed=$matches[2]\";s:53:\"template_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?template_category=$matches[1]&feed=$matches[2]\";s:34:\"template_category/([^/]+)/embed/?$\";s:50:\"index.php?template_category=$matches[1]&embed=true\";s:46:\"template_category/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?template_category=$matches[1]&paged=$matches[2]\";s:28:\"template_category/([^/]+)/?$\";s:39:\"index.php?template_category=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=12&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:8:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:42:\"contact-form-cfdb7/contact-form-cfdb-7.php\";i:2;s:44:\"f12-cf7-doubleoptin/CF7DoubleOptIn.class.php\";i:3;s:33:\"fusion-builder/fusion-builder.php\";i:4;s:27:\"fusion-core/fusion-core.php\";i:5;s:58:\"material-design-for-contact-form-7/cf7-material-design.php\";i:6;s:27:\"updraftplus/updraftplus.php\";i:7;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','Avada','yes'),(41,'stylesheet','Avada','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','51917','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','Europe/Berlin','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','12','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1659436205','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','51917','yes'),(100,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:63:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:27:\"access_white_label_branding\";b:1;s:12:\"cfdb7_access\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'WPLANG','de_DE','yes'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:159:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Neueste Beiträge</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:230:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Neueste Kommentare</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:145:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archive</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Kategorien</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"avada-blog-sidebar\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:21:\"avada-footer-widget-1\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:21:\"avada-footer-widget-2\";a:0:{}s:21:\"avada-footer-widget-3\";a:0:{}s:21:\"avada-footer-widget-4\";a:0:{}s:25:\"avada-slidingbar-widget-1\";a:0:{}s:25:\"avada-slidingbar-widget-2\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:7:{i:1645748037;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1645749009;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1645785009;a:6:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1645785018;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1645785020;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1645803500;a:1:{s:15:\"dailyOptinClear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'theme_mods_twentytwentytwo','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1643887020;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(133,'can_compress_scripts','0','no'),(156,'current_theme','Avada','yes'),(157,'theme_mods_Avada','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:4:{s:15:\"main_navigation\";i:3;s:14:\"top_navigation\";i:3;s:17:\"mobile_navigation\";i:3;s:17:\"sticky_navigation\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1643961448;s:4:\"data\";a:10:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"avada-blog-sidebar\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:21:\"avada-footer-widget-1\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:21:\"avada-footer-widget-2\";a:0:{}s:21:\"avada-footer-widget-3\";a:0:{}s:21:\"avada-footer-widget-4\";a:0:{}s:25:\"avada-slidingbar-widget-1\";a:0:{}s:25:\"avada-slidingbar-widget-2\";a:0:{}s:25:\"avada-slidingbar-widget-3\";a:0:{}s:25:\"avada-slidingbar-widget-4\";a:0:{}}}}','yes'),(158,'theme_switched','','yes'),(159,'avada_version','7.6.1','yes'),(164,'_transient_timeout_avada_demos','1643973422','no'),(166,'shop_catalog_image_size','a:3:{s:5:\"width\";i:500;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(167,'shop_single_image_size','a:3:{s:5:\"width\";i:700;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(168,'shop_thumbnail_image_size','a:3:{s:5:\"width\";i:120;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(169,'woocommerce_single_image_width','700','yes'),(170,'woocommerce_thumbnail_image_width','500','yes'),(171,'woocommerce_thumbnail_cropping','uncropped','yes'),(172,'fusion_dynamic_css_posts','a:33:{i:316;b:0;i:12;b:1;i:76;b:1;i:3;b:1;i:63;b:1;i:106;b:0;i:317;b:0;i:325;b:0;i:326;b:0;i:66;b:0;i:205;b:0;i:207;b:0;i:67;b:0;i:313;b:0;i:328;b:0;i:329;b:0;i:330;b:0;i:331;b:0;i:332;b:0;i:333;b:0;i:334;b:0;i:335;b:0;i:336;b:0;i:337;b:0;i:338;b:0;i:339;b:0;i:342;b:0;i:343;b:0;s:6:\"global\";b:1;i:344;b:0;i:1;b:1;s:9:\"4-archive\";b:1;s:9:\"1-archive\";b:1;}','yes'),(173,'fusion_dynamic_css_ids','a:33:{i:316;b:0;i:12;s:32:\"3cfb7bd24f96c31687829feb99669030\";i:76;s:32:\"31289f93b968b49e71ff736b778e9824\";i:3;s:32:\"31289f93b968b49e71ff736b778e9824\";i:63;s:32:\"3cfb7bd24f96c31687829feb99669030\";i:106;b:0;i:317;b:0;i:325;b:0;i:326;b:0;i:66;b:0;i:205;b:0;i:207;b:0;i:67;b:0;i:313;b:0;i:328;b:0;i:329;b:0;i:330;b:0;i:331;b:0;i:332;b:0;i:333;b:0;i:334;b:0;i:335;b:0;i:336;b:0;i:337;b:0;i:338;b:0;i:339;b:0;i:342;b:0;i:343;b:0;s:6:\"global\";s:32:\"58ca48cdb2d734cde96f82b118ec77d3\";i:344;b:0;i:1;s:32:\"f74db7e8af745725c2f7259722336078\";s:9:\"4-archive\";s:32:\"58ca48cdb2d734cde96f82b118ec77d3\";s:9:\"1-archive\";s:32:\"58ca48cdb2d734cde96f82b118ec77d3\";}','yes'),(175,'revslider-valid-notice','false','yes'),(189,'fusion_registration_data','a:1:{s:5:\"avada\";a:5:{s:5:\"token\";s:32:\"kVnYiBJdVRNp5udNcnsRR7RZQHMmjGGi\";s:13:\"purchase_code\";s:36:\"5028984d-406d-4ea0-b291-45296380a2a3\";s:8:\"is_valid\";b:1;s:6:\"scopes\";a:5:{i:0;s:7:\"default\";i:1;s:13:\"user:username\";i:2;s:17:\"purchase:download\";i:3;s:13:\"purchase:list\";i:4;s:15:\"purchase:verify\";}s:6:\"errors\";s:0:\"\";}}','yes'),(220,'_transient_timeout_avada_ri_Fusion Core','1643887781','no'),(224,'_transient_timeout_avada_ri_Fusion Builder','1643887781','no'),(228,'_transient_timeout_avada_ri_Fusion White Label Branding','1643887781','no'),(232,'_transient_timeout_avada_ri_Slider Revolution','1643887781','no'),(236,'_transient_timeout_avada_ri_LayerSlider WP','1643887782','no'),(240,'_transient_timeout_avada_ri_Advanced Custom Fields PRO','1643887782','no'),(244,'_transient_timeout_avada_ri_Convert Plus','1643887782','no'),(248,'_transient_timeout_avada_ri_FileBird','1643887782','no'),(310,'_site_transient_fusion_wordpress_org_plugins','a:7:{s:3:\"pwa\";a:25:{s:4:\"name\";s:3:\"PWA\";s:4:\"slug\";s:3:\"pwa\";s:7:\"version\";s:5:\"0.6.0\";s:6:\"author\";s:100:\"<a href=\"https://github.com/GoogleChromeLabs/pwa-wp/graphs/contributors\">PWA Plugin Contributors</a>\";s:14:\"author_profile\";s:43:\"https://profiles.wordpress.org/westonruter/\";s:12:\"contributors\";a:4:{s:6:\"google\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/google/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/2adafb3bf578fd97d8d2ea1c2ccb3db3?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:6:\"Google\";}s:3:\"xwp\";a:3:{s:7:\"profile\";s:35:\"https://profiles.wordpress.org/xwp/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/4fde309f8e69e623b883692b9bea5cb1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:3:\"XWP\";}s:11:\"westonruter\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/westonruter/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/989838a2534d491ccb184d5b8a654f99?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Weston Ruter\";}s:13:\"albertomedina\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/albertomedina/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c61e7d8efedcd6e9bf7a0c6025f80489?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"albertomedina\";}}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";s:6:\"rating\";i:86;s:7:\"ratings\";a:5:{i:5;i:13;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:3;}s:11:\"num_ratings\";i:16;s:15:\"support_threads\";i:6;s:24:\"support_threads_resolved\";i:4;s:15:\"active_installs\";i:40000;s:12:\"last_updated\";s:21:\"2022-02-03 1:58am GMT\";s:5:\"added\";s:10:\"2018-07-12\";s:8:\"homepage\";s:42:\"https://github.com/GoogleChromeLabs/pwa-wp\";s:8:\"sections\";a:4:{s:11:\"description\";s:4190:\"<blockquote cite=\"https://developers.google.com/web/progressive-web-apps/\"><p>\nProgressive Web Apps are user experiences that have the reach of the web, and are:</p>\n<ul>\n<li><a href=\"https://developers.google.com/web/progressive-web-apps/#reliable\" rel=\"nofollow ugc\">Reliable</a> &#8211; Load instantly and never show the downasaur, even in uncertain network conditions.</li>\n<li><a href=\"https://developers.google.com/web/progressive-web-apps/#fast\" rel=\"nofollow ugc\">Fast</a> &#8211; Respond quickly to user interactions with silky smooth animations and no janky scrolling.</li>\n<li><a href=\"https://developers.google.com/web/progressive-web-apps/#engaging\" rel=\"nofollow ugc\">Engaging</a> &#8211; Feel like a natural app on the device, with an immersive user experience.</li>\n</ul>\n<p>This new level of quality allows Progressive Web Apps to earn a place on the user&#8217;s home screen.\n</p></blockquote>\n<p>Continue reading more about <a href=\"https://web.dev/progressive-web-apps/\" rel=\"nofollow ugc\">Progressive Web Apps</a> (PWA) from Google.</p>\n<p>In general a PWA depends on the following technologies to be available:</p>\n<ul>\n<li><a href=\"https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API\" rel=\"nofollow ugc\">Service Workers</a></li>\n<li><a href=\"https://developer.mozilla.org/en-US/docs/Web/Manifest\" rel=\"nofollow ugc\">Web App Manifest</a></li>\n<li><a href=\"https://en.wikipedia.org/wiki/HTTPS\" rel=\"nofollow ugc\">HTTPS</a></li>\n</ul>\n<p>This plugin serves as a place to implement support for these in WordPress with the intention of being proposed for core merge, piece by piece.</p>\n<p>This feature plugin is <em>not</em> intended to obsolete the other plugins and themes which turn WordPress sites into PWAs. Rather, this plugin is intended to provide the PWA building blocks and coordination mechanism for these themes and plugins to not reinvent the wheel and also to not conflict with each other. For example, a theme that implements the app shell model should be able to extend the core service worker while a plugin that provides push notifications should be able to do the same. Themes and plugins no longer should have to each create a service worker on their own, something which is inherently problematic because only one service worker can be active at a time: only one service worker can win. If you are developing a plugin or theme that includes a service worker, consider relying on this PWA plugin, or at least only use the built-in implementation as a fallback for when the PWA plugin is not available.</p>\n<p>In versions prior to 0.6, no caching strategies were added by default. The only service worker behavior was to serve an offline template when the client&#8217;s connection is down or the site is down, and also to serve an error page when the server returns with 500 Internal Server Error. As of 0.6, there is a new “Offline browsing” toggle on the Reading Settings screen in the admin. It is disabled by default, but when enabled a <a href=\"https://web.dev/offline-cookbook/#network-falling-back-to-cache\" rel=\"nofollow ugc\">network-first</a> caching strategy is registered for navigations so that the offline page won&#8217;t be shown when accessing previously-accessed pages. The network-first strategy is also used for assets from themes, plugins, and WordPress core. In addition, uploaded images get served with a <a href=\"https://web.dev/offline-cookbook/#stale-while-revalidate\" rel=\"nofollow ugc\">stale-while-revalidate</a> strategy. For all the details on these changes, see the <a href=\"https://github.com/GoogleChromeLabs/pwa-wp/pull/338\" rel=\"nofollow ugc\">pull request</a>.</p>\n<p>Documentation for the plugin can be found on the <a href=\"https://github.com/GoogleChromeLabs/pwa-wp/wiki\" rel=\"nofollow ugc\">GitHub project Wiki</a>.</p>\n<p><strong>Development of this plugin is done <a href=\"https://github.com/GoogleChromeLabs/pwa-wp\" rel=\"nofollow ugc\">on GitHub</a>. Pull requests welcome. Please see <a href=\"https://github.com/GoogleChromeLabs/pwa-wp/issues\" rel=\"nofollow ugc\">issues</a> reported there before going to the <a href=\"https://wordpress.org/support/plugin/pwa\">plugin forum</a>.</strong></p>\n\";s:3:\"faq\";s:446:\"<p>Please see the <a href=\"https://github.com/GoogleChromeLabs/pwa-wp/wiki/FAQ\" rel=\"nofollow ugc\">frequently asked questions</a> on the GitHub project wiki. Don&#8217;t see an answer to your question? Please <a href=\"https://wordpress.org/support/plugin/pwa/\">search the support forum</a> to see if someone has asked your question. Otherwise, please <a href=\"https://wordpress.org/support/plugin/pwa/#new-post\">open a new support topic</a>.</p>\n\";s:9:\"changelog\";s:162:\"<p>For the plugin’s changelog, please see <a href=\"https://github.com/GoogleChromeLabs/pwa-wp/releases\" rel=\"nofollow ugc\">the Releases page on GitHub</a>.</p>\n\";s:7:\"reviews\";s:13638:\"<div class=\"review\">\n        <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Works neatly</h4>\n                          <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/aurelienpierre/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/e0fb97531f28593a553b2b2a657de0d7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/e0fb97531f28593a553b2b2a657de0d7?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/aurelienpierre/\" class=\"reviewer-name\">aurelienpierre</a> am <span class=\"review-date\">Oktober 2, 2021</span>                  </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Plus nice support</div>\n</div>\n<div class=\"review\">\n    <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Nice Plugin</h4>\n                           <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/ngbaze/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/178787c8ff4cc319849d8545fd6e0e57?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/178787c8ff4cc319849d8545fd6e0e57?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/ngbaze/\" class=\"reviewer-name\">NG Baze <small>(ngbaze)</small></a> am <span class=\"review-date\">Juli 17, 2021</span>                   </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Nice one.</div>\n</div>\n<div class=\"review\">\n    <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Can&#039;t get it to work</h4>\n                             <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/crocoart/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/cdae8b25f64ba65fd615b1af09bc3c3c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/cdae8b25f64ba65fd615b1af09bc3c3c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/crocoart/\" class=\"reviewer-name\">crocoart</a> am <span class=\"review-date\">Juli 4, 2021</span>                       </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Can\'t get the Add to home screen to show on ios devices which pretty much makes this useless.</div>\n</div>\n<div class=\"review\">\n       <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">nice</h4>\n                          <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/calvin85mathias/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a3555307b29e54b42c7cbf760c8c7f11?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a3555307b29e54b42c7cbf760c8c7f11?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/calvin85mathias/\" class=\"reviewer-name\">calvin85mathias</a> am <span class=\"review-date\">Februar 19, 2021</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">nice</div>\n</div>\n<div class=\"review\">\n <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Works like a charme</h4>\n                           <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/per4mance/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/6e6215f8c6a6fad37e40b996fdd4a8f9?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/6e6215f8c6a6fad37e40b996fdd4a8f9?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/per4mance/\" class=\"reviewer-name\">Thorsten :-) <small>(per4mance)</small></a> am <span class=\"review-date\">Februar 5, 2021</span>                   </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Hi,\nThank you for this great plugin it works for me on WP/BP. This is an amazing idea, and it works with W3 Total Cache too.\n\nDo you have any suggestions for me, how to implement a feature as \"add website to home\" when a user uses an iPhone or android?\n\nThank you :-)</div>\n</div>\n<div class=\"review\">\n   <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">It worked very well</h4>\n                           <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/heitor_tito/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ca0bf246069ecc57b41cdc0fee1268e0?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ca0bf246069ecc57b41cdc0fee1268e0?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/heitor_tito/\" class=\"reviewer-name\">Heitor_tito</a> am <span class=\"review-date\">Februar 3, 2021</span>                   </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Certainly the idea of not reinventing the wheel makes perfect sense.</div>\n</div>\n<div class=\"review\">\n <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Simple and usefull</h4>\n                            <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/fellyph/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/6f9ecd567b678e503b3ee10ebb0f050c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/6f9ecd567b678e503b3ee10ebb0f050c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/fellyph/\" class=\"reviewer-name\">Fellyph Cintra <small>(fellyph)</small></a> am <span class=\"review-date\">Juli 6, 2020</span>                  </p>\n          </div>\n        </div>\n        <div class=\"review-body\">The plugin helped me to convert my blog in a PWA, only the short_name was an issue and fixed using the small plugin to include an extra field.</div>\n</div>\n<div class=\"review\">\n       <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Thank You</h4>\n                             <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/stesab92/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/59f1367d15bebdb55b55fed0fc669f33?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/59f1367d15bebdb55b55fed0fc669f33?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/stesab92/\" class=\"reviewer-name\">Stephen Sabatini <small>(stesab92)</small></a> am <span class=\"review-date\">Mai 30, 2020</span>                     </p>\n          </div>\n        </div>\n        <div class=\"review-body\">I\'ve been baking this into my themes and boilerplate manually for a while now. I\'m stoked to see this on it\'s way to the core of WordPress. Thank you for your contributions!</div>\n</div>\n<div class=\"review\">\n     <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Doesn&#039;t work for me</h4>\n                              <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/gavinhaughey/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/062d2846124aa44b1b04b6ff99d2b0d2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/062d2846124aa44b1b04b6ff99d2b0d2?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/gavinhaughey/\" class=\"reviewer-name\">gavinhaughey</a> am <span class=\"review-date\">Mai 2, 2020</span>                    </p>\n          </div>\n        </div>\n        <div class=\"review-body\"> . . . I think it needs HTTPS.</div>\n</div>\n<div class=\"review\">\n       <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Future of mobile</h4>\n                              <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/fem-1/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/fb2856d777932b1b276e7c3b827e5b35?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/fb2856d777932b1b276e7c3b827e5b35?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/fem-1/\" class=\"reviewer-name\">Alex Borsody <small>(F.E.M)</small></a> am <span class=\"review-date\">Januar 24, 2020</span>                       </p>\n          </div>\n        </div>\n        <div class=\"review-body\">I believe PWAs are the future of mobile, I am using this plugin as well as the Drupal PWA module on 3 different sites/apps currently. I like how this uses Workbox and wondering when will support for background sync be included.  Very useful and customizable plugin as it is.</div>\n</div>\n\";}s:13:\"download_link\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.6.0.zip\";s:11:\"screenshots\";a:0:{}s:4:\"tags\";a:5:{s:5:\"https\";s:5:\"https\";s:20:\"progressive-web-apps\";s:20:\"progressive web apps\";s:3:\"pwa\";s:3:\"pwa\";s:15:\"service-workers\";s:16:\"service-workers.\";s:16:\"web-app-manifest\";s:16:\"web app manifest\";}s:8:\"versions\";a:7:{s:5:\"0.1.0\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.1.0.zip\";s:5:\"0.2.0\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.2.0.zip\";s:5:\"0.3.0\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.3.0.zip\";s:5:\"0.4.0\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.4.0.zip\";s:5:\"0.5.0\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.5.0.zip\";s:5:\"0.6.0\";s:52:\"https://downloads.wordpress.org/plugin/pwa.0.6.0.zip\";s:5:\"trunk\";s:46:\"https://downloads.wordpress.org/plugin/pwa.zip\";}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:58:\"https://ps.w.org/pwa/assets/banner-772x250.png?rev=2272148\";s:4:\"high\";s:59:\"https://ps.w.org/pwa/assets/banner-1544x500.png?rev=2272148\";}}s:11:\"woocommerce\";a:25:{s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:7:\"version\";s:5:\"6.1.1\";s:6:\"author\";s:48:\"<a href=\"https://woocommerce.com\">Automattic</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/woothemes/\";s:12:\"contributors\";a:14:{s:10:\"automattic\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/automattic/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/687b3bf96c41800814e3b93766444283?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Automattic\";}s:10:\"mikejolley\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/mikejolley/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/9b87f99f47e30735e1136c5141531fdf?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:18:\"Mike Jolley (a11n)\";}s:11:\"jameskoster\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/jameskoster/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/19a6a101c57df54bc1c40adcfba785d8?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"James Koster\";}s:14:\"claudiosanches\";a:3:{s:7:\"profile\";s:46:\"https://profiles.wordpress.org/claudiosanches/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/908480753c07509e76322dc17d305c8b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Claudio Sanches\";}s:13:\"rodrigosprimo\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/rodrigosprimo/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/f2271ae6814a29d8cbf38ae2d0305a72?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Rodrigo Primo\";}s:15:\"peterfabian1000\";a:3:{s:7:\"profile\";s:47:\"https://profiles.wordpress.org/peterfabian1000/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/be249b86dddbf495565a36196625d77a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Peter Fabian\";}s:7:\"vedjain\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/vedjain/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7a640eb2847d9a0a0d5e6af385e21881?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Vedanshu Jain\";}s:8:\"jamosova\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/jamosova/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/eb515897a71b0df82ccd2788548588c4?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Julia Amosova\";}s:16:\"obliviousharmony\";a:3:{s:7:\"profile\";s:48:\"https://profiles.wordpress.org/obliviousharmony/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/185f31c1e5af65fee78506769ca13276?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"obliviousharmony\";}s:9:\"konamiman\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/konamiman/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/b9a819e803dd87615c4aeb33192db976?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"konamiman\";}s:8:\"sadowski\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/sadowski/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/766381c51d7072d1f48ee8878e2ce3af?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"sadowski\";}s:8:\"wpmuguru\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/wpmuguru/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7b8ff059b9a4504dfbaebd4dd190466e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Ron Rennick\";}s:5:\"royho\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/royho/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/715b4097a10f874f8681b15608687f83?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"royho\";}s:13:\"barryhughes-1\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/barryhughes-1/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/4d7aea8e7879e3ea257ddb4a99a300f1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Barry\";}}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:5:\"5.8.3\";s:12:\"requires_php\";s:3:\"7.0\";s:6:\"rating\";i:90;s:7:\"ratings\";a:5:{i:5;i:3183;i:4;i:157;i:3;i:83;i:2;i:85;i:1;i:327;}s:11:\"num_ratings\";i:3835;s:15:\"support_threads\";i:1920;s:24:\"support_threads_resolved\";i:1726;s:15:\"active_installs\";i:5000000;s:12:\"last_updated\";s:21:\"2022-01-20 3:40pm GMT\";s:5:\"added\";s:10:\"2011-09-27\";s:8:\"homepage\";s:24:\"https://woocommerce.com/\";s:8:\"sections\";a:6:{s:11:\"description\";s:12720:\"<p>WooCommerce ist <a href=\"https://trends.builtwith.com/shop\" rel=\"nofollow ugc\">die weltweit beliebteste</a> Open-Source-E-Commerce-Lösung.</p>\n<p>Unsere Kernplattform ist kostenlos, flexibel und wird durch eine weltweite Community unterstützt. Die Freiheit von Open Source bedeutet, dass die Inhalte und Daten deines Stores für immer dir gehören. Ohne wenn und aber.</p>\n<p>Ganz gleich, ob du ein Business eröffnest, einen Onlineauftritt für ein bereits bestehendes Geschäft aufbaust oder Websites für Kunden designst: Mit WooCommerce bietet dein Store eine attraktive Mischung aus Inhalten und Commerce.</p>\n<ul>\n<li><strong>Erstelle wunderschöne, ansprechende Storefronts</strong> mit <a href=\"https://woocommerce.com/product-category/themes/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Themes</a>, die zu deiner Marke und deiner Branche passen.</li>\n<li>Mit modularen <a href=\"https://docs.woocommerce.com/document/woocommerce-blocks/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Produktblöcken</a> <strong>lassen sich Seiten in Minutenschnelle anpassen</strong> .</li>\n<li>Zeige physische und digitale Waren, Produktvarianten, individuelle Konfigurationen, Sofort-Downloads und Affiliate-Artikel. Profitiere von Erweiterungen für <a href=\"https://woocommerce.com/products/woocommerce-bookings/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Buchungen</a>, <a href=\"https://woocommerce.com/products/woocommerce-memberships/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Mitgliedschaften</a>, <a href=\"https://woocommerce.com/products/woocommerce-subscriptions/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Abonnements</a> und <a href=\"https://woocommerce.com/products/dynamic-pricing/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">dynamische Preisregeln</a>.</li>\n<li>Durch den <a href=\"https://www.searchenginejournal.com/wordpress-best-cms-seo/\" rel=\"nofollow ugc\">SEO-Vorteil von WordPress</a> <strong>sorgst du dafür, dass deine Website in der Ergebnisliste oben steht</strong> .</li>\n</ul>\n<p>Integrierte Tools und beliebte Integrationen erleichtern dir die effiziente Organisation deiner Geschäftsabläufe. Über den optionalen <a href=\"https://docs.woocommerce.com/document/woocommerce-setup-wizard/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Einrichtungsassistenten</a> lassen sich viele Dienste mit nur einem Klick kostenlos hinzufügen.</p>\n<ul>\n<li><strong>Lege fest, wie du Zahlungen erhalten willst</strong>. Mit <a href=\"https://woocommerce.com/payments/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Payments</a> lassen sich Zahlungen ganz bequem über deinen Shop verwalten (verfügbar in den USA, dem Vereinigten Königreich, in Irland, Australien, Neuseeland und Kanada und jetzt auch in Spanien, Frankreich, Deutschland und Italien). Dank <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">über 100 Zahlungs-Gateways</a> – wie etwa <a href=\"https://woocommerce.com/products/stripe/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Stripe</a>, <a href=\"https://woocommerce.com/products/woocommerce-gateway-paypal-checkout/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">PayPal</a> und <a href=\"https://woocommerce.com/products/square/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Square</a> – kannst du Zahlungen per Karte, mobilem Wallet, Banküberweisung und Bargeld sicher annehmen.</li>\n<li><strong>Konfiguriere deine Versandoptionen</strong>. Mit <a href=\"https://woocommerce.com/products/shipping/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Shipping</a> (nur in den USA) kannst du USPS-Etiketten direkt über dein Dashboard ausdrucken und sogar Abholungen planen. Verknüpfe <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">bekannte Versanddienstleister</a> wie UPS, FedEx und ShipStation sowie unterschiedlichste Liefer-, Bestands- und Erfüllungslösungen für deine Sprache.</li>\n<li><strong>Vereinfache die Umsatzsteuer</strong>. Füge <a href=\"https://woocommerce.com/products/tax/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Tax</a> oder <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/tax?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">ähnliche integrierte Dienste</a> hinzu, um automatische Berechnungen zu ermöglichen.</li>\n</ul>\n<h4>Baue dein Business aus, füge Funktionen hinzu und behalte deinen Store auch unterwegs im Auge</h4>\n<p>WooCommerce bedeutet Business. Mit <a href=\"https://wordpress.org/plugins/woocommerce-admin/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\">WooCommerce Admin</a>, einem leistungsfähigen, anpassbaren zentralen Dashboard für deinen Store kannst du die für dich relevanten Performance-Kennzahlen im Auge behalten.</p>\n<p>Mit <a href=\"https://woocommerce.com/products/google-ads/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Google Ads</a>-, <a href=\"https://woocommerce.com/products/hubspot-for-woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">HubSpot</a>-, <a href=\"https://woocommerce.com/products/mailchimp-for-woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Mailchimp</a>&#8211; und <a href=\"https://woocommerce.com/products/facebook/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Facebook</a>-Integrationen kannst du deine Zielgruppe über Marketing- und Social Media-Kanäle vergrößern. Im in das Dashboard integrierten <a href=\"https://docs.woocommerce.com/document/marketing-hub/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Marketingzentrum</a> findest du immer neue Ideen und Tipps, die dir helfen, erfolgreich zu sein.</p>\n<p>Mit Hunderten kostenloser und gebührenpflichtigen Erweiterungen aus dem <a href=\"https://woocommerce.com/products/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">offiziellen WooCommerce Marketplace</a> kannst du die Funktionen deines Stores verbessern. Unsere Entwickler <a href=\"https://docs.woocommerce.com/document/marketplace-overview/#section-6?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">überprüfen jede neue Erweiterung</a> und prüfen auch regelmäßig bestehende Produkte, um Marketplace-Qualitätsstandards aufrechtzuerhalten. Wir <a href=\"https://docs.woocommerce.com/document/marketplace-overview/#section-2?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">suchen aktiv nach Produkten, die Store-Erstellern helfen, erfolgreiche Stores aufzubauen</a>.</p>\n<p>Mit der kostenlosen <a href=\"https://woocommerce.com/mobile/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Mobil-App</a> von WooCommerce (für Android und iOS) kannst du deinen Store von überall aus verwalten. Achtung: Der Benachrichtigungston „Ka-tsching“ bei jedem neuen Verkauf kann durchaus süchtig machen!</p>\n<h4>Deine Store-Daten gehören dir und du behältst die Kontrolle darüber – für immer</h4>\n<p>Mit WooCommerce gehören deine Daten dir. Immer.</p>\n<p>Wenn du dich dazu entscheidest, <a href=\"https://woocommerce.com/usage-tracking/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Nutzungsdaten</a> mit uns zu teilen, kannst du darauf vertrauen, dass diese anonymisiert und sicher gespeichert werden. Du kannst die Option jederzeit abwählen, ohne dass dies Auswirkungen auf deinen Store hat.</p>\n<p>Anders als bei gehosteten eCommerce-Lösungen sind WooCommerce-Storedaten zukunftssicher: Wenn du zu einer anderen Plattform umziehen möchtest, kannst du alle deine Inhalte exportieren und deine Website dort hinbringen, wo du sie haben möchtest. Ohne Einschränkungen.</p>\n<h4>Warum sich Entwickler für WooCommerce entscheiden (und davon begeistert sind)</h4>\n<p>Entwickler können mit WooCommerce einen Store erstellen, anpassen und skalieren, der die genauen Vorgaben eines Kunden erfüllt. Außerdem können sie über Erweiterungen und individuelle Lösungen Verbesserungen vornehmen.</p>\n<ul>\n<li>Nutze <a href=\"https://docs.woocommerce.com/document/introduction-to-hooks-actions-and-filters/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Hooks und Filter</a>, um Funktionen zu ändern und zu erstellen.</li>\n<li>Mit einer robusten <a href=\"https://docs.woocommerce.com/document/woocommerce-rest-api/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">REST-API</a> und Webhooks kannst du quasi jeden Dienst virtuell integrieren.</li>\n<li>Mit React kannst du individuelle Inhaltsblöcke entwerfen und erstellen.</li>\n<li>Du kannst alle Aspekte des Core-Plugin-Codes <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/woocommerce-codex/extending/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">prüfen und ändern</a> .</li>\n<li>Beschleunige die Entwicklung mit einer blitzschnellen <a href=\"https://woocommerce.github.io/code-reference/classes/wc-cli-rest-command.html?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">CLI</a>.</li>\n</ul>\n<p>Die Kernplattform wird streng und oft getestet und durch ein engagiertes Entwicklungsteam unterstützt, das über mehrere Zeitzonen verteilt arbeitet. Bei jeder neuen Version wird die umfangreiche Dokumentation aktualisiert, sodass du genau den Store erstellen kannst, den du benötigst.</p>\n<h4>Werde Mitglied unserer wachsenden internationalen Community</h4>\n<p>WooCommerce verfügt über eine große, leidenschaftliche Community, die Verkäufern zum Erfolg verhelfen möchte, und sie wächst rasant.</p>\n<p>Es gibt <a href=\"https://woocommerce.com/meetups/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce Meetups</a> auf der ganzen Welt, an denen du umsonst teilnehmen kannst – du kannst sogar bei der Planung behilflich sein. Diese Veranstaltungen bieten dir die Möglichkeit, von anderen zu lernen, dein Fachwissen zu teilen und dich mit Gleichgesinnten zu verbinden.</p>\n<p>WooCommerce ist auch regelmäßig in WordCamps auf der ganzen Welt vertreten und wir würden uns freuen, dich dort zu treffen.</p>\n<h4>Einen Beitrag leisten und übersetzen</h4>\n<p>WooCommerce wird von Automattic, den Erfindern von WordPress.com und Jetpack, entwickelt und unterstützt. Außerdem untertstützen uns Hunderte von unabhängigen Beitragenden – und wir können stets weitere Hilfe gebrauchen. Auf <a href=\"https://github.com/woocommerce/woocommerce?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce GitHub Repository</a> findest du heraus, was du tun kannst.</p>\n<p>WooCommerce ist in zahlreiche Sprachen übersetzt, einschließlich Dänisch, Ukrainisch und Persisch. Unterstütze die weitere Lokalisierung von WooCommerce, indem du deine Sprache hinzufügst. Rufe dazu <a href=\"https://translate.wordpress.org/projects/wp-plugins/woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">translate.wordpress.org</a> auf.</p>\n\";s:12:\"installation\";s:2603:\"<h4>Mindestanforderungen</h4>\n<ul>\n<li>PHP 7.2 oder höher wird empfohlen</li>\n<li>MySQL 5.6 oder höher wird empfohlen</li>\n</ul>\n<p>Eine detaillierte Liste der Serveranforderungen findest du in der <a href=\"https://docs.woocommerce.com/document/server-requirements/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow ugc\">Dokumentation der WooCommerce-Serveranforderungen</a>.</p>\n<h4>Automatische Installation</h4>\n<p>Automatic installation is the easiest option &#8212; WordPress will handle the file transfer, and you won’t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu, and click “Add New.”</p>\n<p>Gib im Suchfeld „WooCommerce“ ein und klicke dann auf „Plugins suchen“. Sobald du es gefunden hast, kannst du dir Details zum Release, zur Bewertung und zur Beschreibung anzeigen lassen. Und das Wichtigste: Du kannst es sofort installieren! Klicke dazu auf „Jetzt installieren“ und WordPress übernimmt den Rest.</p>\n<h4>Manuelle Installation</h4>\n<p>Für die manuelle Installation musst du unser WooCommerce Plugin herunterladen und es auf deinen Webserver mit deinem präferierten FTP-Programm hochladen. Der WordPress Codex enhält <a href=\"https://wordpress.org/support/article/managing-plugins/#manual-plugin-installation\">alle Informationen die dafür notwendig sind (engl.)</a>.</p>\n<h4>Aktualisierung</h4>\n<p>Automatische Updates sollten reibungslos funktionieren. Wir empfehlen dir aber trotzdem, deine Website zu sichern.</p>\n<p>Falls es einmal vorkommt, dass es nach einem Update zu Problemen mit den Shop- /Kategorie-Seiten kommt, müssen einfach alle Permalinks aktualisiert werden. Gehe dafür auf in WordPress auf Einstellungen &gt; Permalinks und klicke einmal ganz unten auf &#8222;Speichern&#8220;. Nun sollte wieder alles wie gewohnt funktionieren.</p>\n<h4>Beispiel-Daten</h4>\n<p>WooCommerce enthält Beispieldaten, die dir zeigen, wie deine Produkte aussehen. Importiere dazu die Datei „sample_products.xml“ mit dem <a href=\"https://wordpress.org/plugins/wordpress-importer/\">WordPress-Importierer</a>. Du kannst die Datei „sample_products.csv“ auch mit dem <a href=\"https://docs.woocommerce.com/document/product-csv-importer-exporter/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow ugc\">CSV-Importer</a> oder unserer <a href=\"https://woocommerce.com/products/product-csv-import-suite/?utm_source=wp%20org%20repo%20listing&amp;utm_content=3.6\" rel=\"nofollow ugc\">CSV Import Suite-Erweiterung</a> importieren.</p>\n\";s:3:\"faq\";s:8659:\"\n<dt id=\'where%20can%20i%20find%20woocommerce%20documentation%20and%20user%20guides%3F\'>\nWo kann ich die WooCommerce Dokumentation und Benutzerhandbücher finden?\n</h4>\n<p>\n<p>Hilfreiche Informationen zur Einrichtung und Konfiguration von WooCommerce findest du in der Anleitung <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/getting-started/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">„Erste Schritte“</a> und im <a href=\"https://woocommerce.com/guides/new-store/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">neuen Handbuch für WooCommerce -Store-Besitzer</a>.</p>\n<p>Informationen zur Erweiterung oder Theme-Erstellung zu WooCommerce findest du in unserem <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/woocommerce-codex/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Codex</a> und im <a href=\"https://docs.woocommerce.com/document/create-a-plugin/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Handbuch für Plugin-Entwickler</a>.</p>\n</p>\n<dt id=\'where%20can%20i%20get%20help%20or%20talk%20to%20other%20users%20about%20woocommerce%20core%3F\'>\nWo kann ich Hilfe zu WooCommerce Core erhalten oder mich mit anderen Benutzern darüber austauschen?\n</h4>\n<p>\n<p>Wenn du nicht weiterkommst, kannst du im <a href=\"https://wordpress.org/support/plugin/woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\">WooCommerce-Support-Forum</a> unter Berücksichtigung <a href=\"https://wordpress.org/support/topic/guide-to-the-woocommerce-forum/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\">dieser Richtlinien</a> nach Hilfe fragen, dich über den <a href=\"https://woocommerce.com/community-slack/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce-Community-Slack-Channel</a> melden oder in der <a href=\"https://www.facebook.com/groups/advanced.woocommerce?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce-Community-Gruppe</a> auf Facebook einen Beitrag veröffentlichen.</p>\n</p>\n<dt id=\'where%20can%20i%20get%20help%20for%20extensions%20i%20have%20purchased%20on%20woocommerce.com%3F\'>\nWo kann ich Hilfe zu Erweiterungen erhalten, die ich auf WooCommerce.com gekauft habe?\n</h4>\n<p>\n<p>Für Unterstützung bei kostenpflichtigen Erweiterungen vom WooCommerce.com Marketplace: Lies dir zuerst unseren <a href=\"https://docs.woocommerce.com/document/woocommerce-self-service-guide/\" rel=\"nofollow ugc\">Leitfaden zur Self-Service-Problembehandlung</a> durch. Wenn das Problem weiterhin besteht, öffne über <a href=\"https://woocommerce.com/my-account/create-a-ticket/\" rel=\"nofollow ugc\">unser Helpdesk</a> ein Support-Ticket. Unsere engagierten Support-Mitarbeiter bemühen sich, innerhalb von 24 Stunden zu antworten.</p>\n</p>\n<dt id=\'i%E2%80%99m%20having%20trouble%20logging%20in%20to%20woocommerce.com%20%E2%80%93%20what%20now%3F\'>\nIch habe Probleme mit der Anmeldung bei WooCommerce.com. Was nun?\n</h4>\n<p>\n<p>Behebe gängige Anmeldeprobleme zunächst anhand dieser hilfreichen <a href=\"https://docs.woocommerce.com/document/log-into-woocommerce-com-with-wordpress-com/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Schritt-für-Schritt-Anleitung</a>. Es funktioniert immer noch nicht? <a href=\"https://woocommerce.com/contact-us/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Kontaktiere uns</a>.</p>\n</p>\n<dt id=\'will%20woocommerce%20work%20with%20my%20theme%3F\'>\nFunktioniert WooCommerce mit meinem Theme?\n</h4>\n<p>\n<p>Ja! WooCommerce kann mit jedem Theme verwendet werden. In manchen Fällen können allerdings zusätzliche Änderungen am Stil erforderlich sein. Wenn du nach einem Theme suchst, das eine umfassende WooCommerce-Integration bietet, empfehlen wir dir <a href=\"https://woocommerce.com/storefront/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Storefront</a>.</p>\n</p>\n<dt id=\'how%20do%20i%20update%20woocommerce%3F\'>\nWie kann ich WooCommerce aktualisieren?\n</h4>\n<p>\n<p>Es gibt einen ausführlichen Leitfaden zur <a href=\"https://docs.woocommerce.com/document/how-to-update-woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Aktualisierung von WooCommerce</a>.</p>\n</p>\n<dt id=\'my%20site%20broke%20%E2%80%93%20what%20do%20i%20do%3F\'>\nMeine Website ist ausgefallen. Was kann ich tun?\n</h4>\n<p>\n<p>Diagnostiziere das Problem zuerst mithilfe unseres hilfreichen <a href=\"https://docs.woocommerce.com/documentation/get-help/troubleshooting-get-help/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Leitfadens zur Problembehandlung</a>.</p>\n<p>Wenn du den Fehler nach der Aktualisierung eines Themes oder Plugins bemerkt hast, bestehen möglicherweise Kompatibilitätsprobleme zwischen dem Theme oder Plugin und WooCommerce. Wenn das Problem nach der Aktualisierung von WooCommerce auftrat, könnte ein Konflikt zwischen WooCommerce und einem veralteten Theme oder Plugin bestehen.</p>\n<p>In beiden Fällen empfehlen wir dir, mit der <a href=\"https://docs.woocommerce.com/document/troubleshooting-using-health-check/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Zustandsprüfung</a> (womit du Themes und Plugins ohne Auswirkungen auf deine Besucher deaktivieren kannst) eine Problembehandlung durchzuführen oder das Problem mit einer <a href=\"https://docs.woocommerce.com/document/how-to-test-for-conflicts/#section-3?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Staging-Website</a> zu beheben.</p>\n</p>\n<dt id=\'where%20can%20i%20report%20bugs%3F\'>\nWo kann ich Fehler melden?\n</h4>\n<p>\n<p>Melde Fehler im <a href=\"https://github.com/woocommerce/woocommerce/issues?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">WooCommerce GitHub-Verzeichnis</a>. Du kannst uns auch über unser Support-Forum benachrichtigen. Durchsuche aber zuerst die Foren, um zu sehen, ob der Fehler nicht bereits gemeldet wurde.</p>\n</p>\n<dt id=\'where%20can%20i%20request%20new%20features%2C%20themes%2C%20and%20extensions%3F\'>\nWo kann ich neue Funktionen, Themes und Erweiterungen anfordern?\n</h4>\n<p>\n<p>In unserem offiziellen <a href=\"https://ideas.woocommerce.com/forums/133476-woocommerce?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Ideas Board</a> kannst du neue Features und Erweiterungen anfordern und über bestehende Vorschläge abstimmen. Anfragen werden von unseren Produktteams regelmäßig geprüft und sind hilfreich für unsere Produktplanung.</p>\n</p>\n<dt id=\'woocommerce%20is%20awesome%21%20can%20i%20contribute%3F\'>\nWooCommerce ist klasse! Kann ich zum Projekt beitragen?\n</h4>\n<p>\n<p>Ja! Tritt unserem <a href=\"https://github.com/woocommerce/woocommerce/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">GitHub-Verzeichnis</a> bei und abonniere das <a href=\"https://woocommerce.wordpress.com/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Entwickler-Blog</a>, um über Neuerungen im Projekt auf dem Laufenden zu bleiben.</p>\n</p>\n<dt id=\'where%20can%20i%20find%20rest%20api%20documentation%3F\'>\nWo finde ich die REST-API-Dokumentation?\n</h4>\n<p>\n<p>Eine umfangreiche <a href=\"https://woocommerce.github.io/woocommerce-rest-api-docs/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">Dokumentation zur REST-API von WooCommerce</a> findest du auf GitHub.</p>\n</p>\n<dt id=\'my%20question%20is%20not%20listed%20here.%20where%20can%20i%20find%20more%20answers%3F\'>\nMeine Frage ist hier nicht aufgelistet. Wo kann ich weitere Antworten finden.\n</h4>\n<p>\n<p>Weitere Informationen findest du in unseren <a href=\"https://docs.woocommerce.com/document/frequently-asked-questions/?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">häufig gestellten Fragen</a> .</p>\n</p>\n\n\";s:9:\"changelog\";s:19383:\"<h4>6.1.1 2022-01-20</h4>\n<p><strong>WooCommerce</strong></p>\n<ul>\n<li>Enhancement &#8211; Add support for 2022 theme shop and product pages. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31536\" rel=\"nofollow ugc\">#31536</a> )</li>\n<li>Enhancement &#8211; Add support for 2022 my account pages. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31575\" rel=\"nofollow ugc\">#31575</a> )</li>\n<li>Enhancement &#8211; Add support for 2022 checkout page. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31630\" rel=\"nofollow ugc\">#31630</a> )</li>\n<li>Fix &#8211; Use inline <code>onload</code> event instead of jQuery <code>load</code>. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31623\" rel=\"nofollow ugc\">#31623</a> )</li>\n<li>Fix &#8211; Removes the revert warning about is_ajax. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31672\" rel=\"nofollow ugc\">#31672</a> )</li>\n<li>Tweak &#8211; Better styling for checkout form for 2022 theme. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31619\" rel=\"nofollow ugc\">#31619</a> )</li>\n<li>Tweak &#8211; Center product cards in the 2022 theme. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31626\" rel=\"nofollow ugc\">#31626</a> )</li>\n<li>Tweak &#8211; Fix font sizes in single product tabs area in 2022 theme. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31632\" rel=\"nofollow ugc\">#31632</a> )</li>\n<li>Tweak &#8211; Modify background color for <code>mark</code> elements in 2022 theme. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31631\" rel=\"nofollow ugc\">#31631</a> )</li>\n<li>Tweak &#8211; Adjusts basis of overlay in 2022 theme checkout. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31633\" rel=\"nofollow ugc\">#31633</a> )</li>\n<li>Tweak &#8211; Improve order details table on narrow viewports in 2022 theme. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31634\" rel=\"nofollow ugc\">#31634</a> )</li>\n</ul>\n<p><strong>WooCommerce Blocks &#8211; 6.5.2</strong></p>\n<ul>\n<li>Fix &#8211; Update WooCommerce plugin slug for Block Templates. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5519\" rel=\"nofollow ugc\">#5519</a> )</li>\n</ul>\n<h4>6.1.0 2022-01-11</h4>\n<p><strong>WooCommerce</strong></p>\n<ul>\n<li>Fix &#8211; Ensure coupon data is stored consistently when created outside of frontend checkout. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31338\" rel=\"nofollow ugc\">#31338</a> )</li>\n<li>Fix &#8211; Correct hardcoded template directory email path. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31321\" rel=\"nofollow ugc\">#31321</a> )</li>\n<li>Fix &#8211; Update <code>count</code> param consistently to make <code>remote_file</code> param accurate. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31227\" rel=\"nofollow ugc\">#31227</a> )</li>\n<li>Fix &#8211; errant stock adjustment on restocked items when saving partially refunded orders. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31172\" rel=\"nofollow ugc\">#31172</a> )</li>\n<li>Fix &#8211; REST API now supplies the correct pagination information when fetching tax rates. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/30890\" rel=\"nofollow ugc\">#30890</a> )</li>\n<li>Fix &#8211; Update block theme checks to work when Gutenberg is not enabled. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31523\" rel=\"nofollow ugc\">#31523</a> )</li>\n<li>Tweak &#8211; Adds the image size to the thumbnail gallery nav. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31407\" rel=\"nofollow ugc\">#31407</a> )</li>\n<li>Tweak &#8211; Geolocating a specific IP address should not be impacted by request headers. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31394\" rel=\"nofollow ugc\">#31394</a> )</li>\n<li>Tweak &#8211; Update shipping base address settings wording. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31383\" rel=\"nofollow ugc\">#31383</a> )</li>\n<li>Tweak &#8211; Fix db version inconsistency during updates spanning multiple versions. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31373\" rel=\"nofollow ugc\">#31373</a> )</li>\n<li>Tweak &#8211; Add ReturnTypeWillChange attributes to prevent errors in PHP 8.1. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31286\" rel=\"nofollow ugc\">#31286</a> )</li>\n<li>Tweak &#8211; Improve accessibility of the variable product add to cart table on product singles. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31105\" rel=\"nofollow ugc\">#31105</a> )</li>\n<li>Update &#8211; Change Label of States for Republicana Dominicana &amp; add states. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31191\" rel=\"nofollow ugc\">#31191</a> )</li>\n<li>Update &#8211; Change Label of States for Albania &amp; add states. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31190\" rel=\"nofollow ugc\">#31190</a> )</li>\n<li>Update &#8211; Change Label of States for Costa Rica &amp; add states. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31189\" rel=\"nofollow ugc\">#31189</a> )</li>\n<li>Update &#8211; Change Label of States for Colombia &amp; add states. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31188\" rel=\"nofollow ugc\">#31188</a> )</li>\n<li>Update &#8211; Change Label of States for Guatemala &amp; fix iso code for states. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31187\" rel=\"nofollow ugc\">#31187</a> )</li>\n<li>Update &#8211; Change Label of States for Ecuador &amp; add states. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31186\" rel=\"nofollow ugc\">#31186</a> )</li>\n<li>Update &#8211; Change Label of States for Bolivia &amp; add states. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31181\" rel=\"nofollow ugc\">#31181</a> )</li>\n<li>Update &#8211; Change Label of States for Honduras &amp; add states. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31180\" rel=\"nofollow ugc\">#31180</a> )</li>\n<li>Update &#8211; Change Label of States for Nicaragua &amp; add states. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31179\" rel=\"nofollow ugc\">#31179</a> )</li>\n<li>Update &#8211; Change Label of States for Panama &amp; add states. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31178\" rel=\"nofollow ugc\">#31178</a> )</li>\n<li>Update &#8211; Change Label of States for Paraguay. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31177\" rel=\"nofollow ugc\">#31177</a> )</li>\n<li>Update &#8211; Change Label of States for El Salvador &amp; add states. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31176\" rel=\"nofollow ugc\">#31176</a> )</li>\n<li>Update &#8211; Change Label of States for Venezuela &amp; fix iso code for states. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31175\" rel=\"nofollow ugc\">#31175</a> )</li>\n<li>Update &#8211; Change Label of States for Uruguay &amp; add states. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31167\" rel=\"nofollow ugc\">#31167</a> )</li>\n<li>Update &#8211; Show fallback message when extensions marketplace cannot connect to WCCOM API. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31126\" rel=\"nofollow ugc\">#31126</a> )</li>\n<li>Update &#8211; Add support for Gutenberg 12.1.0 block template naming convention in themes. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31522\" rel=\"nofollow ugc\">#31522</a> )</li>\n<li>Dev &#8211; Deprecated is_ajax() in favor of WordPress&#8217;s own wp_doing_ajax() function. ( <a href=\"https://github.com/woocommerce/woocommerce/pull/31113\" rel=\"nofollow ugc\">#31113</a> )</li>\n</ul>\n<p><strong>ActionScheduler &#8211; 3.4.0</strong></p>\n<ul>\n<li>Enhancement &#8211; Number of items per page can now be set for the Scheduled Actions view (props @ovidiul). ( <a href=\"https://github.com/woocommerce/action-scheduler/pull/771\" rel=\"nofollow ugc\">#771</a> )</li>\n<li>Fix &#8211; Do not lower the max_execution_time if it is already set to 0 (unlimited) (props @barryhughes). ( <a href=\"https://github.com/woocommerce/action-scheduler/pull/755\" rel=\"nofollow ugc\">#755</a> )</li>\n<li>Fix &#8211; Avoid triggering autoloaders during the version resolution process (props @olegabr). ( <a href=\"https://github.com/woocommerce/action-scheduler/pull/731\" rel=\"nofollow ugc\">#731</a> &amp; <a href=\"https://github.com/woocommerce/action-scheduler/pull/776\" rel=\"nofollow ugc\">#776</a> )</li>\n<li>Dev &#8211; ActionScheduler_wcSystemStatus PHPCS fixes (props @ovidiul). ( <a href=\"https://github.com/woocommerce/action-scheduler/pull/761\" rel=\"nofollow ugc\">#761</a> )</li>\n<li>Dev &#8211; ActionScheduler_DBLogger.php PHPCS fixes (props @ovidiul). ( <a href=\"https://github.com/woocommerce/action-scheduler/pull/768\" rel=\"nofollow ugc\">#768</a> )</li>\n<li>Dev &#8211; Fixed phpcs for ActionScheduler_Schedule_Deprecated (props @ovidiul). ( <a href=\"https://github.com/woocommerce/action-scheduler/pull/762\" rel=\"nofollow ugc\">#762</a> )</li>\n<li>Dev &#8211; Improve actions table indicies (props @glagonikas). ( <a href=\"https://github.com/woocommerce/action-scheduler/pull/774\" rel=\"nofollow ugc\">#774</a> &amp; <a href=\"https://github.com/woocommerce/action-scheduler/pull/777\" rel=\"nofollow ugc\">#777</a> )</li>\n<li>Dev &#8211; PHPCS fixes for ActionScheduler_DBStore.php (props @ovidiul). ( <a href=\"https://github.com/woocommerce/action-scheduler/pull/769\" rel=\"nofollow ugc\">#769</a> &amp; <a href=\"https://github.com/woocommerce/action-scheduler/pull/778\" rel=\"nofollow ugc\">#778</a> )</li>\n<li>Dev &#8211; PHPCS Fixes for ActionScheduler_Abstract_ListTable (props @ovidiul). ( <a href=\"https://github.com/woocommerce/action-scheduler/pull/763\" rel=\"nofollow ugc\">#763</a> &amp; <a href=\"https://github.com/woocommerce/action-scheduler/pull/779\" rel=\"nofollow ugc\">#779</a> )</li>\n<li>Dev &#8211; Adds new filter action_scheduler_claim_actions_order_by to allow tuning of the claim query (props @glagonikas). ( <a href=\"https://github.com/woocommerce/action-scheduler/pull/773\" rel=\"nofollow ugc\">#773</a> )</li>\n<li>Dev &#8211; PHPCS fixes for ActionScheduler_WpPostStore class (props @ovidiul). ( <a href=\"https://github.com/woocommerce/action-scheduler/pull/780\" rel=\"nofollow ugc\">#780</a> )</li>\n</ul>\n<p><strong>WooCommerce Admin &#8211; 3.0.0 &amp; 3.0.1 &amp; 3.0.2 &amp; 3.0.3</strong></p>\n<ul>\n<li>Fix &#8211; Fix an issue with the code that makes use of an invalid parameter with a PHP function. The use of this invalid parameter causes PHP 8 to throw a Fatal Error. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7855\" rel=\"nofollow ugc\">#7855</a> )</li>\n<li>Fix &#8211; Fix TaskList UI experiment enablement logic. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7930\" rel=\"nofollow ugc\">#7930</a> )</li>\n<li>Fix &#8211; Navigation nudge note and navigation feedback notes will delete themselves if the navigation feature is not available. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7914\" rel=\"nofollow ugc\">#7914</a> )</li>\n<li>Fix &#8211; Replace old task list option calls with data store selectors. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7820\" rel=\"nofollow ugc\">#7820</a> )</li>\n<li>Fix &#8211; Self-delete NavigationFeedbackFollowUp note when navigation feature is not present. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7939\" rel=\"nofollow ugc\">#7939</a> )</li>\n<li>Fix &#8211; Fix PHP Warning on &#8218;Add new product&#8216; page. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7989\" rel=\"nofollow ugc\">#7989</a> )</li>\n<li>Fix &#8211; Fix usage of WordPress DatePicker component. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7982\" rel=\"nofollow ugc\">#7982</a> )</li>\n<li>Fix &#8211; Fix shipping task completion status. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/8031\" rel=\"nofollow ugc\">#8031</a> )</li>\n<li>Fix &#8211; Do not initialize WC Pay promotion if spec is empty. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/8087\" rel=\"nofollow ugc\">#8087</a> )</li>\n<li>Fix &#8211; Render the activity panel when the experimental tasklist is hidden. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/8111\" rel=\"nofollow ugc\">#8111</a> )</li>\n<li>Fix &#8211; Fix blank payment gateway method in table when WooCommerce Payments is not supported. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/8122\" rel=\"nofollow ugc\">#8122</a> )</li>\n<li>Add &#8211; Add option to dismiss promotional payment gateway. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7965\" rel=\"nofollow ugc\">#7965</a> )</li>\n<li>Add &#8211; OBW &#8211; Add number of employees field. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7963\" rel=\"nofollow ugc\">#7963</a> )</li>\n<li>Add &#8211; Add <code>woocommerce_allow_marketplace_suggestions</code> filter to WooCommerce Payments payment method promotion. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/8117\" rel=\"nofollow ugc\">#8117</a> )</li>\n<li>Update &#8211; Ending wcpay promotion experiment and always displaying in payment methods table.</li>\n<li>Update &#8211; Hide InboxPanel header when it is rendered in the sidebar. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7952\" rel=\"nofollow ugc\">#7952</a> )</li>\n<li>Update &#8211; Introduce a 320 character limit for inbox note contents. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7958\" rel=\"nofollow ugc\">#7958</a> )</li>\n<li>Update &#8211; Move payments task to extended task list when WC Pay task is shown. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7980\" rel=\"nofollow ugc\">#7980</a> )</li>\n<li>Update &#8211; Rename Inbox to Activity from the activity header. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7879\" rel=\"nofollow ugc\">#7879</a> )</li>\n<li>Update &#8211; Load both actioned and unactioned notes. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7983\" rel=\"nofollow ugc\">#7983</a> )</li>\n<li>Dev &#8211; Explicitly sets the Node version to 14 in .nvmrc to prevent incompatible versions of Node from being used with nvm. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7932\" rel=\"nofollow ugc\">#7932</a> )</li>\n<li>Dev &#8211; Remove unused npm package @woocommerce/settings. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7949\" rel=\"nofollow ugc\">#7949</a> )</li>\n<li>Dev &#8211; Update payment method recommendation to new woocommerce.com endpoint. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7913\" rel=\"nofollow ugc\">#7913</a> )</li>\n<li>Dev &#8211; Use abstraction to add and retrieve task data. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7918\" rel=\"nofollow ugc\">#7918</a> )</li>\n<li>Tweak &#8211; Added dismiss all button for inbox notes.</li>\n<li>Tweak &#8211; Implement note read state. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7896\" rel=\"nofollow ugc\">#7896</a> )</li>\n<li>Tweak &#8211; Add inbox_panel_view tracks event. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/8002\" rel=\"nofollow ugc\">#8002</a> )</li>\n<li>Enhancement &#8211; Add tests to Subscriptions inclusion. ( <a href=\"https://github.com/woocommerce/woocommerce-admin/pull/7804\" rel=\"nofollow ugc\">#7804</a> )</li>\n</ul>\n<p><strong>WooCommerce Blocks &#8211; 6.4.0 &amp; 6.5.0 &amp; 6.5.1</strong></p>\n<ul>\n<li>Enhancement &#8211; Pass to payment methods a wrapper component that handles the loading state. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5135\" rel=\"nofollow ugc\">#5135</a> )</li>\n<li>Enhancement &#8211; Added global styles (text color, link color, line height, and font size) to the Product Title block. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5133\" rel=\"nofollow ugc\">#5133</a> )</li>\n<li>Fix &#8211; Gate WC template editing (FSE) to versions of WC 6.0 or higher. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5210\" rel=\"nofollow ugc\">#5210</a> )</li>\n<li>Fix &#8211; Fix manual entry within Quantity Inputs in Cart block. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5197\" rel=\"nofollow ugc\">#5197</a> )</li>\n<li>Fix &#8211; Correctly align Terms and Conditions block checkbox in Checkout block. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5191\" rel=\"nofollow ugc\">#5191</a> )</li>\n<li>Fix &#8211; Add support for decimal and thousand separators in the <code>formatPrice</code> function. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5188\" rel=\"nofollow ugc\">#5188</a> )</li>\n<li>Fix &#8211; Reduce the size of the checkbox component label to prevent accidental input. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5164\" rel=\"nofollow ugc\">#5164</a> )</li>\n<li>Fix &#8211; Lazy load missing translation files on frontend to ensure that all visible texts are translatable. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5112\" rel=\"nofollow ugc\">#5112</a> )</li>\n<li>Fix &#8211; Fixed Featured Product Block search not working for large stores. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5156\" rel=\"nofollow ugc\">#5156</a> )</li>\n<li>Fix &#8211; Fixed error reporting block templates do not exist after editing WooCommerce templates on WP 5.8. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5425\" rel=\"nofollow ugc\">#5425</a> )</li>\n<li>Fix &#8211; Added By template column value is user friendly for modified WooCommerce block templates. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5420\" rel=\"nofollow ugc\">#5420</a> )</li>\n<li>Fix &#8211; Avoid WooCommerce template names being editable. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5385\" rel=\"nofollow ugc\">#5385</a> )</li>\n<li>Fix &#8211; Use the themes product archive block template for product category &amp; product tag pages if the theme does not have more specific templates for those. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5380\" rel=\"nofollow ugc\">#5380</a> )</li>\n<li>Fix &#8211; Fixed issue with variable products add to cart error, and gallery not updating to show correct product variant image. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5346\" rel=\"nofollow ugc\">#5346</a> )</li>\n<li>Fix &#8211; Fix error when reverting WooCommerce templates. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5342\" rel=\"nofollow ugc\">#5342</a> )</li>\n<li>Fix &#8211; Fix: WooCommerce block templates loading for WP 5.9 without Gutenberg plugin. ( <a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5335\" rel=\"nofollow ugc\">#5335</a> )</li>\n</ul>\n<p><a href=\"https://raw.githubusercontent.com/woocommerce/woocommerce/trunk/changelog.txt\" rel=\"nofollow ugc\">Siehe Änderungsprotokoll für alle Versionen</a>.</p>\n\";s:11:\"screenshots\";s:1035:\"<ol><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-1.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-1.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-2.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-2.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-3.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-3.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-4.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-4.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-5.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-5.jpg?rev=2366418\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/woocommerce/assets/screenshot-6.jpg?rev=2366418\"><img src=\"https://ps.w.org/woocommerce/assets/screenshot-6.jpg?rev=2366418\" alt=\"\"></a></li></ol>\";s:7:\"reviews\";s:14314:\"<div class=\"review\">\n     <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">wp es increíble enserio</h4>\n                              <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/yomar006/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a7d8e4332a319357a03743691dfdf419?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a7d8e4332a319357a03743691dfdf419?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/yomar006/\" class=\"reviewer-name\">yomar006</a> am <span class=\"review-date\">Februar 3, 2022</span>                    </p>\n          </div>\n        </div>\n        <div class=\"review-body\">enserio mi impresiona las funciones que tiene cada vez encuentro mas y mas</div>\n</div>\n<div class=\"review\">\n   <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">5 Stars</h4>\n                               <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/topboj/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/8e0a3966f29a5e6018ad514f10ac4853?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/8e0a3966f29a5e6018ad514f10ac4853?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/topboj/\" class=\"reviewer-name\">tonerhouse <small>(topboj)</small></a> am <span class=\"review-date\">Januar 24, 2022</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">5 Stars</div>\n</div>\n<div class=\"review\">\n      <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Do not upgrade!!!</h4>\n                             <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/trenerowicz/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/0d40a5fd3d8557833bf3ced9098b0381?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/0d40a5fd3d8557833bf3ced9098b0381?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/trenerowicz/\" class=\"reviewer-name\">trenerowicz</a> am <span class=\"review-date\">Januar 23, 2022</span>                   </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Do not upgrade now, it may break your shop</div>\n</div>\n<div class=\"review\">\n   <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">eror</h4>\n                          <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"2 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                         </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/moveeco/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d9dc6f73b9ff5bb49ecbf066b687d906?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d9dc6f73b9ff5bb49ecbf066b687d906?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/moveeco/\" class=\"reviewer-name\">moveeco</a> am <span class=\"review-date\">Januar 26, 2022</span>                       </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Hello, My website HAS GOT WHITE SCREEN after upgrading to WooCommerce 6.1. It\'s so broken that I have to disable WooCommerce to connect to the dashboard. I have reverted to the previous version. for 2 website moveeco.ro and moveeco.hu\n\n</div>\n</div>\n<div class=\"review\">\n      <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">My site is down after upgrade to WooCommerce 6.1.0</h4>\n                            <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/kayelu/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ab53c16d541275eddc9346af37c09db6?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ab53c16d541275eddc9346af37c09db6?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/kayelu/\" class=\"reviewer-name\">kayelu</a> am <span class=\"review-date\">Januar 18, 2022</span>                  </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Hello,\nMy site is broken after upgrade to WooCommerce 6.1.0. It\'s so broken that I have to disable WooCommerce to login to dashboard. I tried to rollback to old version but it\'s not working. Can someone help, please?</div>\n</div>\n<div class=\"review\">\n  <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Do not upgrade to Woo 6.1.0, it may break your shop</h4>\n                           <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/avu/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/19981a04172cad5169296601a3e7ab33?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/19981a04172cad5169296601a3e7ab33?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/avu/\" class=\"reviewer-name\">avu</a> am <span class=\"review-date\">Januar 17, 2022</span>                   </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Woo 6.1.0 breaks other necessary e-commerce plugins due to this new feature : \"The is_ajax function has been deprecated. The WordPress function wp_doing_ajax should be used instead\". So Woo may be doing well but your shop is broken, mine was. Revert to Woo 6.0.0 if you need. Must wait until your other plugins become compatible if they do.</div>\n</div>\n<div class=\"review\">\n       <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">nothing better than having full control of your site.</h4>\n                         <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/swdshop/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/7f5b62c61ca737fb0debae5b4b5b2bce?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/7f5b62c61ca737fb0debae5b4b5b2bce?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/swdshop/\" class=\"reviewer-name\">swdshop</a> am <span class=\"review-date\">Januar 16, 2022</span>                       </p>\n          </div>\n        </div>\n        <div class=\"review-body\">nothing better than having full control of your site.</div>\n</div>\n<div class=\"review\">\n        <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Absolutely Phenomenal</h4>\n                         <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/nick1999/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/bc4f356eea39575a2684ba422a758eab?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/bc4f356eea39575a2684ba422a758eab?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/nick1999/\" class=\"reviewer-name\">nick1999</a> am <span class=\"review-date\">Januar 14, 2022</span>                    </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Amazing Plugin, Keep It Up</div>\n</div>\n<div class=\"review\">\n   <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">The worse</h4>\n                             <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/pixer/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/710eb31b27e968d064f714a8071334e7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/710eb31b27e968d064f714a8071334e7?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/pixer/\" class=\"reviewer-name\">pixer</a> am <span class=\"review-date\">Januar 12, 2022</span>                     </p>\n          </div>\n        </div>\n        <div class=\"review-body\">It has the worst source code in the entire galaxy.  It\'s ugly and slow.</div>\n</div>\n<div class=\"review\">\n     <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">House of cards</h4>\n                                <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"2 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                         </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/eaec/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d3d62c8b8631a8a1e96ee7a571d23b28?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d3d62c8b8631a8a1e96ee7a571d23b28?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/eaec/\" class=\"reviewer-name\">eaec</a> am <span class=\"review-date\">Januar 12, 2022</span>                        </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Yeah I know you have a massive market share but how about not making changes that throw a variety of third party plugins into an error throwing meltdown.\n\nDeprecated: is_ajax is deprecated since version 6.1.0! Use wp_doing_ajax instead. in .../functions.php on line 5211 with multiple plugins from this update.\n\n<pre><code>facebook for woocommerce\nwoocommerce checkout addons\nwoocommerce cost of goods\nWooCommerce Extra Product Sorting Options\nWoocommerce order status manager\nWooCommerce Product SKU Generator\nWooCommerce Square</code></pre>\n\n\nIn addition to others reporting the new Paypal Payment gateway that people are being pushed into using. How did you not catch and correct that before pushing this update, isnt that your own plugin / the entire point of you funneling people into using it??</div>\n</div>\n\";}s:13:\"download_link\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.1.zip\";s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-1.jpg?rev=2366418\";s:7:\"caption\";b:0;}i:2;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-2.jpg?rev=2366418\";s:7:\"caption\";b:0;}i:3;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-3.jpg?rev=2366418\";s:7:\"caption\";b:0;}i:4;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-4.jpg?rev=2366418\";s:7:\"caption\";b:0;}i:5;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-5.jpg?rev=2366418\";s:7:\"caption\";b:0;}i:6;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-6.jpg?rev=2366418\";s:7:\"caption\";b:0;}}s:4:\"tags\";a:5:{s:10:\"e-commerce\";s:10:\"e-commerce\";s:5:\"sales\";s:5:\"sales\";s:4:\"sell\";s:4:\"sell\";s:5:\"store\";s:5:\"store\";s:3:\"woo\";s:3:\"woo\";}s:8:\"versions\";a:231:{s:5:\"3.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.0.zip\";s:5:\"3.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.1.zip\";s:5:\"3.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.2.zip\";s:5:\"3.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.3.zip\";s:5:\"3.0.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.4.zip\";s:5:\"3.0.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.5.zip\";s:5:\"3.0.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.6.zip\";s:5:\"3.0.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.7.zip\";s:5:\"3.0.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.8.zip\";s:5:\"3.0.9\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.0.9.zip\";s:5:\"3.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.0.zip\";s:5:\"3.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.1.zip\";s:5:\"3.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.2.zip\";s:5:\"3.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.0.zip\";s:5:\"3.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.1.zip\";s:5:\"3.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.2.zip\";s:5:\"3.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.3.zip\";s:5:\"3.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.4.zip\";s:5:\"3.2.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.5.zip\";s:5:\"3.2.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.2.6.zip\";s:5:\"3.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.0.zip\";s:5:\"3.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.1.zip\";s:5:\"3.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.2.zip\";s:10:\"3.3.2-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.2-rc.1.zip\";s:5:\"3.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.3.zip\";s:5:\"3.3.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.4.zip\";s:5:\"3.3.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.5.zip\";s:5:\"3.3.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.6.zip\";s:5:\"3.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0.zip\";s:12:\"3.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0-beta.1.zip\";s:10:\"3.4.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.0-rc.2.zip\";s:5:\"3.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.1.zip\";s:5:\"3.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.2.zip\";s:5:\"3.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.3.zip\";s:5:\"3.4.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.4.zip\";s:5:\"3.4.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.5.zip\";s:5:\"3.4.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.6.zip\";s:5:\"3.4.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.7.zip\";s:5:\"3.4.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.4.8.zip\";s:5:\"3.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0.zip\";s:12:\"3.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-beta.1.zip\";s:10:\"3.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.1.zip\";s:10:\"3.5.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.0-rc.2.zip\";s:5:\"3.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.1.zip\";s:5:\"3.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.2.zip\";s:5:\"3.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.3.zip\";s:5:\"3.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.4.zip\";s:5:\"3.5.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.5.zip\";s:5:\"3.5.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.6.zip\";s:5:\"3.5.7\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.7.zip\";s:5:\"3.5.8\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.8.zip\";s:5:\"3.5.9\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.9.zip\";s:5:\"3.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0.zip\";s:12:\"3.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-beta.1.zip\";s:10:\"3.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.1.zip\";s:10:\"3.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.2.zip\";s:10:\"3.6.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.0-rc.3.zip\";s:5:\"3.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.1.zip\";s:5:\"3.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.2.zip\";s:5:\"3.6.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.3.zip\";s:5:\"3.6.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.4.zip\";s:5:\"3.6.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.5.zip\";s:5:\"3.6.6\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.6.zip\";s:5:\"3.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0.zip\";s:12:\"3.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-beta.1.zip\";s:10:\"3.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.1.zip\";s:10:\"3.7.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0-rc.2.zip\";s:5:\"3.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.1.zip\";s:5:\"3.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.2.zip\";s:5:\"3.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0.zip\";s:12:\"3.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-beta.1.zip\";s:10:\"3.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.1.zip\";s:10:\"3.8.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.0-rc.2.zip\";s:5:\"3.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.1.zip\";s:5:\"3.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.8.2.zip\";s:5:\"3.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0.zip\";s:12:\"3.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-beta.1.zip\";s:12:\"3.9.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-beta.2.zip\";s:10:\"3.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.1.zip\";s:10:\"3.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.2.zip\";s:10:\"3.9.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.3.zip\";s:10:\"3.9.0-rc.4\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.0-rc.4.zip\";s:5:\"3.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.1.zip\";s:5:\"3.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.2.zip\";s:5:\"3.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.3.zip\";s:5:\"3.9.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.9.4.zip\";s:5:\"4.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0.zip\";s:12:\"4.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0-beta.1.zip\";s:10:\"4.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0-rc.1.zip\";s:10:\"4.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.0-rc.2.zip\";s:5:\"4.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.1.zip\";s:5:\"4.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.2.zip\";s:5:\"4.0.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.0.3.zip\";s:5:\"4.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0.zip\";s:12:\"4.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-beta.1.zip\";s:12:\"4.1.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-beta.2.zip\";s:10:\"4.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-rc.1.zip\";s:10:\"4.1.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0-rc.2.zip\";s:5:\"4.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.1.zip\";s:5:\"4.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.2.zip\";s:5:\"4.1.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.3.zip\";s:5:\"4.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0.zip\";s:10:\"4.2.0-RC.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0-RC.1.zip\";s:10:\"4.2.0-RC.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0-RC.2.zip\";s:12:\"4.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.0-beta.1.zip\";s:5:\"4.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.1.zip\";s:5:\"4.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.2.zip\";s:5:\"4.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.3.zip\";s:5:\"4.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.2.4.zip\";s:5:\"4.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0.zip\";s:12:\"4.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-beta.1.zip\";s:10:\"4.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.1.zip\";s:10:\"4.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.2.zip\";s:10:\"4.3.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.0-rc.3.zip\";s:5:\"4.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.1.zip\";s:5:\"4.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.2.zip\";s:5:\"4.3.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.3.zip\";s:5:\"4.3.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.4.zip\";s:5:\"4.3.5\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.3.5.zip\";s:5:\"4.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.0.zip\";s:12:\"4.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.0-beta.1.zip\";s:10:\"4.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.0-rc.1.zip\";s:5:\"4.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.1.zip\";s:5:\"4.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.2.zip\";s:5:\"4.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.4.3.zip\";s:5:\"4.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0.zip\";s:12:\"4.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0-beta.1.zip\";s:10:\"4.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0-rc.1.zip\";s:10:\"4.5.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.0-rc.3.zip\";s:5:\"4.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.1.zip\";s:5:\"4.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.2.zip\";s:5:\"4.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.3.zip\";s:5:\"4.5.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.4.zip\";s:5:\"4.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.0.zip\";s:12:\"4.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.0-beta.1.zip\";s:10:\"4.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.0-rc.1.zip\";s:5:\"4.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.1.zip\";s:5:\"4.6.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.2.zip\";s:5:\"4.6.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.3.zip\";s:5:\"4.6.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.6.4.zip\";s:5:\"4.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0.zip\";s:12:\"4.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0-beta.1.zip\";s:12:\"4.7.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0-beta.2.zip\";s:10:\"4.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.0-rc.1.zip\";s:5:\"4.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.1.zip\";s:12:\"4.7.1-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.1-beta.1.zip\";s:5:\"4.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.2.zip\";s:5:\"4.7.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.7.3.zip\";s:5:\"4.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0.zip\";s:12:\"4.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0-beta.1.zip\";s:10:\"4.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0-rc.1.zip\";s:10:\"4.8.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.0-rc.2.zip\";s:5:\"4.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.1.zip\";s:5:\"4.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.8.2.zip\";s:5:\"4.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0.zip\";s:12:\"4.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0-beta.1.zip\";s:10:\"4.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0-rc.1.zip\";s:10:\"4.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.0-rc.2.zip\";s:5:\"4.9.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.1.zip\";s:5:\"4.9.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.2.zip\";s:5:\"4.9.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.3.zip\";s:5:\"4.9.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.9.4.zip\";s:5:\"5.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0.zip\";s:12:\"5.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-beta.1.zip\";s:12:\"5.0.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-beta.2.zip\";s:10:\"5.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.1.zip\";s:10:\"5.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.2.zip\";s:10:\"5.0.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.0-rc.3.zip\";s:5:\"5.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.1.zip\";s:5:\"5.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.0.2.zip\";s:5:\"5.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.0.zip\";s:12:\"5.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.0-beta.1.zip\";s:10:\"5.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.0-rc.1.zip\";s:5:\"5.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.1.zip\";s:5:\"5.1.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.1.2.zip\";s:5:\"5.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0.zip\";s:12:\"5.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0-beta.1.zip\";s:10:\"5.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0-rc.1.zip\";s:10:\"5.2.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0-rc.2.zip\";s:5:\"5.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.1.zip\";s:5:\"5.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.2.zip\";s:5:\"5.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.3.zip\";s:5:\"5.2.4\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.4.zip\";s:5:\"5.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0.zip\";s:12:\"5.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0-beta.1.zip\";s:10:\"5.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0-rc.1.zip\";s:10:\"5.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.0-rc.2.zip\";s:5:\"5.3.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.1.zip\";s:5:\"5.3.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.3.2.zip\";s:5:\"5.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.0.zip\";s:12:\"5.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.0-beta.1.zip\";s:10:\"5.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.0-rc.1.zip\";s:5:\"5.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.1.zip\";s:5:\"5.4.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.2.zip\";s:5:\"5.4.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.3.zip\";s:5:\"5.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0.zip\";s:12:\"5.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0-beta.1.zip\";s:10:\"5.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0-rc.1.zip\";s:10:\"5.5.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.0-rc.2.zip\";s:5:\"5.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.1.zip\";s:5:\"5.5.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.2.zip\";s:5:\"5.5.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.5.3.zip\";s:5:\"5.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0.zip\";s:12:\"5.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0-beta.1.zip\";s:10:\"5.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0-rc.1.zip\";s:10:\"5.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.0-rc.2.zip\";s:5:\"5.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.6.1.zip\";s:5:\"5.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.0.zip\";s:12:\"5.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.0-beta.1.zip\";s:10:\"5.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.0-rc.1.zip\";s:5:\"5.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.7.1.zip\";s:5:\"5.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0.zip\";s:12:\"5.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0-beta.1.zip\";s:12:\"5.8.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0-beta.2.zip\";s:10:\"5.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.8.0-rc.1.zip\";s:5:\"5.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0.zip\";s:12:\"5.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0-beta.1.zip\";s:10:\"5.9.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0-rc.1.zip\";s:10:\"5.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.5.9.0-rc.2.zip\";s:5:\"6.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.0.zip\";s:12:\"6.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.0-beta.1.zip\";s:10:\"6.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.0.0-rc.1.zip\";s:5:\"6.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0.zip\";s:12:\"6.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0-beta.1.zip\";s:10:\"6.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0-rc.1.zip\";s:10:\"6.1.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.0-rc.2.zip\";s:5:\"6.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.1.1.zip\";s:12:\"6.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0-beta.1.zip\";s:10:\"6.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0-rc.1.zip\";s:10:\"6.2.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.6.2.0-rc.2.zip\";s:5:\"trunk\";s:54:\"https://downloads.wordpress.org/plugin/woocommerce.zip\";}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";s:4:\"high\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";}}s:19:\"the-events-calendar\";a:25:{s:4:\"name\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:7:\"version\";s:6:\"5.13.0\";s:6:\"author\";s:52:\"<a href=\"https://evnt.is/1x\">The Events Calendar</a>\";s:14:\"author_profile\";s:49:\"https://profiles.wordpress.org/theeventscalendar/\";s:12:\"contributors\";a:16:{s:17:\"theeventscalendar\";a:3:{s:7:\"profile\";s:49:\"https://profiles.wordpress.org/theeventscalendar/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/004d5851721c5bd2b3491b51429f771e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:19:\"The Events Calendar\";}s:7:\"borkweb\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/borkweb/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/1e656e49ac69899daa3ff81232b041eb?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:18:\"Matthew Batchelder\";}s:7:\"bordoni\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/bordoni/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c412fa91c51f4e2cff375f74efb663e3?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Gustavo Bordoni\";}s:11:\"brianjessee\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/brianjessee/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/a35212d9e01d2ca4e96ecdd05b110b4a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Brian\";}s:6:\"aguseo\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/aguseo/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/57554805e57d21c1036c8b91f944c8ca?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"András Guseo\";}s:8:\"camwynsp\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/camwynsp/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/77839cc0bde9eb1b58dff6777ae61942?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:6:\"Camwyn\";}s:8:\"geoffbel\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/geoffbel/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7d6fd85658178125baa17b6055dd3be1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"GeoffBel\";}s:11:\"geoffgraham\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/geoffgraham/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/ac0d6274a6cea04669e66a20ec0ea204?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"geoffgraham\";}s:7:\"jentheo\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/jentheo/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/e02959cfbac1b4fab42cd6019c0e70c6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"Jennifer\";}s:11:\"leahkoerper\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/leahkoerper/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/9fe5fa3836f54c58936a3979212da076?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"leahkoerper\";}s:8:\"lucatume\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/lucatume/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/d393fcb75e0801c42fe5559ae1e846e6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"lucatume\";}s:11:\"neillmcshea\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/neillmcshea/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/43599a71b1b6506a26d029221f1d61a9?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"neillmcshea\";}s:19:\"patriciahillebrandt\";a:3:{s:7:\"profile\";s:51:\"https://profiles.wordpress.org/patriciahillebrandt/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/754f035dc61fdb1ee0c421d0dd9b6548?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:19:\"patriciahillebrandt\";}s:6:\"vicskf\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/vicskf/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/3a2a95b83191dc10b76ba61aba61c618?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Victor Zarranz\";}s:9:\"zbtirrell\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/zbtirrell/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/eeb48b1ae8eca09700c2c2642a1f7dcf?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Zach Tirrell\";}s:7:\"juanfra\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/juanfra/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/bb8f8e3c87dfce235f6bfe5a2d8ece2b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Juan Aldasoro\";}}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:5:\"5.9.0\";s:12:\"requires_php\";s:3:\"7.1\";s:6:\"rating\";i:86;s:7:\"ratings\";a:5:{i:5;i:1441;i:4;i:108;i:3;i:69;i:2;i:52;i:1;i:210;}s:11:\"num_ratings\";i:1880;s:15:\"support_threads\";i:164;s:24:\"support_threads_resolved\";i:68;s:15:\"active_installs\";i:800000;s:12:\"last_updated\";s:21:\"2022-01-31 8:23pm GMT\";s:5:\"added\";s:10:\"2010-01-19\";s:8:\"homepage\";s:0:\"\";s:8:\"sections\";a:6:{s:11:\"description\";s:6672:\"<p>Easily create and manage an events calendar on your WordPress site with <a href=\"https://evnt.is/mj\" rel=\"nofollow ugc\">The Events Calendar</a> free plugin. Whether your events are in-person or virtual events, this WordPress calendar plugin boasts professional features backed by our world-class team of developers and designers.</p>\n<p><div class=\"embed-vimeo\" style=\"text-align: center;\"><iframe loading=\"lazy\" src=\"https://player.vimeo.com/video/425323974\" width=\"640\" height=\"360\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe></div>\n</p>\n<p>Packed with loads of features, The Events Calendar is ready to go out of the box. It’s also extensible, easy to use, and completely customizable.</p>\n<h4>? The #1 Calendar for WordPress</h4>\n<p>See the calendar in action on our <a href=\"https://evnt.is/1ajs\" rel=\"nofollow ugc\">demo experience</a>. Just getting started? Read through the <a href=\"https://evnt.is/2d\" rel=\"nofollow ugc\">New User Primer</a> to get set up.</p>\n<p>Looking for additional features like recurring events, ticket sales, user-submitted events, automatic imports, and more?</p>\n<p><strong>Check out <a href=\"https://evnt.is/mj\" rel=\"nofollow ugc\">Events Calendar Pro</a>, <a href=\"https://evnt.is/197u\" rel=\"nofollow ugc\">Event Aggregator</a>, and <a href=\"https://evnt.is/2a\" rel=\"nofollow ugc\">more add-ons</a>.</strong></p>\n<h4>?? Plug and Play or Customize</h4>\n<p>The Events Calendar is built to work out of the box. Simply install the plugin, configure your settings, and start creating events in minutes.</p>\n<p>Want to add your personal touch? Use The Events Calendar as the foundation for customization. Personalize to your heart&#8217;s content with the help of a skeleton stylesheet, partial template overrides, template tags, hooks and filters, <a href=\"https://evnt.is/eu\" rel=\"nofollow ugc\">careful documentation</a>, and a <a href=\"https://evnt.is/1a0r\" rel=\"nofollow ugc\">library of free extensions</a>.</p>\n<p>Whether your vision is big or small, you&#8217;re in good company. Hundreds of thousands of small businesses, musicians, venues, restaurants, and non-profits are publishing and promoting their in-person and virtual events with The Events Calendar. Our plugins have also been scaled to work on large networks for Fortune 100 companies, universities, and government institutions.</p>\n<h4>✨ Features</h4>\n<p>Our feature-rich plugin comes with everything you need to create and manage your calendar.</p>\n<p>✔️ Rapidly create events<br />\n✔️ Saved venues &amp; organizers<br />\n✔️ Calendar month view with tooltips<br />\n✔️ Event List view<br />\n✔️ Day view<br />\n✔️ Block Editor support<br />\n✔️ Event search<br />\n✔️ Google maps<br />\n✔️ Widget: Upcoming events list<br />\n✔️ Events Taxonomies (Categories &amp; Tags)<br />\n✔️ Google Calendar and iCal exporting<br />\n✔️ WP REST API endpoints<br />\n✔️ Completely ajaxified for super smooth browsing<br />\n✔️ Completely responsive from mobile to tablet to desktop<br />\n✔️ Tested on the major theme frameworks such as Avada, Divi, Enfold, Genesis, and many more.<br />\n✔️ Increase your SEO with JSON-LD Structured Data<br />\n✔️ Internationalized &amp; translated<br />\n✔️ Multiple stylesheets to improve integration<br />\n✔️ Extensive template tags for customization<br />\n✔️ Hooks &amp; filters galore<br />\n✔️ Caching support<br />\n✔️ Debug mode for developers<br />\n✔️ <a href=\"https://evnt.is/1a0r\" rel=\"nofollow ugc\">Library of extensions</a></p>\n<h3>? Documentation</h3>\n<p>All of our documentation can be found in <a href=\"https://evnt.is/eu\" rel=\"nofollow ugc\">our Knowledgebase</a>.</p>\n<p>Additional helpful links:</p>\n<ul>\n<li><a href=\"https://evnt.is/2l\" rel=\"nofollow ugc\">The Events Calendar New User Primer</a></li>\n<li><a href=\"https://evnt.is/2m\" rel=\"nofollow ugc\">The Themer’s Guide to The Events Calendar</a></li>\n</ul>\n<p>If you have any questions about this plugin, you can post a thread in the <a href=\"https://wordpress.org/support/plugin/the-events-calendar\">WordPress.org forum</a>. Please search existing threads before starting a new one.</p>\n<h3>Add-Ons</h3>\n<p>Take your calendar to the next level by pairing it with our plugins for ticketing, crowdsourcing, email marketing, and more. Learn more about all our products on <a href=\"https://evnt.is/18wn\" rel=\"nofollow ugc\">our website</a>.</p>\n<p>Unsere kostenlosen Plugins:</p>\n<p>?️ <a href=\"https://wordpress.org/plugins/event-tickets/\">Event Tickets</a><br />\n? <a href=\"https://wordpress.org/plugins/advanced-post-manager/\">Advanced Post Manager</a></p>\n<p>Unsere Premium-Plugins und Dienste:</p>\n<p>⚡ <a href=\"https://evnt.is/18wi\" rel=\"nofollow ugc\">Events Calendar PRO</a><br />\n↪️ <a href=\"https://evnt.is/197u\" rel=\"nofollow ugc\">Event Aggregator</a> (service)<br />\n?️ <a href=\"https://evnt.is/18wk\" rel=\"nofollow ugc\">Event Tickets Plus</a><br />\n✉️ <a href=\"https://evnt.is/1ajt\" rel=\"nofollow ugc\">Promoter</a><br />\n? <a href=\"https://evnt.is/2g\" rel=\"nofollow ugc\">Community Events</a><br />\n?️ <a href=\"https://evnt.is/18wl\" rel=\"nofollow ugc\">Community Tickets</a><br />\n✏️ <a href=\"https://evnt.is/fa\" rel=\"nofollow ugc\">Filter Bar</a><br />\n?️ <a href=\"https://evnt.is/2e\" rel=\"nofollow ugc\">Eventbrite Tickets</a><br />\n? <a href=\"https://evnt.is/1aky\" rel=\"nofollow ugc\">Virtual Events</a></p>\n<h3>Hilfe</h3>\n<p>If you aren’t familiar with The Events Calendar, check out our <a href=\"https://evnt.is/2p\" rel=\"nofollow ugc\">New User Primer</a>. It will have you creating events in no time.</p>\n<p>Ready to dig deeper? Check out these resources:</p>\n<ul>\n<li><a href=\"https://evnt.is/2u\" rel=\"nofollow ugc\">Tutorials</a></li>\n<li><a href=\"https://theeventscalendar.com/release-schedule/\" rel=\"nofollow ugc\">Veröffentlichungs-Zeitplan</a></li>\n<li><a href=\"https://theeventscalendar.com/known-issues/\" rel=\"nofollow ugc\">Bekannte Probleme</a></li>\n<li><a href=\"https://evnt.is/eu\" rel=\"nofollow ugc\">Documentation</a></li>\n<li><a href=\"https://evnt.is/2t\" rel=\"nofollow ugc\">Help Videos</a></li>\n<li><a href=\"https://evnt.is/2v\" rel=\"nofollow ugc\">Release Notes</a></li>\n</ul>\n<p>We check in on the <a href=\"https://wordpress.org/support/plugin/the-events-calendar/\">The Events Calendar forum here on WordPress.org</a> about once a week to help users with basic troubleshooting and identifying bugs. If you’re looking for premium, personalized support, consider upgrading to Events Calendar Pro.</p>\n<p>Still have a question? Shoot us an email at support@theeventscalendar.com.</p>\n\";s:12:\"installation\";s:1306:\"<p>Installing the plugin is easy. Just follow one of the following methods:</p>\n<h4>Install The Events Calendar from within WordPress</h4>\n<ol>\n<li>Visit the plugins page within your dashboard and select ‘Add New’</li>\n<li>Search for &#8222;Events Calendar&#8220;</li>\n<li>Activate The Events Calendar from your Plugins page</li>\n<li>You&#8217;re done!</li>\n</ol>\n<h4>Install The Events Calendar Manually</h4>\n<ol>\n<li>Gehe in deinem Kontrollzentrum zu Plugins &#8211;&gt; Neu hinzufügen.</li>\n<li>Wähle die Upload Option und klicke auf &#8222;Datei Wählen&#8220;.</li>\n<li>Wenn das Popup erscheint, wähle die events-calendar-x.x.zip Datei von deinem Desktop. (&#8222;x.x&#8220; ist die aktuelle Versionsnummer)</li>\n<li>Folge den Anweisungen am Bildschirm und warte bis der Upload fertig ist.</li>\n<li>Wenn du fertig bist, aktiviere das Plugin über die Aufforderung. Eine Nachricht wird dier die erfolgreiche Aktivierung bestätigen. Ein direkter Link, zum  Kalender im Frontend wird ebenfalls angezeigt.</li>\n</ol>\n<p>That&#8217;s it! Just configure your settings as you see fit, and you&#8217;re on your way to creating events in style. Need help getting things started? Check out our <a href=\"https://evnt.is/2l\" rel=\"nofollow ugc\">new user primer</a> for help with settings and features.</p>\n\";s:3:\"faq\";s:8903:\"\n<dt id=\'are%20there%20any%20troubleshooting%20steps%20you%27d%20suggest%20i%20try%20that%20might%20resolve%20my%20issue%20before%20i%20post%20a%20new%20thread%3F\'>\nKönnt ihr mir ein paar Schritte zur Fehlerbehebung nennen, welche das Problem lösen könnten, bevor ich einen neuen Thread aufmache?\n</h4>\n<p>\n<p>First, make sure that you&#8217;re running the latest version of The Events Calendar. If you’re running Events Calendar PRO or  any other add-ons, make sure those are current / running the latest code as well.</p>\n<p>The most common issues we see are either plugin or theme conflicts. You can test if a plugin or theme is conflicting by manually deactivating other plugins until just The Events Calendar is running on your site. If the issue persists from there, revert to the default <a href=\"https://wordpress.org/themes/twentytwenty/\">Twenty Twenty</a> theme. If the issue is resolved after deactivating a specific plugin or your theme, you’ll know that is the source of the conflict.</p>\n<p>Note that we aren’t going to say “tough luck” if you identify a plugin/theme conflict. While we can’t guarantee 100% integration with any plugin or theme out there, we will do our best (and reach out the plugin/theme author as needed) to figure out a solution that benefits everyone.</p>\n</p>\n<dt id=\'i%27m%20still%20stuck.%20where%20do%20i%20go%20to%20file%20a%20bug%20or%20ask%20a%20question%3F\'>\nIch stecke immer noch fest. Wohin kann ich mich wenden um einen Bug zu senden oder eine Frage zu stellen?\n</h4>\n<p>\n<p>Users of the free The Events Calendar should post their questions in the plugin&#8217;s <a href=\"https://wordpress.org/support/plugin/the-events-calendar/\">WordPress.org forum</a>, which we visit about once a week. Please make sure to read <a href=\"https://evnt.is/19oc\" rel=\"nofollow ugc\">our sticky post</a> providing an overview of the support we provide free users BEFORE posting. If you find you&#8217;re not getting support in as timely a fashion as you wish, you might want to consider purchasing a license for Events Calendar Pro.</p>\n<p>If you&#8217;re already an Events Calendar Pro user, you&#8217;re entitled access to our actively-monitored <a href=\"https://evnt.is/1aju\" rel=\"nofollow ugc\">Premium Support</a> on our website. We can provide a deeper level of support here and hit these forums on a daily basis during the work week. Generally, except in times of increased support loads, we reply to all tickets within 24-48 hours during the business week.</p>\n</p>\n<dt id=\'what%27s%20the%20difference%20between%20the%20events%20calendar%20and%20events%20calendar%20pro%3F\'>\nWhat&#8217;s the difference between The Events Calendar and Events Calendar Pro?\n</h4>\n<p>\n<p>The Events Calendar is our cornerstone plugin, and it’s required in order to run any of our premium calendar add-ons, including Events Calendar Pro, Community Events, Filter Bar, and others.</p>\n<p>In other words, Events Calendar Pro runs alongside The Events Calendar and enhances it with extra features, including recurring events, additional calendar views, calendar shortcodes, advanced widgets, custom event fields and more.</p>\n</p>\n<dt id=\'what%20add-ons%20are%20available%20for%20the%20events%20calendar%2C%20and%20where%20can%20i%20read%20more%20about%20them%3F\'>\nWelche Add-ons sind für den Events Calendar erhältlich und wo kann ich mehr darüber erfahren?\n</h4>\n<p>\n<p>Aktuell sind die folgenden Erweiterungen für The Events Calendar verfügbar:</p>\n<ul>\n<li><a href=\"https://evnt.is/18wi\" rel=\"nofollow ugc\">Events Calendar Pro</a>, for adding premium calendar features like recurring events, advanced views, cool widgets, <a href=\"https://evnt.is/1ajw\" rel=\"nofollow ugc\">shortcodes</a>, additional fields, and more!</li>\n<li><a href=\"https://evnt.is/197u\" rel=\"nofollow ugc\">Event Aggregator</a>, a service that effortlessly fills your calendar with events from Meetup, Google Calendar, iCalendar, Eventbrite, CSV, and ICS.</li>\n<li><a href=\"https://evnt.is/1aky\" rel=\"nofollow ugc\">Virtual Events</a>, which optimizes your calendar for virtual events including Zoom integration, video and livestream embeds, SEO optimization for online events and more.</li>\n<li><a href=\"https://wordpress.org/plugins/event-tickets/\">Event Tickets</a> (free), which allows you to sell tickets and collect RSVPs to events. It can run alongside The Events Calendar or as a standalone plugin that adds ticket and RSVP functionality to WordPress posts and pages.</li>\n<li><a href=\"https://evnt.is/18wk\" rel=\"nofollow ugc\">Event Tickets Plus</a>, which allows you to sell tickets for your events using your favorite e-commerce platform.</li>\n<li><a href=\"https://evnt.is/1ajt\" rel=\"nofollow ugc\">Promoter</a>, automated email communication made just for The Events Calendar and Event Tickets. Stay in touch with your attendees every step of the way.</li>\n<li><a href=\"https://evnt.is/2g\" rel=\"nofollow ugc\">Community Events</a>, for allowing frontend event submission from your readers.</li>\n<li><a href=\"https://evnt.is/18wl\" rel=\"nofollow ugc\">Community Tickets</a>, which allows event organizers to sell tickets to the events they submit via Community Events.</li>\n<li><a href=\"https://evnt.is/fa\" rel=\"nofollow ugc\">Filter Bar</a>, for adding advanced frontend filtering capabilities to your events calendar.</li>\n<li><a href=\"https://evnt.is/2e\" rel=\"nofollow ugc\">Eventbrite Tickets</a>, for selling tickets to your event directly through Eventbrite.</li>\n</ul>\n</p>\n<dt id=\'can%20i%20import%20events%20to%20my%20calendar%3F\'>\nCan I import events to my calendar?\n</h4>\n<p>\n<p>Yes! The Events Calendar has a built-in CSV import tool. If you want to step it up and automatically import events from Google Calendar, Meetup, Eventbrite and more, check out <a href=\"https://evnt.is/197u\" rel=\"nofollow ugc\">Event Aggregator</a>.</p>\n</p>\n<dt id=\'how%20do%20i%20sell%20tickets%20to%20events%20on%20my%20calendar%3F\'>\nHow do I sell tickets to events on my calendar?\n</h4>\n<p>\n<p>You&#8217;ll want to use our <a href=\"https://wordpress.org/plugins/event-tickets/\">Event Tickets</a> plugin for that. This free plugin works alongside The Events Calendar and lets you create RSVPs and tickets for events. Event Tickets integrates with PayPal so you can collect payments for tickets, while our premium solution, Event Tickets Plus fully integrates with WooCommerce or Easy Digital Downloads.</p>\n</p>\n<dt id=\'can%20i%20have%20more%20than%20one%20calendar%20on%20my%20site%3F\'>\nCan I have more than one calendar on my site?\n</h4>\n<p>\n<p>Unfortunately, no. However, you can use event categories or tags to create calendar views that only display certain events. For example, you could create a direct link to a calendar view that only shows events categorized as &#8222;Fitness,&#8220; <a href=\"https://evnt.is/1ajv\" rel=\"nofollow ugc\">like this example from our demo site</a>.</p>\n<p>With Events Calendar Pro, you can use <a href=\"https://evnt.is/1ajw\" rel=\"nofollow ugc\">shortcodes</a> to embed your calendar on other WordPress pages and posts, then filter that calendar by category.</p>\n</p>\n<dt id=\'can%20i%20allow%20people%20to%20submit%20events%20to%20my%20calendar%3F\'>\nCan I allow people to submit events to my calendar?\n</h4>\n<p>\n<p>This is available with the <a href=\"https://evnt.is/2g\" rel=\"nofollow ugc\">Community Events</a> add-on to facilitate submissions. Install Community Events alongside The Events Calendar and a page will be added to your WordPress site with a form that visitors can use to submit events. As the calendar owner, you have full control over whether event submissions are published immediately or require moderation first.</p>\n<p>If you want to let users sell tickets for the events they submit, check out <a href=\"https://evnt.is/18wl\" rel=\"nofollow ugc\">Community Tickets</a>. It runs with The Events Calendar, Community Events, and Event Tickets and empowers visitors to create and sell tickets, splitting the profits with you.</p>\n</p>\n<dt id=\'i%20have%20a%20feature%20idea.%20what%27s%20the%20best%20way%20to%20tell%20you%20about%20it%3F\'>\nIch habe eine Idee für eien Erweiterung. Wie kann icheuch  das am Besten mitteilen?\n</h4>\n<p>\n<p>We&#8217;ve got an <a href=\"https://app.loopedin.io/the-events-calendar-suite-roadmap#/ideas\" rel=\"nofollow ugc\">ideas page</a> where we&#8217;re actively watching for feature ideas from the community. Vote up existing feature requests or add your own, and help us shape <a href=\"https://app.loopedin.io/the-events-calendar-suite-roadmap#/roadmap\" rel=\"nofollow ugc\">our roadmap</a>.</p>\n</p>\n<dt id=\'i%27ve%20still%20got%20questions.%20where%20can%20i%20find%20answers%3F\'>\nIch habe immer noch Fragen. Wo kann ich Antworten finden?\n</h4>\n<p>\n<p>Check out our extensive <a href=\"https://evnt.is/18wm\" rel=\"nofollow ugc\">knowledgebase</a> for articles on using, tweaking, and troubleshooting our plugins.</p>\n</p>\n\n\";s:9:\"changelog\";s:216726:\"<h4>[5.13.0] 2022-01-31</h4>\n<ul>\n<li>Deprecation &#8211; All files from Legacy Views will throw deprecated notices, refer to <code>https://evnt.is/v1-removal</code> for extra information.</li>\n<li>Deprecation &#8211; Template functions <code>tribe_initialize_view</code>, <code>tribe_get_view</code> and <code>tribe_show_month</code> were deprecated, refer to <code>https://evnt.is/v1-removal</code> for extra information.</li>\n</ul>\n<h4>[5.12.4] 2022-01-19</h4>\n<ul>\n<li>Tweak &#8211; Minor CSS tweaks to align with the new shortcode based blocks in ECP. [ECP-1016]</li>\n<li>Tweak &#8211; Add hook to CSV importer to enable add-on plugins to support their fields during import. [VE-387]</li>\n<li>Tweak &#8211; Included new filter <code>tec_system_information</code> allowing better control over the Troubleshooting Help page.</li>\n<li>Tweak &#8211; Included a Views V2 Status on the Troubleshooting page system info section to help with clarity for support.</li>\n<li>Tweak &#8211; Add notice for Themes using Full Site Editor incompatibility with Widgets. [TEC-4233]</li>\n<li>Fix &#8211; Prevent Onboarding assets from loading on the admin when not needed.</li>\n<li>Fix &#8211; Remove CSS attributes targeting <code>aria-labels</code> to prevent inconsistent styling for different languages. [TEC-4227]</li>\n<li>Fix &#8211; Resolve sorting problems when using orderby with the Event repository when no other orderby values are specified. [TEC-4232]</li>\n</ul>\n<h4>[5.12.3] 2022-01-10</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 5.12.3 is only compatible with Events Calendar PRO 5.11.2 and higher</li>\n<li>Fix &#8211; Ensure the modifications made through the <code>tribe_events_views_v2_category_title</code> are respected. [TEC-4110]</li>\n<li>Fix &#8211; Correct issue where mobile default view does not load correctly when homepage set to Events Main. [TEC-3826]</li>\n<li>Tweak &#8211; Boost SEO for category archive pages by fixing the title tag. [TEC-4110]</li>\n<li>Tweak &#8211; Add filter to allow users to choose if the taxonomy should show parent categories [TEC-4110]</li>\n<li>Tweak &#8211; Move handling of mobile view to ECP. Add filter to allow overriding default view. [TEC-3826]</li>\n<li>Language &#8211; 0 new strings added, 71 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.12.2] 2021-12-20</h4>\n<ul>\n<li>Fix &#8211; Remove trailing comma that can cause fatals on older versions of PHP. [FBAR-252]</li>\n<li>Fix &#8211; Prevent infinite loops in the block editor when including the links block. [TEC-4190]</li>\n<li>Fix &#8211; Initial steps to make The Events Calendar compatible with PHP 8.1</li>\n</ul>\n<h4>[5.12.1] 2021-12-14</h4>\n<ul>\n<li>Feature &#8211; Add TEC widget based blocks to the <code>Event Blocks</code> custom block category. [TEC-4151]</li>\n<li>Feature &#8211; Add Event Status filter options when Filter Bar is active. [FBAR-92]</li>\n<li>Fix &#8211; Add a valid rel value to the link tag for TEC REST API support in order to improve HTML 5 and WCAG 2.1 compliance. (props to @gabyrau for the fix!) [TEC-4129]</li>\n<li>Fix &#8211; Ensure the date selected when creating a new event from the Event Manager is applied to the block editor. [ECP-954]</li>\n<li>Fix &#8211; Properly observe the disabling of JSON-LD output on widget blocks in the block editor. [TEC-4077]</li>\n<li>Fix &#8211; Prevent PHP warning in some cases when fetching the date from <code>tribe_get_display_end_date()</code>. (props to @huubl for the fix!) [TEC-4161]</li>\n<li>Fix &#8211; Close a div in the new subscribe dropdown that was left open. Props to @whoisuncle for bringing this to our attention! [TEC-4166]</li>\n<li>Tweak &#8211; Ensure the <code>Disable the Event Search Bar</code> setting doesn&#8217;t get applied on the Event Manager page. [ECP-948]</li>\n<li>Tweak &#8211; Ensure the <code>related events title</code> and <code>event titles</code> within the single event page for the block editor make use the customizer font settings. [TEC-4125]</li>\n<li>Tweak &#8211; Update the description text for the &#8222;Merge Duplicates&#8220; action. Add filters for data sets usd for comparison. [TEC-3018]</li>\n<li>Tweak &#8211; Adjust the Subscribe to Calendar dropdown styling to better accommodate themes with sidebars. [TEC-4166]</li>\n<li>Tweak &#8211; Add the Event List and Mini-Calendar widgets to the Event Blocks category. [TEC-4151]</li>\n<li>Tweak &#8211; Correct some incorrect template paths in docblocks. [TEC-4111]</li>\n<li>Language &#8211; 4 new strings added, 159 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[5.12.0] 2021-12-02</h4>\n<ul>\n<li>Feature &#8211; Add new subscribe options to the &#8222;Export Events&#8220; link at the bottom of calendar views and single Event view [TEC-4131]</li>\n<li>Fix &#8211; Bypass caching of the event when dealing with the admin event list table. [TEC-4156]</li>\n<li>Fix &#8211; Event List Widget will not print the H3 tag related to the title when that is empty. [BTRIA-1075]</li>\n<li>Tweak &#8211; Allow bypassing of the Aggregator logging function by using the <code>tec_aggregator_records_should_log_error</code> filter. [BTRIA-1074]</li>\n<li>Tweak &#8211; Removed the <code>tribe_events_force_filtered_ical_link</code> filter and the associated js function that recreates the subscribe link on v1 and Single Event views. [TEC-4131]</li>\n<li>Language &#8211; 4 new strings added, 52 updated, 0 fuzzied, and 2 obsoleted</li>\n</ul>\n<h4>[5.11.0] 2021-11-17</h4>\n<ul>\n<li>Feature &#8211; Add an <code>Events List</code> block that is based on the <code>Events List</code> widget to the block editor which users can drag around to any position they want it to appear. [ECP-989]</li>\n<li>Feature &#8211; Add event status options of scheduled, canceled, and postponed with the ability to add and display a reason for the latter two. [TEC-3465]</li>\n<li>Feature &#8211; Add live preview to the TEC customizer screens. [TEC-4055]</li>\n<li>Fix &#8211; When accessing comments there could be situations where an undefined array key was accessed, and in PHP 8 it is a promoted Warning error for undefined array access. [TEC-4093]</li>\n<li>Fix &#8211; Resolved <code>Warning: reset(): Argument #1 ($array) must be passed by reference...</code> error that was displayed on the Events, Organizers and Venue REST endpoints in PHP v8. [TEC-4097]</li>\n<li>Fix &#8211; Ensure that the proper spacing is applied for the venue address in list view. [TEC-4089]</li>\n<li>Tweak &#8211; Update the google calendar export button to open in a new tab on the event single page for both the classic and block editors. [TEC-4084]</li>\n<li>Tweak &#8211; Add supplied organizer url to JSON-LD for the event-&gt;organizer. Props @cmenon12 for the notification and code! [TEC-4095]</li>\n<li>Tweak &#8211; Add a link to the Customizer in the admin menu and in Events-&gt;Settings-&gt;Display for folks running a FSE theme. [TEC-4126]</li>\n<li>Language &#8211; 10 new strings added, 55 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.10.1] 2021-11-04</h4>\n<ul>\n<li>Feature &#8211; Added Black Friday promo to the General Settings panel. [TCMN-127]</li>\n<li>Tweak &#8211; Update Black Friday banner. [TCMN-126]</li>\n</ul>\n<h4>[5.10.0] 2021-10-19</h4>\n<ul>\n<li>Tweak &#8211; Improve the look and feel of the single events page when using the block editor. These changes can be bypassed by defining the following constant to your wp-config.php file: <code>define( \'TRIBE_EVENTS_SINGLE_VIEW_V2_DISABLED\', true );</code> [TEC-3979]</li>\n<li>Language &#8211; 0 new strings added, 1 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.9.2] 2021-10-12</h4>\n<ul>\n<li>Fix &#8211; Ensure the day view on mobile displays the not found message when no events are present. [TEC-3944]</li>\n<li>Fix &#8211; Ensure a map preview is displayed on the venue block in the admin area when using TEC&#8217;s default Google API Key. [TEC-3042]</li>\n<li>Fix &#8211; Add some missing text domains for string translation. [TEC-3908]</li>\n<li>Fix &#8211; Correct block use checks around the Classic Editor plugin. [TEC-4099]</li>\n<li>Tweak &#8211; Set the appropriate Content-Type for REST responses that return just HTML during view partial requests. [TEC-4087]</li>\n<li>Language &#8211; 0 new strings added, 164 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.9.1] 2021-09-14</h4>\n<ul>\n<li>Feature &#8211; Updated swagger docs generated from swagger 2.0 to openapi 3.0.0</li>\n<li>Fix &#8211; Initialize $local_time_zone to ensure we don&#8217;t have notices displayed in the frontend. [TEC-3791]</li>\n<li>Fix &#8211; Ensure the correct timezone label is being displayed on the Classic and Block editors when site-wide timezone is set. [TEC-3791]</li>\n<li>Fix &#8211; Ensure that venue state or province are displayed next to the city in list view. [TEC-3332]</li>\n<li>Fix &#8211; Ensure the category archive event breadcrumb links to the main events page. [TEC-3330]</li>\n<li>Fix &#8211; Ensure that the page title does not encode (em)dashes before passing it on. [TEC-4049]</li>\n<li>Fix &#8211; Ensure that the page title does not encode apostrophes before passing it on. [TEC-4058]</li>\n<li>Fix &#8211; Ensure that filter_single_event_details_event_website_label() only filters the label for the website field. [ECP-921]</li>\n<li>Tweak &#8211; Remove unused template file to avoid confusion.</li>\n<li>Language &#8211; 0 new strings added, 13 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.9.0] 2021-08-24</h4>\n<ul>\n<li>Fix &#8211; Ensure that $eventDisplay is defined before we use it in the default template. [TEC-4060]</li>\n<li>Feature &#8211; Alter Customizer to leverage the new exposed CSS custom properties. [TCMN-104]</li>\n<li>Feature &#8211; Reduce the CSS load of The Events Calendar Customizer style overrides. [TEC-3011]</li>\n<li>Feature &#8211; Allow easier style overrides by users and third-party themes/plugins. [TEC-3011]</li>\n<li>Feature &#8211; Add new Font Sections to Customizer -&gt; The Events Calendar -&gt; Global Events. [TEC-3872]</li>\n<li>Feature &#8211; Add new font family control to allow The Events Calendar styles to inherit theme fonts. [TEC-3895]</li>\n<li>Feature &#8211; Add new font size controls for accessibility and to allow users to more closely match the font sizes of their theme. [TEC-3891]</li>\n<li>Tweak &#8211; Support optionally passing start dates to the Event Edit page so targeted event creation can be triggered by The Events Calendar Pro&#8217;s Event Manager.</li>\n<li>Language &#8211; 16 new strings added, 429 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.8.2] 2021-08-17</h4>\n<ul>\n<li>Feature &#8211; Redesign In-App help and troubleshooting pages. [TEC-3741]</li>\n<li>Fix &#8211; Try to ensure that when we do an event search the query post type remains <code>tribe_events</code>. [TEC-4012]</li>\n<li>Fix &#8211; Ensure the year is displayed in the block editor event single page for events that are occurring in a different year from the current one. [TEC-3740]</li>\n<li>Fix &#8211; Fix the issue of the Event Date Time block Timezone dropdown taking up a lot of space. [TEC-4029]</li>\n<li>Fix &#8211; Ensure WPML translated event posts show up on translated venue and organizer pages. (props @NicoX13) [TEC-4036]</li>\n<li>Fix &#8211; Fix issue of month names not being translatable. This was caused by a missing moment js localization dependency. [ECP-739]</li>\n<li>Fix &#8211; Ensure we test the value of tribe_events_get_current_month_day() before using it. [ECP-912]</li>\n<li>Fix &#8211; Add a new function to add &#8222;Event Blocks&#8220; category to the editor for WP &gt;= 5.8. [TEC-4037]</li>\n<li>Tweak &#8211; Change label of API Settings tab to &#8222;Integrations&#8220; and alter helper text. [TEC-4015]</li>\n<li>Language &#8211; 2 new strings added, 251 updated, 1 fuzzied, and 18 obsoleted</li>\n</ul>\n<h4>[5.8.1] 2021-07-20</h4>\n<ul>\n<li>Fix &#8211; Ensure that the Block Editor saves cost data when submitted. [TEC-3987]</li>\n<li>Fix &#8211; Ensure that when viewing a single event we load the correct template when tribe_context is &#8222;confused&#8220;. [TEC-3975]</li>\n<li>Tweak &#8211; Remove some CSS on the single events page that was causing a random border to appear on avada theme [TEC-3952]</li>\n<li>Tweak &#8211; Add CSS class to the event tags label on the event details section on the single event page. [TEC-3951]</li>\n<li>Tweak &#8211; Correct the messaging and link for the v1 deprecation notice. [TEC-3958]</li>\n<li>Tweak &#8211; Include filter to allow modifications to the Grid query for By Day Views like Month and Week, <code>tribe_events_views_v2_by_day_view_day_repository</code></li>\n<li>Language &#8211; 5 new strings added, 26 updated, 2 fuzzied, and 5 obsoleted</li>\n</ul>\n<h4>[5.8.0] 2021-07-01</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 5.8.0 is only compatible with Events Calendar PRO 5.8.0 and higher</li>\n<li>Feature &#8211; Add new Events bar section to the Customizer for control of the Events Bar styles. [TEC-3672]</li>\n<li>Fix &#8211; Correct instance where the date &amp; time symbols (&#8222;@&#8220;) are not changing color along with the text. [TEC-3883]</li>\n<li>Tweak &#8211; Ensure that the Month view date and time default colors match up with the rest [TEC-3709]</li>\n<li>Tweak &#8211; Ensure the Customizer Accent Color defaults to &#8222;royal blue&#8220; (#334aff) [TEC-3884]</li>\n<li>Tweak &#8211; Stop doing all the work here and leverage the new tribe-common Theme_Compatibility. [TCMN-106]</li>\n<li>Tweak &#8211; Add new hooks to the single event templates to allow more third-party control over content without custom templates. [TEC-3948]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_customizer_should_print_shortcode_customizer_styles</code>, <code>tribe_events_views_v2_bootstrap_html</code>, <code>tribe_default_events_template_classes</code>, <code>tribe_events_single_event_title_classes</code>, <code>tribe_events_single_event_title_html_before</code>, <code>tribe_events_single_event_title_html_after</code>, <code>tribe_events_single_event_title_html</code></li>\n<li>Tweak &#8211; Removed filters: <code>tribe_events_views_v2_compatibility_classes</code>, <code>tribe_events_views_v2_theme_compatibility_registered</code></li>\n<li>Tweak &#8211; Added actions: <code>tribe_default_events_template_after_header</code>, <code>tribe_default_events_template_before_footer</code></li>\n<li>Tweak &#8211; Changed views: <code>default-template</code>, <code>single-event</code>, <code>v2/default-template</code></li>\n<li>Language &#8211; 13 new strings added, 64 updated, 6 fuzzied, and 2 obsoleted</li>\n</ul>\n<h4>[5.7.1] 2021-06-23</h4>\n<ul>\n<li>Fix &#8211; Properly recalculate event cost when creating events via the Block Editor. [TEC-3141]</li>\n<li>Fix &#8211; Resolve a compatibility issue with the new single view and the tickets block when using the <code>twentynineteen</code> theme. [TEC-3937]</li>\n<li>Fix &#8211; Ensure that <code>view_data</code> is an array when fetching values from the request. [TEC-3946]</li>\n<li>Fix &#8211; Ensure that the events block editor is disabled when &#8222;Activate Block Editor for Events&#8220; is unchecked. [TEC-3964]</li>\n<li>Tweak &#8211; Make custom post types available from the REST API so they can be compatible with the Navigation block. [TEC-3907]</li>\n<li>Tweak &#8211; Remove aria-labeled attribute from featured icons. [TEC-3396]</li>\n<li>Language &#8211; 0 new strings added, 154 updated, 3 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.7.0] 2021-05-27</h4>\n<ul>\n<li>Feature &#8211; Add new Month View section to the Customizer for v2 views. [TEC-3836]</li>\n<li>Fix &#8211; Apply responsive breakpoints once the page has fully loaded with all JavaScript and Elements on the page [TEC-3797]</li>\n<li>Fix &#8211; Resolve conflicts with Gravity Forms plugin that would prevent correct submission of forms data. [ECP-466]</li>\n<li>Fix &#8211; Correctly handle start and end of day cutoff in Day View when the server timezone is not the same as the site (thanks @therealgilles). [TEC-3877]</li>\n<li>Fix &#8211; Do not remove the <code>archive</code> body class from post tag and category pages when using Page as Event Template. [TEC-3846]</li>\n<li>Fix &#8211; Correctly translate calendar view in WPML language switcher (thanks @dgwatkins). [TEC-3810]</li>\n<li>Fix &#8211; Styles with the default theme <code>twenty twenty one</code> in <code>&lt;buttons&gt;</code> around the calendar. [TEC-3887]</li>\n<li>Fix &#8211; Single event iCalendar export will correctly export only that event information. [TEC-3886]</li>\n<li>Fix &#8211; Use the correct date and time in the Day View time separator when Timezone Mode is set to &#8222;Manual time zones for each event&#8220;. [TEC-3877]</li>\n<li>Fix &#8211; Correctly integrate with the &#8222;Hello Elementor&#8220; theme to avoid issues with The Events Calendar and The Events Calendar PRO Views. [ECP-648]</li>\n<li>Fix &#8211; Correct typo in style output from Customizer.  Thanks @apmatthews for catching and correcting this!</li>\n<li>Fix &#8211; Avoid PHP warnings when linked post types are filtered out (thanks @baden03). [TEC#3533]</li>\n<li>Tweak &#8211; Make sure events from latest past events display the featured image correctly. [TEC-3655]</li>\n<li>Tweak &#8211; Reduced the usage of the word &#8222;onwards&#8220; on list-style view date range headings where simpler headings are better suited. [TEC-3831]</li>\n<li>Tweak &#8211; Move messages below the calendar grid in the mobile version of Month View. [TEC-3793]</li>\n<li>Tweak &#8211; Display a message to let visitors know the selected Month View day has no events in mobile. [TEC-3812]</li>\n<li>Tweak &#8211; Add compatibility for the Full Site Editor navigation block. [TEC-3850]</li>\n<li>Tweak &#8211; Filter the type of files allowed to upload into the EA Client. [TEC-3882]</li>\n<li>Tweak &#8211; Updating lodash to 4.17.21. [TEC-3885]</li>\n<li>Tweak &#8211; Prevent to list changes of hash on URL changes like <code>#content</code> [TEC-3890]</li>\n<li>Tweak &#8211; Update Google Calendar link to use the timezone based on the Timezone Settings from the Calendar [TEC-3143]</li>\n<li>Tweak &#8211; Add the <code>tribe_views_v2_after_setup_loop</code> filter to modify the loop context set up in the View (v2). [ECP-811]</li>\n<li>Tweak &#8211; Add the <code>tribe_events_views_v2_by_day_view_grid_days</code> to allow pre-filling Month and Week Views (v2) Events. [ECP-529]</li>\n<li>Tweak &#8211; Add the <code>tribe_events_views_v2_by_day_view_day_results</code> to allow fine-grained control over Month and Week Views (v2) Event data. [ECP-529]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_customizer_should_print_shortcode_customizer_styles</code>, <code>tribe_customizer_should_print_shortcode_customizer_styles</code>, <code>tribe_events_views_v2_view_ical_repository_args</code>, <code>tribe_events_views_v2_view_{$slug}_asset_origin_object</code>, <code>tribe_events_views_v2_by_day_view_grid_days</code>, <code>tribe_events_views_v2_by_day_view_day_results</code>, <code>tribe_events_views_v2_month_mobile_messages</code>, <code>tribe_events_views_v2_view_cached_html</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_cached_html</code>, <code>tribe_ical_template_event_ids</code>, <code>tribe_get_view_permalink</code>, <code>tribe_get_{$slug}_view_permalink</code></li>\n<li>Tweak &#8211; Added actions: <code>tribe_views_v2_after_setup_loop</code></li>\n<li>Tweak &#8211; Changed views: <code>blocks/classic-event-details</code>, <code>blocks/parts/details</code>, <code>modules/meta/details</code>, <code>v2/components/breakpoints</code>, <code>v2/components/messages</code>, <code>v2/day/time-separator</code>, <code>v2/month</code>, <code>v2/month/calendar-body/day</code>, <code>v2/month/mobile-events</code>, <code>v2/month/mobile-events/mobile-day</code>, <code>v2/month/mobile-events/mobile-day/day-marker</code></li>\n<li>Language &#8211; 27 new strings added, 133 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.6.0] 2021-04-29</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 5.6.0 is only compatible with Events Calendar PRO 5.6.0 and higher</li>\n<li>Fix &#8211; Correct implementation of filters in Views/V2/Hooks.php to avoid fatals. [BTRIA-791]</li>\n<li>Fix &#8211; Ensure when saving on Blocks editor Organizer and Venue IDs don&#8217;t throw notices for failed deletion. [TEC-3844]</li>\n<li>Fix &#8211; Resolve compatibility problem between The Events Calendar and other plugins using Select2. [TEC-3748]</li>\n<li>Fix &#8211; Enqueue full styles for v2 event single only when using full styles. [TEC-3848]</li>\n<li>Fix &#8211; Modify Select2 to clone the <code>jQuery.fn.select2</code> into <code>jQuery.fn.select2TEC</code> to avoid conflicting with third-party usage that didn&#8217;t include the full version of Select2 [TEC-3748]</li>\n<li>Fix &#8211; Add filtering hooks to Cache Listener to allow modifications of which options trigger an occurrence. [ECP-826] [ECP-824]</li>\n<li>Fix &#8211; Improve escaping for messages when no results were found using search (Thanks Steve Pollak)</li>\n<li>Tweak &#8211; Added the ability to filter cached view HTML. Hooks added were: <code>tribe_events_views_v2_view_cached_html</code> and <code>tribe_events_views_v2_view_{$view_slug}_cached_html</code>. [ECP-770]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_customizer_should_print_shortcode_customizer_styles</code>, <code>tribe_events_views_v2_view_ical_repository_args</code>, <code>tribe_events_views_v2_view_cached_html</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_cached_html</code>, <code>tribe_ical_template_event_ids</code></li>\n<li>Tweak &#8211; Changed views: <code>blocks/classic-event-details</code>, <code>blocks/parts/details</code>, <code>modules/meta/details</code>, <code>v2/components/messages</code>, <code>v2/month/mobile-events/mobile-day</code>, <code>v2/month/mobile-events/mobile-day/day-marker</code></li>\n<li>Language &#8211; 3 new strings added, 176 updated, 0 fuzzied, and 6 obsoleted</li>\n</ul>\n<h4>[5.5.0.1] 2021-04-05</h4>\n<ul>\n<li>Fix &#8211; Reduce overhead of widget setup on every page load by setting up the widgets only as needed. [TEC-3833]</li>\n</ul>\n<h4>[5.5.0] 2021-03-29</h4>\n<ul>\n<li>Feature &#8211; Add <code>has_event</code> and <code>has_no_events</code> to the Venue and Organizer ORM so we can filter requests for both by whether they have events or not.</li>\n<li>Fix &#8211; Invert quotes to protect against issue with MySQL in <code>ANSI_QUOTES</code> mode. [TEC-3785]</li>\n<li>Fix &#8211; correct display order of sticky, featured, and &#8222;normal&#8220; events on Month View. Adds a class for targeting sticky posts for styling. [TEC-3770]</li>\n<li>Fix &#8211; Ensure the Events List widget also shows the Time Zone when displaying it is set in the admin. [TEC-3747]</li>\n<li>Fix &#8211; Saving on Blocks editor without Organizer is working as expected again [TEC-3788]</li>\n<li>Fix &#8211; Fusion Core/Avada Widget implementation of The Events Calendar will no longer throw warnings on the frontend display. [ECP-538]</li>\n<li>Fix &#8211; Usage of <code>tribe_get_events()</code> for non-existent posts will no longer throw warnings on the Blocks Editor, impacted Community Events Shortcode usage [BTPLAN-121]</li>\n<li>Tweak &#8211; Added rel=noreferrer to Google Map links. [TEC-3795]</li>\n<li>Tweak &#8211; Include actions before and after the creation of a view for REST API requests. Hooks added were: <code>tribe_events_views_v2_before_make_view_for_rest</code> and <code>tribe_events_views_v2_after_make_view_for_rest</code></li>\n<li>Tweak &#8211; Allow specific filtering to add other views into the HTML caching for performance using hook <code>tribe_events_views_v2_cached_views</code>.</li>\n<li>Tweak &#8211; Include Legacy views deprecation notice [TEC-4809]</li>\n<li>Language &#8211; 8 new strings added, 181 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.4.0.2] 2021-03-10</h4>\n<ul>\n<li>Fix &#8211; Saving organizers properly work on WordPress 5.7 with Blocks Editor [TEC-3788]</li>\n</ul>\n<h4>[5.4.0.1] 2021-03-04</h4>\n<ul>\n<li>Fix &#8211; Prevent fatals happening with PHP 5.6 due to duplicated class for templates [BTRIA-767]</li>\n</ul>\n<h4>[5.4.0] 2021-02-24</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 5.4.0 is only compatible with Events Calendar PRO 5.3.0 and higher</li>\n<li>Fix &#8211; Compatibility with WordPress 5.7 and jQuery 3.5.X</li>\n<li>Fix &#8211; Updated views JavaScript manager is now deferred to the end of the request, to make sure all dependencies are loaded.</li>\n<li>Fix &#8211; Navigation for the Views will no longer use current browser URL as previous url, preventing problems on shortcodes.</li>\n<li>Fix &#8211; Latest Past view moved to not publicly visible, which was the intended behavior.</li>\n<li>Tweak &#8211; Add compatibility container to widgets &#8211; to allow for a non-body target for compatibility classes.</li>\n<li>Tweak &#8211; Include the <code>tribe_events_views_v2_view_page_reset_ignored_params</code> filter to prevent certain params from interfering with pagination resetting. [FBAR-222]</li>\n<li>Tweak &#8211; Use filterable attributes for the view more link and text. Add customizer styling for the link. [ECP-568]</li>\n<li>Tweak &#8211; Removed <code>tribe_events_views_v2_widget_admin_form_{$field_type}_input</code> from the List Widget admin form in favor of using <code>Tribe__Template::do_entry_point()</code> [ECP-486]</li>\n<li>Tweak &#8211; Moved administration templates for List Widget components to Common. [ECP-486]</li>\n<li>Language &#8211; 1 new strings added, 10 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.3.2.1] 2021-02-02</h4>\n<ul>\n<li>Fix &#8211; Prevent Event Aggregator ASYNC requests from failing to import after 5 Events, Venues, RSVP, Tickets and/or Organizers. [TEC-3769]</li>\n<li>Fix &#8211; Update compatibility with PHP 7.4 for ForceUTF8 vendor module. [TEC-3769]</li>\n</ul>\n<h4>[5.3.2] 2021-01-28</h4>\n<ul>\n<li>Feature &#8211; Add customizer support for custom location pins on single events when Views V2 is active. [TEC-3276]</li>\n<li>Fix &#8211; Use dynamic label for fast-forward link on the month view. [TEC-3452]</li>\n<li>Fix &#8211; Correctly filter <code>locale</code> in the <code>Tribe\\Events\\I18n</code> class to avoid errors.</li>\n<li>Fix &#8211; Prevent heartbeat warning when null data param is passed on Cron and AJAX requests [BTRIA-687]</li>\n<li>Fix &#8211; Increase the minimum width of the datetime dropdown when editing an event with the block editor. [TEC-3126]</li>\n<li>Fix &#8211; Ordering with an Array when using <code>Tribe__Repository</code> now properly ignores the global order passed as the default. [ECP-598]</li>\n<li>Fix &#8211; Resolve PHP 8.0 incompatibility with <code>__wakeup</code> and <code>__clone</code> visibility on Extension class.</li>\n<li>Fix &#8211; Prevent <code>tribe_sort_by_priority</code> from throwing warnings on <code>uasort</code> usage for PHP 8+ compatibility.</li>\n<li>Fix &#8211; Update Di52 to include PHP 8+ compatibility.</li>\n<li>Fix &#8211; Modify Freemius <code>class-fs-logger.php</code> file to prevent PHP 8+ warnings.</li>\n<li>Fix &#8211; Correctly handle *nix and Windows server paths that contain falsy values (e.g. <code>0</code> or spaces) when building template paths. [TEC-3712]</li>\n<li>Tweak &#8211; Increase top padding above date stamp in list view. [TEC-3656]</li>\n<li>Tweak &#8211; Reduce bottom margin of the event title in list/day views. [TEC-3656]</li>\n<li>Tweak &#8211; Round featured event line corners. [TEC-3656]</li>\n<li>Tweak &#8211; Add new filter <code>tribe_aggregator_build_url_data</code> to customize the URL delivered to EA server.</li>\n<li>Tweak &#8211; Update V2 Customizer admin styles of TEC sections. [TEC-3696]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_aggregator_build_url_data</code></li>\n<li>Language &#8211; 4 new strings added, 187 updated, 3 fuzzied, and 5 obsoleted</li>\n</ul>\n<h4>[5.3.1] 2020-12-15</h4>\n<ul>\n<li>Feature &#8211; Event Aggregator &#8211; Filter Events by Aggregator/Import Record. [EA-130]</li>\n<li>Feature &#8211; V2 Customizer &#8211; Add background color css overrides. [TEC-3651]</li>\n<li>Feature &#8211; V2 Customizer &#8211; Add Event Title color css overrides. [TEC-3334]</li>\n<li>Feature &#8211; V2 Customizer &#8211; Add Event Date &amp; Time color css overrides. [TEC-3675]</li>\n<li>Feature &#8211; V2 Customizer &#8211; Add controls for Background Color to general and single-event sections. [TEC-3683]</li>\n<li>Feature &#8211; V2 Customizer &#8211; Add controls for Event Title Color to general section. [TEC-3684]</li>\n<li>Feature &#8211; V2 Customizer &#8211; Add controls for Event Date &amp; Time Color to general section. [TEC-3685]</li>\n<li>Tweak &#8211; Add opaque backgrounds for selected bordered elements. [TEC-3673]</li>\n<li>Tweak &#8211; Change Title/Date &amp; Time font color defaults on the Event Single page. [TEC-3682]</li>\n<li>Fix &#8211; Fix an issue in csv venue imports where the address would not import.  [TEC-3637]</li>\n<li>Fix &#8211; Compatibility for some theme menus that no longer displayed when an event is password protected. [TEC-2968]</li>\n<li>Language &#8211; 8 new strings added, 63 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.3.0] 2020-12-02</h4>\n<ul>\n<li>Feature &#8211; Event Aggregator &#8211; Search Box for Scheduled Imports. [TEC-3570]</li>\n<li>Feature &#8211; Event Aggregator Batch Pushing for Cron Imports [EA-297]</li>\n<li>Tweak &#8211; Add the filter <code>tribe_aggregator_import_queue_cleaner_time_to_live</code> to customize the time in seconds to consider an EA record alive. [EA-297]</li>\n<li>Tweak &#8211; Add the filter <code>tribe_aggregator_import_queue_cleaner_stall_limit</code> to customize the number of seconds for an EA record to be considered stalled. [EA-297]</li>\n<li>Tweak &#8211; Add the filter <code>tribe_events_aggregator_build_url</code> [EA-297]</li>\n<li>Tweak &#8211; Adjust Event Aggregator Client Progress Bar using the Heart Beat API for polling state instead [TEC-3534]</li>\n<li>Tweak &#8211; Event Aggregator &#8211; Make default limit by number of events instead of by date range. [TEC-3635]</li>\n<li>Tweak &#8211; Event Aggregator/Eventbrite Tickets &#8211; Remove verbiage regarding 50 event limit on Eventbrite imports.</li>\n<li>Tweak &#8211; Add the <code>tribe_get_organizer_object</code> function. [TEC-3645]</li>\n<li>Tweak &#8211; Change the return value of the <code>tribe_get_event( $event_id )-&gt;organizers</code> from a collection of Organizer names to a collection of Organizer post objects. [TEC-3645s]</li>\n<li>Tweak &#8211; Add the <code>tribe_get_event( $event_id )-&gt;organizer_names</code> method to return a collection of the Event Organizer names. [TEC-3645]</li>\n<li>Tweak &#8211; Ensure widgets don&#8217;t get Filter Bar classes on their containers. [FBAR-202]</li>\n<li>Tweak &#8211; Switch the List View previous/next URL methods to use the slug rather than a hard-coded &#8222;list&#8220; so the class is more easily extendable. [TEC-3648]</li>\n<li>Tweak &#8211; Add an option to trash events after 1 month (thanks @StefanSchroeder).</li>\n<li>Tweak &#8211; Add the <code>tribe_events_views_v2_datepicker_no_conflict</code> filter (default <code>false</code>) to allow loading the Views v2 datepicker in no-conflict mode, when set to <code>true</code>, and avoid issues with other plugins that are loading the built-in WordPress <code>jquery-ui-datepicker</code> script. [TEC-3581]</li>\n<li>Tweak &#8211; Improve WPML integration and URL localization of Views v2. [TEC-3608]</li>\n<li>Fix &#8211; Event Aggregator &#8211; Fix Eventbrite status filter to not return &#8218;do_not_override&#8216; and handle Eventbrite&#8217;s additional statuses. [TEC-3569]</li>\n<li>Fix &#8211; Ensure ECP shortcode today button handles categories gracefully. [ECP-492]</li>\n<li>Fix &#8211; Prevent creation of duplicate venues for default address while adding or editing events. [ECP-482]</li>\n<li>Fix &#8211; Make sure Month View &#8222;View More&#8220; link to Day View will preserve the current search criteria. [TEC-3230]</li>\n<li>Fix &#8211; Ensure Event Aggregator Cron schedules always have array format and avoid errors on fresh WordPress installations (thanks @mmcachran).</li>\n<li>Fix &#8211; Regular expression to sanitize name of columns on the EA client make sure all invalid characters are removed.</li>\n<li>Fix &#8211; Use more robust code in the <code>tribe_is_past_event</code> template tag to avoid Warnings.</li>\n<li>Fix &#8211; Review and improve the Rewrite component to correctly parse and handle localized URLs and accented characters. [TEC-3608]</li>\n<li>Language &#8211; 25 new strings added, 775 updated, 1 fuzzied, and 6 obsoleted</li>\n</ul>\n<h4>[5.2.1] 2020-10-22</h4>\n<ul>\n<li>Tweak &#8211; Change Views v2 AJAX request method from GET to POST to avoid issues with too long URLs. [TEC-3283]</li>\n<li>Tweak &#8211; Add the <code>tribe_events_views_v2_endpoint_method</code> filter to allow controlling the HTTP method Views should use to fetch their content from the back-end endpoint. [TEC-3283]</li>\n<li>Tweak &#8211; Add the <code>tribe_events_views_v2_endpoint_url</code> filter to allow controlling the URL Views should use to fetch their content from the back-end endpoint. [TEC-3283]</li>\n<li>Fix &#8211; Prevent Event Aggregator 15 minute Cron Schedule from being created when not required (props @jetxpert) [EA-317]</li>\n<li>Fix &#8211; Add filter to toggle off the event templates hijack. [TEC-3521]</li>\n<li>Fix &#8211; Correct url for current month iCal export link. [TEC-3575]</li>\n<li>Fix &#8211; Avoid loading the same CSS file twice on the back-end. [TEC-3623]</li>\n<li>Fix &#8211; Ensure ECP shortcode prev/next urls handle categories gracefully. [ECP-492]</li>\n<li>Language &#8211; 3 new strings added, 200 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.2.0] 2020-09-28</h4>\n<ul>\n<li>Fix &#8211; Fix the order of the List View when the PRO is set to show only the first instance of a Recurring Event. [ECP-467]</li>\n<li>Fix &#8211; Fix a PHP error that would arise when during the translation, by the WPML plugin, of some strings. [TEC-3454, TEC-3578]</li>\n<li>Fix &#8211; Fix a compatibility issue with the WPML plugin that would prevent some options from being translated correctly. [TEC-3454]</li>\n<li>Fix &#8211; Generation and usage of translated strings that would cause issues with the WPML plugin. [TEC-3454]</li>\n<li>Tweak &#8211; Use the <code>border-small</code> class for the today button, add new border button styles to customizer. [FBAR-143]</li>\n<li>Tweak &#8211; Add missing CSS classes to the Event Categories label on the single event page. [TEC-3478]</li>\n<li>Tweak &#8211; Adjust accordion trigger selector to allow multiple space-separated <code>data-js</code> attributes. [FBAR-125]</li>\n<li>Tweak &#8211; Adjust spacing on header to prevent screen overflow. [FBAR-132]</li>\n<li>Tweak &#8211; Adjust aria attributes and add loader text to make ajax loading more accessible. [FBAR-147]</li>\n<li>Tweak &#8211; Add the <code>tribe_events_latest_past_view_display_template</code> filter to allow controlling the display of templates  in the context of the Latest Past Events View. [FBAR-148]</li>\n<li>Tweak &#8211; Allow passing of additional data to the AJAX request by use of container data. [FBAR-162]</li>\n<li>Language &#8211; 2 new strings added, 20 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.1.6] 2020-08-24</h4>\n<ul>\n<li>Tweak &#8211; Move the iCal output coding out of the loop and into its own method.  [VE-150]</li>\n<li>Fix &#8211; Fix SQL errors that would show up when creating custom Event queries in theme builders. [TEC-3530]</li>\n<li>Fix &#8211; Fix SQL errors that would show up when running custom Event queries in plugins . [TEC-3528]</li>\n<li>Fix &#8211; Fix SQL errors that would prevent customers from being able to select tickets assigned to Events in some instances. [TEC-3500]</li>\n<li>Fix &#8211; On re-import of the excerpt and event description field enable changes to the existing values. [TEC-3080]</li>\n<li>Fix &#8211; On re-import enable excerpt and description to be cleared of their values. [TEC-3080]</li>\n<li>Fix &#8211; On re-import only overwrite items that have been mapped. [TEC-2962]</li>\n<li>Tweak &#8211; Add filters for venue and organizer import data. [TEC-2962]</li>\n<li>Tweak &#8211; Add ability to use default values from settings for venue imports via the <code>tribe_events_importer_set_default_venue_import_values</code> filter. [TEC-2962]</li>\n<li>Tweak &#8211; Replace placeholders in template docblocks with appropriate links. [TEC-3399]</li>\n<li>Language &#8211; 32 new strings added, 75 updated, 0 fuzzied, and 28 obsoleted</li>\n</ul>\n<h4>[5.1.5] 2020-07-27</h4>\n<ul>\n<li>Tweak &#8211; Add filters to link generation for events, venues, and organizers. [EXT-151]</li>\n<li>Tweak &#8211; Remove disabled admin notice for Virtual Events and Gutenberg. [TEC-3546]</li>\n<li>Tweak &#8211; Modify parameters on <code>register_rest_route</code> to include <code>permission_callback</code> to prevent notices on WordPress 5.5.</li>\n<li>Fix &#8211; Prevent the wrong dates in mobile month view date marker when on leading UTC timezones. [TEC-3549]</li>\n<li>Fix &#8211; Fix the display order of Events starting on the same date and time to ensure it&#8217;s consistent. [TEC-3548]</li>\n<li>Fix &#8211; Fix the handling of URL fragments translations in Views to ensure fully localized View URLs work. [TEC-3479]</li>\n<li>Fix &#8211; Display promo at the bottom of views when &#8222;Show The Events Calender link&#8220; is checked. [TEC-3321]</li>\n<li>Fix &#8211; Set proper timezone on block editor when creating a new event. [TEC-3543]</li>\n<li>Fix &#8211; Prevent PHP error when using V2, the site home page at <code>Main Events page</code>, including events in the blog loop, and Pro is active.  [ECP-361]</li>\n<li>Fix &#8211; Resolve WordPress REST API authentication errors related to <code>null</code> returns. Props to @ahaurat [TEC-3539]</li>\n<li>Language &#8211; 0 new strings added, 55 updated, 0 fuzzied, and 6 obsoleted</li>\n</ul>\n<h4>[5.1.4] 2020-06-24</h4>\n<ul>\n<li>Tweak &#8211; Improve fresh install experience by setting the default template to the Events one [TEC-3453]</li>\n<li>Tweak &#8211; Create a new method to request an update back to EA imports to mark imports as completed on EA server [TEC-3476]</li>\n<li>Tweak &#8211; Add a new filter <code>tribe_aggregator_service_put_pue_licenses</code> to enable external sources the option to add additional PUE attached to the request. [TEC-3476]</li>\n<li>Tweak &#8211; Prevent latest-past from showing in the front end view selector in new installs [TEC-3450]</li>\n<li>Tweak &#8211; On a fresh install set the enabled views to list, month, and day and set the default view to list to stop erroneous error entries [TEC-3451]</li>\n<li>Tweak &#8211; Add a new &#8222;scheduled&#8220; status for the activity reporter of imports from EA [TEC-3475]</li>\n<li>Tweak &#8211; Add admin notice for Virtual Events. [TEC-3620]</li>\n<li>Language &#8211; 3 new strings added, 246 updated, 1 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[5.1.3] 2020-06-22</h4>\n<ul>\n<li>Tweak &#8211; Add new filter <code>tribe_events_filter_views_v2_plural_events_label</code> to customize the label in V2 views. [VE-9]</li>\n<li>Fix &#8211; Prevent &#8222;too few arguments&#8220; on the settings page when a url contains percentage signs. [VE-111]</li>\n<li>Fix &#8211; Correctly store Event Organizer meta when using the ORM.</li>\n<li>Fix &#8211; Linked posts (Organizers and Venues) correctly check if the item selected is brand new or existing when edit link is empty. [TEC-3481]</li>\n<li>Language &#8211; 1 new strings added, 112 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[5.1.2.1] 2020-06-09</h4>\n<ul>\n<li>Security &#8211; Remove deprecated usage of escapeMarkup in Select2 (props to miha.jirov for reporting this).</li>\n</ul>\n<h4>[5.1.2] 2020-05-27</h4>\n<ul>\n<li>Tweak &#8211; Prevent undefined errors when using tribe_get_events and forcing a cache refresh.</li>\n<li>Fix &#8211; Prevent <code>E_ERROR</code> for <code>Tribe__Events__Meta__Save</code> construct when dealing with revisions, which some WP Engine customers were seeing.</li>\n<li>Language &#8211; 0 new strings added, 49 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[5.1.1] 2020-05-11</h4>\n<ul>\n<li>Feature &#8211; Move all the featured event icons to templates. [TEC-3441]</li>\n<li>Feature &#8211; Added a helper method <code>Tribe__Plugins::is_active( \'slug\' )</code> to check if a given plugin is active.</li>\n<li>Feature &#8211; Add entry points through filters to be able to add content after the opening html tag or before the closing html tag. [TCMN-65]</li>\n<li>Tweak &#8211; Deprecated the <code>Tribe__Events__Main::get_i18n_strings_for_domains()</code> and <code>Tribe__Events__Main::get_i18n_strings()</code> methods; use the methods with the same name and signature provided by the <code>tribe( \'tec.18n\' )</code> object [TEC-3404]</li>\n<li>Tweak &#8211; Add new filter <code>tribe_aggregator_manage_record_column_source_html</code> to customize the source column content HTML used on the Event Aggregator Import &#8222;History&#8220; tab.</li>\n<li>Tweak &#8211; Modify language variables to improve translations readability on Updated Views navigation previous and next buttons. [props @justlevine]</li>\n<li>Tweak &#8211; Add new filter <code>tribe_aggregator_manage_record_column_source_html</code> to customize the source column content HTML used on the Event Aggregator Import &#8222;History&#8220; tab.</li>\n<li>Fix &#8211; Enqueue Customizer stylesheets properly via <code>tribe_customizer_inline_stylesheets</code> in Common. [TEC-3401]</li>\n<li>Fix &#8211; Not being able to create events because capabilities were not set on activation or update of the plugin. [TEC-3350]</li>\n<li>Fix &#8211; Adjust templates to show time zone in event details when &#8222;Show time zone&#8220; is checked. [TEC-2979]</li>\n<li>Fix &#8211; Correct bad defaults from <code>Template-&gt;attr()</code> and ensure that the timezone info is correctly hydrated in the case of an unchanged block. [TEC-2964]</li>\n<li>Fix &#8211; Show the correct counts on the Event Aggregator Import &#8222;History&#8220; tab for non-Event content types being imported.</li>\n<li>Fix &#8211; Prevent creation of empty venue when removing a Venue inside of the Events using the Classic editor that had a US state selected. [TEC-3416]</li>\n<li>Fix &#8211; Event Aggregator imported events when using default status or categories from the Settings Page will now be imported correctly. [TEC-3445]</li>\n<li>Fix &#8211; A localization support that would mangle Views URLs when WPML plugin is active alongside Views v2 [TEC-3404]</li>\n<li>Fix &#8211; Prevent problems with <code>func_get_args()</code> usage around template inclusion for legacy template files [TEC-3104]</li>\n<li>Tweak &#8211; Extended support for namespaced classes in the Autoloader.</li>\n<li>Tweak &#8211; Make Customizer stylesheet enqueue filterable via <code>tribe_customizer_inline_stylesheets</code>. [TEC-3401]</li>\n<li>Tweak &#8211; Normalize namespaced prefixes with trailing backslash when registering them in the Autoloader. [VE-14]</li>\n<li>Language &#8211; 2 new strings added, 243 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[5.1.0] 2020-04-23</h4>\n<ul>\n<li>Feature &#8211; Add a &#8222;fast forward&#8220; link to Month and Day views when there are no events to show. [TEC-3400]</li>\n<li>Feature &#8211; Add <code>tribe_events_views_v2_use_ff_link</code> and <code>tribe_events_views_v2_{$this-&gt;slug}_use_ff_link</code> filters to allow control of the link. [TEC-3400]</li>\n<li>Feature &#8211; Add Recent Past Events Views. [TEC-3385]</li>\n<li>Tweak &#8211; Improved on meta data handling of for Blocks editor.</li>\n<li>Tweak &#8211; Deprecate Select2 3.5.4 in favor of SelectWoo</li>\n<li>Tweak &#8211; Load plugin text domain on the new <code>tribe_load_text_domains</code> action hook, which fires on <code>init</code> instead of on the <code>plugins_loaded</code> hook. [TEC-3406]</li>\n<li>Tweak &#8211; Add a constant <code>TRIBE_CACHE_VIEWS</code> to turn off views HTML caching.</li>\n<li>Fix &#8211; Theme navigation warning around <code>post_date = \'0\'</code> no longer happens when using Page template for Updated Views [TEC-3434]</li>\n<li>Fix &#8211; Selecting other Page templates from Settings &gt; Display now loads the correct template properly, to display events.</li>\n<li>Fix &#8211; Preventing redirects from updated Views V2 to be too broad and end up catching requests from other Plugins, reported by GravityView team on Gravity Forms bug with imports.</li>\n<li>Fix &#8211; Prevent PHP errors from happening during bulk activation or deactivation of the plugin [TCMN-53]</li>\n<li>Fix &#8211; Correct iCal link on month view for months other than the current one [TEC-3267]</li>\n<li>Fix &#8211; Correct a few incorrect and/or typoed text domains [TEC-3390]</li>\n<li>Fix &#8211; Ensure we pass search keywords when changing views and in the top-bar nav [TEC-3282]</li>\n<li>Fix &#8211; Prevent Blocks editor from throwing browser alert when leaving the page without any changes applied to the edited post.</li>\n<li>Fix &#8211; Several strings have been adjusted for consistency and better translatability [BTRIA-307]</li>\n<li>Hook &#8211; Add the <code>tribe_events_blocks_editor_is_on</code> filter; returning a falsy value from this filter will prevent the Blocks Editor to ever be active on Events; else the settings from Events &gt; Settings will apply [TEC-3349]</li>\n<li>Tweak &#8211; Add some filters for better control of link targets, standardize the way we create those links [TEC-3402]</li>\n<li>Language &#8211; 4 new strings added, 286 updated, 1 fuzzied, and 2 obsoleted</li>\n</ul>\n<h4>[5.0.3.1] 2020-03-23</h4>\n<ul>\n<li>Fix &#8211; Assets class modification to prevent JavaScript and CSS failing to load when <code>SCRIPT_DEBUG=true</code> [TCMN-52]</li>\n</ul>\n<h4>[5.0.3] 2020-03-23</h4>\n<ul>\n<li>Feature &#8211; Allow users to set a custom name for new Event Aggregator Imports. [TEC-3286]</li>\n<li>Tweak &#8211; Add back missing JSON-LD to Single Events. [TEC-3262]</li>\n<li>Tweak &#8211; Minify the Freemius svg assets. [TEC-3215]</li>\n<li>Tweak &#8211; Remove &#8222;(beta)&#8220; label from URL source type of import. [TEC-3289]</li>\n<li>Tweak &#8211; Reword the Filter Activation setting&#8217;s labels for better clarity.  [FBAR-79]</li>\n<li>Fix &#8211; Ensure that any values for <code>liveFilterUpdate</code> that are not <code>automatic</code> or <code>manual</code> get converted. [FBAR-83]</li>\n<li>Fix &#8211; Breakpoint code compatibility with the latest version of jQuery 3.4.1 [BTRIA-154]</li>\n<li>Fix &#8211; Remove numbers from listed events in event list widget for Genesis theme. [TEC-2957]</li>\n<li>Fix &#8211; Customizer accent color affects featured line and text. [TEC-3277]</li>\n<li>Fix &#8211; Resolve conflict between datepicker holding consistent size when navigating and flexibility on small screen sizes. [TEC-3322]</li>\n<li>Fix &#8211; Respect EA <code>post_status</code> from settings when an event does not have a defined value. [TEC-3255]</li>\n<li>Fix &#8211; Save the <code>post_status</code> for a scheduled import when using a different value other than <code>publish</code>. [TEC-3296]</li>\n<li>Fix &#8211; Update events, venues, and organizers to use dynamic labels. [TEC-3280]</li>\n<li>Fix &#8211; Resolve an issue in Views v2 that would break URLs when the event single and archive slugs have the same value due to the &#8222;Events URL slug&#8220; and &#8222;Single event URL slug&#8220; settings or due to their translations [TEC-3254]</li>\n<li>Fix &#8211; Restore correct handling of events RSS feeds; events will show in the RSS feed in ascending start date, starting from the current day and the event publish date will be set to the event start date [TEC-3252]</li>\n<li>Hook &#8211; Add filters <code>tribe_events_liveupdate_automatic_label_text</code> and <code>tribe_events_liveupdate_manual_label_text</code> to allow Filter Bar to include itself in those labels. [TEC-3322]</li>\n<li>Hook &#8211; Add the <code>tribe_views_v2_events_query_controller_active</code> filter; returning a falsy value from this filter will prevent Views v2 from altering the WordPress query. This filter allows handling situations where Views v2 might interfere with third party plugins (e.g. custom RSS feed implementations) [TEC-3252]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_events_option_convert_live_filters</code>, <code>tribe_events_views_v2_messages_need_events_label_keys</code></li>\n<li>Tweak &#8211; Removed filters: <code>tribe_events_ical_export_text</code></li>\n<li>Tweak &#8211; Changed views: <code>v2/components/events-bar/search/keyword</code>, <code>v2/month/calendar-body/day</code></li>\n<li>Language &#8211; 11 new strings added, 81 updated, 0 fuzzied, and 6 obsoleted</li>\n</ul>\n<h4>[5.0.2.1] 2020-02-25</h4>\n<ul>\n<li>Fix &#8211; Plugin dependency registration with <code>Plugin_Register</code> will not prevent loading of all plugins in list if the last item loaded fails. [TCMN-41]</li>\n</ul>\n<h4>[5.0.2] 2020-02-19</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 5.0.2 is only compatible with Filter Bar 4.9.2 and higher</li>\n<li>Version &#8211; The Events Calendar 5.0.2 is only compatible with Events Calendar PRO 5.0.2 and higher</li>\n<li>Tweak &#8211; Modify Link Color Customizer option for single event links in description, the venue, the organizer, and the website link in classic editor.  [TEC-3219]</li>\n<li>Tweak &#8211; Move link color option to General tab in Customizer and remove Text tab.  [TEC-3244]</li>\n<li>Tweak &#8211; Freemius Opt-out workflow now present on all occasions [TEC-3171]</li>\n<li>Tweak &#8211; Freemius updated to the latest version 2.3.2 [TEC-3171]</li>\n<li>Tweak &#8211; Remove the &#8222;Default stylesheet &#8211; full&#8220; option from display settings, for the new views. [TEC-3125]</li>\n<li>Tweak &#8211; Change the live refresh option to a radio, adjust conditional checks to accommodate. [TEC-3072]</li>\n<li>Fix &#8211; Freemius activation URL send via email works as expected [TEC-3218]</li>\n<li>Fix &#8211; Improve compatibility from Updated Views V2 with Beaver Builder plugins [TEC-3248]</li>\n<li>Fix &#8211; More robust handling of <code>hide_from_listings</code> in REST API v2, thanks @maxm123</li>\n<li>Fix &#8211; Make sure the new Views (v2) will correctly print JSON-LD schema information [TEC-3241]</li>\n<li>Language &#8211; 4 new strings added, 248 updated, 1 fuzzied, and 3 obsoleted</li>\n</ul>\n<h4>[5.0.1] 2020-02-12</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 5.0.1 is only compatible with Filter Bar 4.9.1 and higher</li>\n<li>Version &#8211; The Events Calendar 5.0.1 is only compatible with Events Calendar PRO 5.0.1 and higher</li>\n<li>Feature &#8211; Add the &#8222;Accent Color&#8220; option in the customizer, for the new views. [TEC-3067]</li>\n<li>Fix &#8211; Fix venue block title from being indented in Twenty Twenty theme. [TEC-3140]</li>\n<li>Fix &#8211; Fix website block label from disappearing when adding event details classic block. [TEC-2971]</li>\n<li>Fix &#8211; Fix style overrides for new view shortcodes for Enfold theme. [ECP-315]</li>\n<li>Fix &#8211; Fix events bar input class recognition for JS handling in new views. [TEC-3091]</li>\n<li>Fix &#8211; Ensure datepicker does not get cut off in small width screens for new views. [TEC-2983]</li>\n<li>Fix &#8211; Venue and organizer blocks link to venue and organizer pages if Events Calendar Pro is activated. [ECP-14]</li>\n<li>Fix &#8211; Use proper check for map on venue block to apply proper class. [TEC-3020]</li>\n<li>Fix &#8211; Remove font family applied to organizer block to allow theme styles to be applied. [TEC-2974]</li>\n<li>Fix &#8211; Fix numbers breaking into two lines in datepicker in Twenty Twenty theme. [TEC-2999]</li>\n<li>Fix &#8211; Fix tooltips being cut off and hidden in month view. [TEC-3000]</li>\n<li>Fix &#8211; Fix event sharing block cutting off text in block editor admin when editing event. [TEC-2972]</li>\n<li>Fix &#8211; Fix disappearing price description in block editor admin when editing event. [TEC-2992]</li>\n<li>Fix &#8211; Allow venues to be properly removed by clicking the remove venue button in the venue block. [TEC-2965]</li>\n<li>Fix &#8211; Ensure map does not display if enable map setting is disabled. [TEC-3013]</li>\n<li>Fix &#8211; Fix the datepicker width problem in Google Chrome, for the new views. [TEC-2995]</li>\n<li>Fix &#8211; Fix an issue where Venue provinces would be incorrectly populated in iCal exports [TEC-3223]</li>\n<li>Fix &#8211; Deleting events after X feature no longer will delete posts with <code>_EventEndDate</code> meta [TEC-3233]</li>\n<li>Tweak &#8211; Adjust tooltip title styles for Twenty Twenty theme. [TEC-2998]</li>\n<li>Tweak &#8211; Remove find events button and related data when events bar is disabled. [TEC-3074]</li>\n<li>Tweak &#8211; Ensure datepicker always updates view via live refresh. [TEC-3073]</li>\n<li>Tweak &#8211; Adjust customizer labels for sites using the new views [TEC-3066]</li>\n<li>Tweak &#8211; Allow start datetime and end datetime to be the same to hide end datetime in frontend when using block editor. [TEC-3009]</li>\n<li>Tweak &#8211; Move the &#8222;Link Color&#8220; option in the customizer, for the new views. [TEC-3067]</li>\n<li>Language &#8211; 14 new strings added, 256 updated, 0 fuzzied, and 5 obsoleted</li>\n</ul>\n<h4>[5.0.0.2] 2020-02-06</h4>\n<ul>\n<li>Fix &#8211; Datepicker format now properly defaults to the correct value when Display Settings have not been saved. [TEC-3229]</li>\n<li>Fix &#8211; New views mobile breakpoints interactions with Caching plugins resolved. [TEC-3221]</li>\n</ul>\n<h4>[5.0.0.1] 2020-01-31</h4>\n<ul>\n<li>Fix &#8211; Events with timezones that differ from the site timezone now display on the correct date. [TEC-3208]</li>\n<li>Fix &#8211; Multi-day events now display on all days that they are supposed to. [TEC-3212]</li>\n<li>Fix &#8211; End of day cutoff is now being observed appropriately when creating the day grid stack. [TEC-3210]</li>\n<li>Fix &#8211; Fix number of parameters when doing <code>the_post</code> action, for the single event view in the new views. [TEC-3214]</li>\n<li>Fix &#8211; 404s on permalinks have been resolved by moving the flush permalink action to a later moment of time on activation after all rules have been declared. [TEC-3211]</li>\n</ul>\n<h4>[5.0.0] 2020-01-27</h4>\n<ul>\n<li>Feature &#8211; Created new Month, Day, and List views with all new HTML, CSS, and JavaScript.</li>\n<li>Feature &#8211; Add upgrade path for new Month, Day, and List views making it opt-in for any existing users.</li>\n<li>Feature &#8211; New templating engine to power the new Views. <a href=\"https://evnt.is/1aid\" rel=\"nofollow ugc\">See More</a></li>\n<li>Feature &#8211; Views initialization and instance includes more filters and actions to allow improved extensibility and customization. (See all filters below)</li>\n<li>Feature &#8211; Views manager and bootstrapping classes were created to allow more control over where and when views will be initialized. (See filters related to those below)</li>\n<li>Feature &#8211; Reduced maintenance burden of customizations by leveraging atomic templates for the new views. (See list of files now available below)</li>\n<li>Feature &#8211; CSS uses a Block Element Modifier (BEM) methodology to improve reusability of components. <a href=\"https://evnt.is/1aib\" rel=\"nofollow ugc\">See More</a></li>\n<li>Feature &#8211; New Views share one JavaScript Manager, which contains multiple jQuery actions and customization points.</li>\n<li>Feature &#8211; View navigation relies on the WP Rest API, improving reliability and caching opportunities.</li>\n<li>Feature &#8211; Event permalinks are now more consistent across navigation using <code>WP_Rewrite</code> to map params to their matching URL, which improves SEO.</li>\n<li>Feature &#8211; Event data filtering used across all new views: <code>tribe_get_event_before</code>, <code>tribe_get_event</code>, <code>tribe_get_event_after</code>, <code>tribe_events_organizers_fetch_callback</code>, <code>tribe_events_venues_fetch_callback</code></li>\n<li>Feature &#8211; Venue data filtering used across all new views: <code>tribe_get_venue_object_before</code>, <code>tribe_get_venue_object</code></li>\n<li>Tweak &#8211; Custom Before and After HTML on the Events &gt; Settings page will now prefer event view styling over the Theme&#8217;s CSS.</li>\n<li>Tweak &#8211; Lowered the reliance on the global <code>$wp_query</code> to create more consistent output and faster maintenance. <a href=\"https://evnt.is/1aic\" rel=\"nofollow ugc\">See More</a></li>\n<li>Tweak &#8211; View overrides for the new views will look within a new folder in your theme to avoid conflicting with old The Events Calendar theme customizations <a href=\"https://evnt.is/1aia\" rel=\"nofollow ugc\">See More</a></li>\n<li>Tweak &#8211; Switch to a compact date while on day and month view in mobile [136789]</li>\n<li>Tweak &#8211; Remove <code>tribe_events_getLink</code> in favor of <code>tribe_events_get_link</code> which was a deprecated filter since version 4.3</li>\n<li>Hooks &#8211; View template include and render filters and actions: <code>tribe_template_before_include</code>, <code>tribe_template_before_include:{$template_path}</code>, <code>tribe_template_after_include</code>, <code>tribe_template_after_include:{$template_path}</code>, <code>tribe_template_html</code>, <code>tribe_template_html:{$template_path}</code></li>\n<li>Hooks &#8211; View instance filters and actions: <code>tribe_events_views_v2_view_template</code>, <code>tribe_events_views_v2_{$view_slug}_view_template</code>, <code>tribe_events_views_v2_view_context</code>, <code>tribe_events_views_v2_{$view_slug}_view_context</code>, <code>tribe_events_views_v2_view_repository</code>, <code>tribe_events_views_v2_{$view_slug}_view_repository</code>, <code>tribe_events_views_v2_view_url_query_args</code>, <code>tribe_events_views_v2_{$view_slug}_view_url_query_args</code>, <code>tribe_events_views_v2_view_html_classes</code>, <code>tribe_events_views_v2_{$view_slug}_view_html_classes</code>, <code>tribe_events_views_v2_url_query_args</code>, <code>tribe_events_views_v2_view_template_vars</code>, <code>tribe_events_views_v2_view_{$view_slug}_template_vars</code>, <code>tribe_events_views_v2_view_url</code>, <code>tribe_events_views_v2_view_{$view_slug}_url</code>, <code>tribe_events_views_v2_view_prev_url</code>, <code>tribe_events_views_v2_view_{$view_slug}_prev_url</code>, <code>tribe_events_views_v2_view_next_url</code>, <code>tribe_events_views_v2_view_{$view_slug}_next_url</code>, <code>tribe_events_views_v2_view_repository_args</code>, <code>tribe_events_views_v2_view_link_label_format</code>, <code>tribe_events_views_v2_view_{$view_slug}_link_label_format</code>, <code>tribe_events_views_v2_view_title</code>, <code>tribe_events_views_v2_view_{$view_slug}_title</code>, <code>tribe_events_views_v2_view_messages</code>, <code>tribe_events_views_v2_view_{$view_slug}_messages</code>, <code>tribe_events_views_v2_view_breadcrumbs</code>, <code>tribe_events_views_v2_view_{$view_slug}_breadcrumbs</code>, <code>tribe_events_views_v2_view_display_events_bar</code>, <code>tribe_events_views_v2_view_{$view_slug}_display_events_bar</code>, <code>tribe_events_views_v2_view_ical_data</code>, <code>tribe_events_views_v2_view_{$view_slug}_ical_data</code>, <code>tribe_events_views_v2_view_show_datepicker_submit</code>, <code>tribe_events_views_v2_view_{$view_slug}_show_datepicker_submit</code>, <code>tribe_events_views_v2_view_public_views</code>, <code>tribe_events_views_v2_view_{$view_slug}_public_views</code>, <code>tribe_events_views_v2_view_data</code>, <code>tribe_events_views_v2_{$view_slug}_view_data</code>, <code>tribe_events_views_v2_{$view_slug}_events_per_day</code>, <code>tribe_events_views_v2_month_events_per_day</code>, <code>tribe_events_views_v2_month_nav_skip_empty</code>, <code>tribe_events_views_v2_view_breakpoints</code>, <code>tribe_events_views_v2_view_{$view_slug}_breakpoints</code>, <code>tribe_events_views_v2_before_make_view</code>, <code>tribe_events_views_v2_after_make_view</code>, <code>tribe_events_views_v2_messages_map</code>, <code>tribe_events_views_v2_view_messages_before_render</code></li>\n<li>Hooks &#8211; View REST API HTML request actions and filters: <code>tribe_events_views_v2_request_arguments</code>, <code>tribe_events_views_v2_rest_endpoint_available</code>, <code>tribe_events_views_v2_rest_params</code>, <code>tribe_events_views_v2_{$view_slug}_rest_params</code></li>\n<li>Hooks &#8211; Views Bootstrap filters and actions: <code>tribe_events_views_v2_bootstrap_pre_get_view_html</code>, <code>tribe_events_views_v2_bootstrap_should_display_single</code>, <code>tribe_events_views_v2_bootstrap_view_slug</code>, <code>tribe_events_views_v2_bootstrap_pre_should_load</code>, <code>tribe_events_views_v2_should_hijack_page_template</code></li>\n<li>Hooks &#8211; Views Manager filters and actions: <code>tribe_events_views</code>, <code>tribe_events_views_v2_manager_default_view</code>, <code>tribe_events_views_v2_manager_view_label_domain</code>, <code>tribe_events_views_v2_manager_{$view_slug}_view_label_domain</code>, <code>tribe_events_views_v2_manager_view_label</code>, <code>tribe_events_views_v2_manager_{$view_slug}_view_label</code></li>\n<li>Hooks &#8211; Other views filters and actions: <code>tribe_events_views_v2_is_enabled</code>, <code>tribe_events_views_v2_assets_should_enqueue_frontend</code>, <code>tribe_events_views_v2_assets_should_enqueue_full_styles</code>, <code>tribe_events_v2_view_title</code>, <code>tribe_events_views_v2_should_replace_excerpt_more_link</code>, <code>tribe_events_views_v2_view_before_events_html</code>, <code>tribe_events_views_v2_view_after_events_html</code>, <code>tribe_events_views_v2_month_title</code>, <code>tribe_events_views_v2_day_title</code>, <code>tribe_events_views_v2_category_title</code>, <code>tribe_events_views_v2_theme_compatibility_registered</code>, <code>tribe_events_views_v2_stack_spacer</code>, <code>tribe_events_views_v2_stack_recycle_spaces</code>, <code>tribe_events_views_v2_stack_events</code>, <code>tribe_events_views_v2_stack_filter_event</code>, <code>tribe_events_views_v2_stack_normalize</code></li>\n<li>Templates &#8211; Views refactored template files: <code>v2/base</code>, <code>v2/components/after</code>, <code>v2/components/before</code>, <code>v2/components/breadcrumbs</code>, <code>v2/components/breadcrumbs/breadcrumb</code>, <code>v2/components/breadcrumbs/linked-breadcrumb</code>, <code>v2/components/breakpoints</code>, <code>v2/components/data</code>, <code>v2/components/events-bar</code>, <code>v2/components/events-bar/filters</code>, <code>v2/components/events-bar/search-button</code>, <code>v2/components/events-bar/search-button/icon</code>, <code>v2/components/events-bar/search</code>, <code>v2/components/events-bar/search/keyword</code>, <code>v2/components/events-bar/search/submit</code>, <code>v2/components/events-bar/tabs</code>, <code>v2/components/events-bar/views</code>, <code>v2/components/events-bar/views/list</code>, <code>v2/components/events-bar/views/list/item</code>, <code>v2/components/filter-bar</code>, <code>v2/components/ical-link</code>, <code>v2/components/loader</code>, <code>v2/components/messages</code>, <code>v2/components/read-more</code>, <code>v2/components/top-bar/actions</code>, <code>v2/components/top-bar/actions/content</code>, <code>v2/components/top-bar/datepicker/submit</code>, <code>v2/components/top-bar/nav</code>, <code>v2/components/top-bar/nav/next-disabled</code>, <code>v2/components/top-bar/nav/next</code>, <code>v2/components/top-bar/nav/prev-disabled</code>, <code>v2/components/top-bar/nav/prev</code>, <code>v2/components/top-bar/today</code>, <code>v2/day</code>, <code>v2/day/event</code>, <code>v2/day/event/cost</code>, <code>v2/day/event/date</code>, <code>v2/day/event/date/meta</code>, <code>v2/day/event/description</code>, <code>v2/day/event/featured-image</code>, <code>v2/day/event/title</code>, <code>v2/day/event/venue</code>, <code>v2/day/nav</code>, <code>v2/day/nav/next-disabled</code>, <code>v2/day/nav/next</code>, <code>v2/day/nav/prev-disabled</code>, <code>v2/day/nav/prev</code>, <code>v2/day/time-separator</code>, <code>v2/day/top-bar</code>, <code>v2/day/top-bar/datepicker</code>, <code>v2/day/type-separator</code>, <code>v2/index</code>, <code>v2/list</code>, <code>v2/list/event</code>, <code>v2/list/event/cost</code>, <code>v2/list/event/date-tag</code>, <code>v2/list/event/date</code>, <code>v2/list/event/date/meta</code>, <code>v2/list/event/description</code>, <code>v2/list/event/featured-image</code>, <code>v2/list/event/title</code>, <code>v2/list/event/venue</code>, <code>v2/list/month-separator</code>, <code>v2/list/nav</code>, <code>v2/list/nav/next-disabled</code>, <code>v2/list/nav/next</code>, <code>v2/list/nav/prev-disabled</code>, <code>v2/list/nav/prev</code>, <code>v2/list/nav/today</code>, <code>v2/list/top-bar</code>, <code>v2/list/top-bar/datepicker</code>, <code>v2/month</code>, <code>v2/month/calendar-body</code>, <code>v2/month/calendar-body/day</code>, <code>v2/month/calendar-body/day/calendar-events</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/date</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/date/meta</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/featured-image</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/title</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/cost</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/date</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/date/meta</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/description</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/featured-image</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/title</code>, <code>v2/month/calendar-body/day/more-events</code>, <code>v2/month/calendar-body/day/multiday-events</code>, <code>v2/month/calendar-body/day/multiday-events/multiday-event-spacer</code>, <code>v2/month/calendar-body/day/multiday-events/multiday-event</code>, <code>v2/month/calendar-header</code>, <code>v2/month/mobile-events</code>, <code>v2/month/mobile-events/mobile-day</code>, <code>v2/month/mobile-events/mobile-day/day-marker</code>, <code>v2/month/mobile-events/mobile-day/mobile-event</code>, <code>v2/month/mobile-events/mobile-day/mobile-event/cost</code>, <code>v2/month/mobile-events/mobile-day/mobile-event/date</code>, <code>v2/month/mobile-events/mobile-day/mobile-event/date/meta</code>, <code>v2/month/mobile-events/mobile-day/mobile-event/featured-image</code>, <code>v2/month/mobile-events/mobile-day/mobile-event/title</code>, <code>v2/month/mobile-events/mobile-day/more-events</code>, <code>v2/month/mobile-events/nav</code>, <code>v2/month/mobile-events/nav/next-disabled</code>, <code>v2/month/mobile-events/nav/next</code>, <code>v2/month/mobile-events/nav/prev-disabled</code>, <code>v2/month/mobile-events/nav/prev</code>, <code>v2/month/mobile-events/nav/today</code>, <code>v2/month/top-bar</code>, <code>v2/month/top-bar/datepicker</code>, <code>v2/not-found</code></li>\n<li>Language &#8211; 2 new strings added, 169 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.14] 2020-01-15</h4>\n<ul>\n<li>Feature &#8211; Add Repository filter <code>where_meta_related_by_meta</code> for getting a post by the meta value an associated post. [133333]</li>\n<li>Tweak &#8211; Modifications to the Freemius code initialization to allow better data around plugin uninstalls.</li>\n<li>Tweak &#8211; Adjust tooltip title styles for Twenty Twenty theme. [TEC-2998]</li>\n<li>Tweak &#8211; Changed views: <code>blocks/event-venue</code></li>\n<li>Fix &#8211; Cost field description no longer disappears when editing the block. [TEC-2992]</li>\n<li>Fix &#8211; Organizer theme no longer getting overwritten by Blocks editor styles. [TEC-2974]</li>\n<li>Fix &#8211; Venue block properly receives the correct HTML class. [TEC-3020]</li>\n<li>Fix &#8211; Correct missing block when switching from blocks to classic editor. [131493]</li>\n</ul>\n<h4>[4.9.13] 2019-12-10</h4>\n<ul>\n<li>Tweak &#8211; Allow Event Aggregator date refinements for Eventbrite source.</li>\n<li>Language &#8211; 29 new strings added, 201 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.12] 2019-11-20</h4>\n<ul>\n<li>Fix &#8211; Blocks Editor date time saving correctly for WordPress 5.3 compatibility. [137421]</li>\n<li>Tweak &#8211; Add the <code>tribe_get_query_var</code> function [137262]</li>\n<li>Tweak &#8211; Add <code>tribe_get_the_content()</code> and <code>tribe_the_content()</code> for PHP 7.2 compatibility with WordPress 5.2</li>\n<li>Language &#8211; 21 new strings added, 162 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.11] 2019-11-12</h4>\n<ul>\n<li>Feature &#8211; Opt-in to the newly redesigned views</li>\n<li>Fix &#8211; Fixed issue where DD/MM/YYYY style dates were not supported during Event Aggregator imports [117691]</li>\n<li>Fix &#8211; Resolved issue where non YYYY-MM-DD datepicker formats resulted in unpredictable behavior while navigating views [116086, 126472, 117909]</li>\n<li>Fix &#8211; Fixed date issue where the event date was defaulting to current date when editing an event with the block editor [132735]</li>\n<li>Tweak &#8211; Added additional datepicker formats for simpler selection [116086, 126472, 117909]</li>\n<li>Tweak &#8211; Updated the Repository implementation to handle more complex <code>orderby</code> constructs [133303]</li>\n<li>Tweak &#8211; Added the <code>Tribe__Date_Utils::get_week_start_end</code> method [133303]</li>\n<li>Tweak &#8211; added the <code>tribe_events_suppress_query_filters</code> filter to allow suppressing <code>Tribe__Events__Query</code> filters [134827]</li>\n<li>Language &#8211; 5 new strings added, 23 updated, 2 fuzzied, and 13 obsoleted</li>\n</ul>\n<h4>[4.9.10] 2019-10-16</h4>\n<ul>\n<li>Tweak &#8211; added the <code>tribe_sanitize_deep</code> function to sanitize and validate input values [134427]</li>\n<li>Tweak &#8211; use the <code>tribe_sanitize_deep</code> function to sanitize the values returned by the <code>tribe_get_request_var</code> function [134427]</li>\n<li>Tweak &#8211; Rename &#8222;Datepicker Date Format&#8220; to &#8222;Compact Date Format&#8220; [134526]</li>\n<li>Tweak &#8211; Adjust Promoter loading order to increase compatibility with plugins that use authentication early in the process [134862]</li>\n<li>Tweak &#8211; Add support for Authentication using a Header when using Promoter [133922]</li>\n<li>Language &#8211; 2 new strings added, 25 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.9.9] 2019-09-25</h4>\n<ul>\n<li>Fix &#8211; Set the start date with the current day for the &#8222;All&#8220; events page for recurring events. Thanks Andy, leapness and others for flagging this! [130350]</li>\n<li>Tweak &#8211; Updated Freemius integration code [133148]</li>\n<li>Tweak &#8211; Conform iCalendar feed to specifications by not putting quotes around the timezone ID. This fixes some custom parsers [133626]</li>\n<li>Language &#8211; 0 new strings added, 16 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.9.8] 2019-09-04</h4>\n<ul>\n<li>Tweak &#8211; Added the Monolog logging library as alternative logging backend [120785]</li>\n<li>Tweak &#8211; Hook Monolog logger on <code>tribe_log</code> action [120785]</li>\n<li>Tweak &#8211; Add redirection of <code>tribe( \'logger\' )-&gt;log()</code> calls to the Monolog logger using the <code>tribe_log_use_action_logger</code> filter [120785]</li>\n<li>Fix &#8211; Conform iCalendar feed to specifications by not putting quotes around the timezone. This fixes Outlook compatibility [131791]</li>\n<li>Fix &#8211; Additional fields with multiple values using pipes <code>|</code> as separators are working properly on importing again. [131510]</li>\n<li>Fix &#8211; Fix default view redirection loop on mobile devices. Thanks Ricardo, cittaslow and others for flagging this! [125567]</li>\n<li>Fix &#8211; Handling of featured image setting during Event Aggregator CSV imports [127132]</li>\n<li>Language &#8211; 1 new strings added, 10 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.7] 2019-08-19</h4>\n<ul>\n<li>Tweak &#8211; Update Lodash version on Block editor to prevent any possibility of a security issue with the package. From v4.17.11 to v4.17.15 [131421]</li>\n<li>Tweak &#8211; Add filter &#8218;tribe_events_js_config&#8216; to allow filtering the contents of the Javascript configuration [132567]</li>\n<li>Tweak &#8211; Updates to the shortcode Javascript code to allow disabling the URL manipulation behavior [132567]</li>\n<li>Fix &#8211; Prevent mascot image to get blown up out of proportions to a larger size on buggy CSS loading. [131910]</li>\n<li>Language &#8211; 3 new strings added, 191 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.6] 2019-08-07</h4>\n<ul>\n<li>Tweak &#8211; Update Event Aggregator to include compatibility with new Meetup API requirements &#8211; <a href=\"https://evnt.is/1afb\" rel=\"nofollow ugc\">See more</a> [125635]</li>\n<li>Language &#8211; 5 new strings added, 120 updated, 5 fuzzied, and 10 obsoleted</li>\n</ul>\n<h4>[4.9.5] 2019-07-25</h4>\n<ul>\n<li>Tweak &#8211; Update redirection URLs for Freemius actions [130281]</li>\n<li>Fix &#8211; Location filtering for Context class moved out of construct, resolving lots of navigation problems across The Events Calendar [130754]</li>\n<li>Fix &#8211; Featured event AJAX and browser navigation working as expected for all use cases. [127272]</li>\n<li>Fix &#8211; Shortcode properly handling featured param on AJAX requests. [114002]</li>\n<li>Fix &#8211; Remove removing wpautop for gutenberg blocks to fix spacing when content comes from classic editor. [122801]</li>\n<li>Language &#8211; 4 new strings added, 16 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.4] 2019-07-03</h4>\n<ul>\n<li>Tweak &#8211; Add filter <code>tribe_events_event_insert_args</code> the arguments in prior to inserting the event and meta fields. [129517]</li>\n<li>Tweak &#8211; Add filter <code>tribe_events_event_update_args</code> the arguments prior the update of an event and meta fields. [129517]</li>\n<li>Tweak &#8211; Add filter <code>tribe_events_event_prevent_update</code> to disable the update for an event via the Tribe API [129517]</li>\n<li>Tweak &#8211; Add filter <code>tribe_events_archive_get_args</code> to filter the arguments used to get the events on the archive page via REST API. [129517]</li>\n<li>Tweak &#8211; Add filter <code>tribe_events_validator_is_event_id</code> to define if is a valid event_id [129517]</li>\n<li>Tweak &#8211; Add action <code>tribe_rest_before_event_data</code> executed before the Event data is pulled before deliver the Event via REST API. [129517]</li>\n<li>Tweak &#8211; Add <code>Tribe__Events__Query::last_found_events()</code> to access the last results via the <code>Query</code> object [129517]</li>\n<li>Tweak &#8211; Wrap <code>register_rest_route</code> calls with <code>tribe_register_rest_route</code> to enable filtering on REST registration</li>\n<li>Tweak &#8211; Add filter <code>tribe_ical_feed_vtimezone</code> to filter the <code>VTIMEZONE</code> group [89999]</li>\n<li>Tweak &#8211; Include proper documentation of why the plugin has been deactivated and a knowledgebase article about how to downgrade [129726]</li>\n<li>Tweak &#8211; When trying to update The Events Calendar with an incompatible version of an Addon that is expired, it will stop the upgrade [129727]</li>\n<li>Tweak &#8211; Add filter <code>tribe_is_classic_editor_plugin_active</code> to change the output if the classic editor is active or not [121267]</li>\n<li>Tweak &#8211; Create a new key if <code>AUTH_KEY</code> is not defined or is empty and add a new filter <code>tribe_promoter_secret_key</code> to filter the result [127183]</li>\n<li>Tweak &#8211; Divide the <code>tribe-common.js</code> file to prevent that file from being bloated with external dependencies. [129526]</li>\n<li>Tweak &#8211; Make sure <code>UTC-0</code> is converted back to <code>UTC</code> instead of <code>UTC-01</code> [129240]</li>\n<li>Tweak &#8211; Add new function <code>tribe_register_rest_route</code> Wrapper around <code>register_rest_route</code> to filter the arguments when a new REST endpoint is created [129517]</li>\n<li>Tweak &#8211; Add new method <code>Tribe__Cost_Utils::parse_separators</code> to infer decimal and thousands separators from a value that might have been formatted in a local different from the current one [98061]</li>\n<li>Fix &#8211; Save of event meta data when Classic editor plugin and gutenberg blocks for events are enabled [121267]</li>\n<li>Fix &#8211; Moved The Events Calendar specific code from common Context class into The Events Calendar [129241]</li>\n<li>Fix &#8211; Fixed issue where multiday events were not returning correct end date in block editor [128033]</li>\n<li>Fix &#8211; Resolved issue where deactivation feedback was not hooked properly [128341]</li>\n<li>Fix &#8211; Added escaping to the event website URL target attribute [129565]</li>\n<li>Fix &#8211; Fix Timezone definitions for <code>*.ics</code> file on events [89999]</li>\n<li>Fix &#8211; Resolved an issue where non-English decimal and thousands event cost separators could lead to wrong cost values in REST API responses [98061]</li>\n<li>Fix &#8211; Prevent Clipboard Javascript from loading all over the place on <code>/wp-admin/</code> [129526]</li>\n<li>Fix &#8211; PHP 5.6 compatibility for <code>trait Cache_User</code> by using WP action <code>shutdown</code> instead of <code>__destruct</code> on our <code>WP_Rewrite</code> [129860]</li>\n<li>Language &#8211; 14 new strings added, 222 updated, 1 fuzzied, and 6 obsoleted</li>\n</ul>\n<h4>[4.9.3.2] 2019-06-20</h4>\n<ul>\n<li>Fix &#8211; Prevent issue where older versions of the tribe-common libraries could be bootstrapped [129478]</li>\n<li>Fix &#8211; Add Promoter PCSS file so that the proper CSS will be generated on package build [129584]</li>\n</ul>\n<h4>[4.9.3.1] 2019-06-07</h4>\n<ul>\n<li>Fix &#8211; Remove caching of rewrite base slugs which make third-party, Photo and Week work as expected [129035]</li>\n<li>Tweak &#8211; Adjust newsletter signup submission destination [129034]</li>\n</ul>\n<h4>[4.9.3] 2019-06-06</h4>\n<ul>\n<li>Fix &#8211; Fixed issue where the previous events link was not present on initial page load of the List View [127477]</li>\n<li>Language &#8211; 10 new strings added, 18 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.9.2] 2019-05-16</h4>\n<ul>\n<li>Tweak &#8211; In the Event Repository class: filter the event creation meta before checking it for coherency</li>\n<li>Tweak &#8211; Reduced file size by removing .po files and directing anyone creating or editing local translations to translate.wordpress.org</li>\n<li>Fix &#8211; Fix event bar issue where it was required to pick the date in order to search events via keyword or location [126158]</li>\n<li>Fix &#8211; Make back-compatibility handling more robust when dealing with classes non-existing in the older plugin versions [127173]</li>\n</ul>\n<h4>[4.9.1.1] 2019-05-06</h4>\n<ul>\n<li>Fix &#8211; Prevent Composer autoloader from throwing Fatal due to nonexistent <code>setClassMapAuthoritative()</code> method [126590]</li>\n</ul>\n<h4>[4.9.1] 2019-05-02</h4>\n<ul>\n<li>Fix &#8211; Prevent recurring events all page to throw 404 when events are in the past [126790]</li>\n<li>Fix &#8211; Backwards compatibility for <code>eventDisplay</code> usage around <code>list</code> and <code>day</code> only showing upcoming events [126686]</li>\n<li>Fix &#8211; List events Widget will display events until their end date has passed [126837]</li>\n<li>Tweak &#8211; Add values for the JSON-LD object to avoid Google console errors. Fields added: <code>offers.availability</code>, <code>offers.category</code>, <code>offers.priceCurrency</code>, <code>offers.validFrom</code> and <code>performer</code> [120193]</li>\n<li>Tweak &#8211; Add <code>tribe_events_cost_unformatted</code> filter to allow WPML support for WooCommerce Multilingual</li>\n<li>Language &#8211; 0 new strings added, 168 updated, 0 fuzzied, and 5 obsoleted</li>\n</ul>\n<h4>[4.9.0.3] 2019-04-26</h4>\n<ul>\n<li>Fix &#8211; Prevent Composer autoloader from throwing Fatal due to nonexistent <code>setClassMapAuthoritative()</code> method [126590]</li>\n</ul>\n<h4>[4.9.0.2] 2019-04-25</h4>\n<ul>\n<li>Fix &#8211; Avoid fatals due to Query method not been present by bumping version of Event Tickets required to 4.10.4.2</li>\n</ul>\n<h4>[4.9.0.1] 2019-04-25</h4>\n<ul>\n<li>Fix &#8211; Modifications to <code>tribe_get_events()</code> to resolve problems introduced by latest release <code>4.9.0</code></li>\n<li>Fix &#8211; Backwards compatibility for <code>\'eventDisplay\' =&gt; \'upcoming\'</code> on <code>tribe_get_events()</code>. Thanks @softwebteam, @mrwweb and @karks88 [126124]</li>\n<li>Fix &#8211; Single navigation to next and previous events using the Object Relational Mapping classes [126144]</li>\n<li>Fix &#8211; Events displayed correctly on all views, using End date instead of Start Date. Making sure events that are not over still show on upcoming [126259]</li>\n</ul>\n<h4>[4.9.0] 2019-04-17</h4>\n<ul>\n<li>Feature &#8211; Refactor the Database Connection to start using an Object Relational Mapping tool for a better tested codebase</li>\n<li>Feature &#8211; Add the <code>tribe_events()</code> function as entry-point to the Events ORM and the supporting filter code [116356, 115579]</li>\n<li>Feature &#8211; Add the <code>tribe_venues()</code> function as entry-point to the Venues ORM and the supporting filter code [116356, 115579]</li>\n<li>Feature &#8211; Add the <code>tribe_organizers()</code> function as entry-point to the Organizers ORM and the supporting filter code [116356, 115579]</li>\n<li>Feature &#8211; Add additional caching to The Events Calendar REST API archives and the Post Repository event/venue/organizer responses [117159]</li>\n<li>Feature &#8211; Include Freemius integration on to allow opt-in information collection for 10% of new users</li>\n<li>Tweak &#8211; Setting the site of Timezones will trigger queries using UTC to equalize event dates on Views</li>\n<li>Tweak &#8211; Add filter to allow deactivating Freemius <code>tribe_events_integrations_should_load_freemius</code></li>\n<li>Tweak &#8211; Include a way for third-party to handle Known Range rebuilding of events <code>tribe_events_rebuild_known_range</code></li>\n<li>Tweak &#8211; All new granular handling for UTC and Timezone saving on the Classic editor</li>\n<li>Tweak &#8211; Add support for the <code>tribe_suppress_query_filters</code> query variable to prevent the plugin&#8217;s own query filters from applying [116356, 115579]</li>\n<li>Tweak &#8211; Add the <code>tribe_events_has_next_args</code> and <code>tribe_events_has_previous_args</code> filters to allow filtering the arguments that check if next/previous archive pages or events are available [123950]</li>\n<li>Fix &#8211; Include second param for the <code>the_title</code> for Events, Venue and Organizer Rest API endpoints amd prevent warnings. Props to Alex [123317]</li>\n<li>Language &#8211; 5 new strings added, 167 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.8.2] 2019-03-04</h4>\n<ul>\n<li>Fix &#8211; Resolve console warnings around React key usage for Blocks Editor [121198]</li>\n<li>Fix &#8211; Improve our <code>tribe_paged</code> URL parameter sanitization, preventing themes from printing the variable and causing XSS security issues [123616]</li>\n<li>Fix &#8211; Change ordering for Eventbrite Tickets on Event Aggregator, Ascending order by date is now the default [121979]</li>\n<li>Tweak &#8211; Day light savings notice will now reset 4 times per year when using any UTC Timezone [123221]</li>\n<li>Tweak &#8211; Start date for Event Aggregator is now required on Eventbrite Tickets [121979]</li>\n<li>Language &#8211; 3 new strings added, 172 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.8.1] 2019-02-14</h4>\n<ul>\n<li>Feature &#8211; Introduced new &#8222;(do not override)&#8220; default post status for Eventbrite imports in Event Aggregator. This preserves events&#8216; original statuses from Eventbrite.com upon import (e.g., &#8222;draft&#8220; events will not be automatically set to &#8222;publish&#8220; upon import) [112346]</li>\n<li>Fix &#8211; Make sure the setting for &#8222;Default mobile view&#8220; is respected. Thanks to Kathleen, Tim and others for reporting this! [119271]</li>\n<li>Fix &#8211; Apply block closer to price block [120108]</li>\n<li>Tweak &#8211; Added new filter <code>tribe_aggregator_new_event_post_status_before_import</code> to allow for custom handling of an event&#8217;s post status before EA an import is completed [112648]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_events_admin_js_ajax_url_data</code></li>\n<li>Tweak &#8211; Unload Image Widget Plus version 1.0.2 or older to Prevent it from creating fatals on The Events Calendar</li>\n<li>Language &#8211; 2 new strings added, 150 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.8] 2019-02-04</h4>\n<ul>\n<li>Feature &#8211; Introduced new &#8222;(do not override)&#8220; default post status for Eventbrite imports in Event Aggregator. This preserves events&#8216; original statuses from Eventbrite.com upon import (e.g., &#8222;draft&#8220; events will not be automatically set to &#8222;publish&#8220; upon import) [112346]</li>\n<li>Fix &#8211; Make sure the setting for &#8222;Default mobile view&#8220; is respected. Thanks to Kathleen, Tim and others for reporting this! [119271]</li>\n<li>Fix &#8211; Apply block closer to price block [120108]</li>\n<li>Tweak &#8211; Added new filter <code>tribe_aggregator_new_event_post_status_before_import</code> to allow for custom handling of an event&#8217;s post status before EA an import is completed [112648]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_events_admin_js_ajax_url_data</code></li>\n<li>Tweak &#8211; Unload Image Widget Plus version 1.0.2 or older to Prevent it from creating fatals on The Events Calendar</li>\n<li>Language &#8211; 2 new strings added, 150 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.8.0.1] 2019-02-07</h4>\n<ul>\n<li>Fix &#8211; Modify extension dependency checking with new system to determine if it can load [122368]</li>\n<li>Tweak &#8211; Prevent most extensions from loading if Event Tickets is on an older version to prevent conflicts [122368]</li>\n</ul>\n<h4>[4.8] 2019-02-05</h4>\n<ul>\n<li>Feature &#8211; Add check and enforce PHP 5.6 as the minimum version [116282]</li>\n<li>Feature &#8211; Add system to check plugin versions to inform you to update and prevent site breaking errors [116841]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_not_php_version_names</code></li>\n<li>Deprecated &#8211; Constants MIN_ET_VERSION and MIN_COMMON_VERSION in Tribe__Events__Main, use $min_et_version property and no replacement for MIN_COMMON_VERSION</li>\n<li>Deprecated &#8211; The <code>is_delayed_activation()</code>, <code>maybe_delay_activation_if_outdated_common()</code>, and <code>checkAddOnCompatibility()</code> method has been deprecated in <code>Tribe__Events__Main</code> in favor of new Dependency Checking System</li>\n<li>Language &#8211; 7 new strings added, 139 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.7.4] 2019-01-21</h4>\n<ul>\n<li>Fix &#8211; Display the tags block delimiter in the editor [119393]</li>\n<li>Fix &#8211; Fixed a number of small layout bugs with the new Twenty Nineteen core theme [119689]</li>\n<li>Fix &#8211; Save the &#8222;Event Options&#8220; when using the block editor [120168]</li>\n<li>Fix &#8211; Filter correctly when in Classic Editor page [120137]</li>\n<li>Fix &#8211; Give the ability to switch back from all day events in date time block [120266]</li>\n<li>Fix &#8211; Properly align the search or create results [120460]</li>\n<li>Fix &#8211; iCal export content for events created with the block editor [118679]</li>\n<li>Fix &#8211; Moved the &#8222;Remove venue&#8220; button for a better user experience when removing venues from an event [120267]</li>\n<li>Fix &#8211; Date/time block conflicts when clicking to open the block options [119413]</li>\n<li>Fix &#8211; Layout bugs with the new Twenty Nineteen core theme [119689]</li>\n<li>Fix &#8211; Include UTC dates meta on the event creation from the block editor [120399]</li>\n<li>Tweak &#8211; Ensure we don&#8217;t re-apply <code>wpautop()</code> to content that has had it removed [120562]</li>\n<li>Tweak &#8211; Added <code>tribe_events_admin_js_ajax_url_data</code> filter to make filtering the JS vars of TEC&#8217;s admin JS easier [116973]</li>\n<li>Tweak &#8211; Adjusted content in the admin welcome page that users are brought to upon newly activating The Events Calendar [117795]</li>\n<li>Tweak &#8211; Changed views: <code>blocks/event-tags</code></li>\n<li>Language &#8211; 3 new strings added, 21 updated, 1 fuzzied, and 5 obsoleted</li>\n</ul>\n<h4>[4.7.3] 2018-12-19</h4>\n<ul>\n<li>Tweak &#8211; Tweak the registration of the Event, Venue, and Organizer post types so they use some new post type labels introduced in WordPress 5.0 like <code>item_updated</code>, <code>item_scheduled</code>, etc. [119451]</li>\n<li>Fix &#8211; Password protected events breaking the month view. Thanks to Lindsay, Simon and others for flagging this out! [117385]</li>\n<li>Fix &#8211; Add proper capitalization for Event Price for Blocks Editor [119140]</li>\n<li>Fix &#8211; Make sure Datetime Format for Datepickers are respected on the Blocks Editor [117428]</li>\n<li>Fix &#8211; Correct text domain and remove old <code>events-gutenberg</code> [118656]</li>\n<li>Fix &#8211; Properly display recurrence description on Blocks Editor view [119354]</li>\n<li>Fix &#8211; Point support links to the correct places [117795]</li>\n<li>Language &#8211; 27 new strings added, 106 updated, 0 fuzzied, and 13 obsoleted</li>\n</ul>\n<h4>[4.7.2] 2018-12-13</h4>\n<ul>\n<li>Feature &#8211; Added new action <code>tribe_events_before_event_template_data_date_display</code> and <code>tribe_events_after_event_template_data_date_display</code></li>\n<li>Tweak &#8211; Corrected font on time picker components in Event Date Time block [116907]</li>\n<li>Tweak &#8211; Adjusted padding on the Event Date Time block [118697]</li>\n<li>Tweak &#8211; Set default start time to 8:00am and default end time to 5:00pm in Event Date Time block [118112]</li>\n<li>Fix &#8211; Corrected an issue where feature detection of async-process support would fire too many requests [118876]</li>\n<li>Fix &#8211; Removed tribe_events_template_data()&#8217;s dependency on Events Calendar PRO, which could lead to a fatal error under some conditions [119263]</li>\n<li>Fix &#8211; Made the Event Date Time block respect the timezone settings [118682]</li>\n<li>Fix &#8211; Removed Price block dashboard gap [118683]</li>\n<li>Fix &#8211; Made sure all block editor code for Meta saving is PHP 5.2 compatible</li>\n<li>Fix &#8211; Prevented <code>undefined</code> from been displayed at the Event Date Time separator fields [119337]</li>\n<li>Fix &#8211; Solved 500 error when trying to update an event [118058]s</li>\n</ul>\n<h4>[4.7.1] 2018-12-05</h4>\n<ul>\n<li>Feature &#8211; Added additional caching to TEC REST API archives and the Post Repository event/venue/organizer responses [117159]</li>\n<li>Feature &#8211; Added new <code>tribe_events_set_month_view_events_from_cache</code> action to make it easier to listen for when Month View events are retrieved from the Month View cache [116124]</li>\n<li>Fix &#8211; Importing CSV files with whitespace at the beginning of the rows won&#8217;t remove headers and skip columns on Preview [117236]</li>\n<li>Fix &#8211; Prevent JavaScript error in Month View when the Date filter is removed from the Tribe Bar (thank you to @tyrann0us on GitHub for submitting this fix!) [116995]</li>\n<li>Fix &#8211; Facilitate automated updates for Events Calendar PRO even if it&#8217;s requirements have not been met</li>\n</ul>\n<h4>[4.7.0.1] 2018-11-30</h4>\n<ul>\n<li>Fix &#8211; Update common library to maximize compatibility with earlier PHP versions (our thanks to @megabit81 for highlighting this problem) [119073]</li>\n<li>Fix &#8211; Update common library to ensure better compatibility with addons running inside multisite networks [119044]</li>\n<li>Language &#8211; 0 new strings added, 141 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.7] 2018-11-29</h4>\n<ul>\n<li>Feature &#8211; added new setting to activate the block editor on events for users running the WordPress 5.0 beta.</li>\n<li>Feature &#8211; added an Event Date Time block to add and display the event date and time</li>\n<li>Feature &#8211; added an Event Price block to add and display the event price and optional event description</li>\n<li>Feature &#8211; added an Event Organizer block to add and display an organizer on an event single</li>\n<li>Feature &#8211; added an Event Venue block to add and display the event venue information including optional link or map</li>\n<li>Feature &#8211; added an Event Website block to add and display an external website link as a button with custom label</li>\n<li>Feature &#8211; added an Event Sharing block to display event export options and allow for more customization</li>\n<li>Feature &#8211; added an Event Details Classic block to maintain a combined content display as in the classic editor</li>\n<li>Feature &#8211; added a Featured Image block to display an event’s featured image in the editor content</li>\n<li>Feature &#8211; added a Tags block to display an event’s tags in the editor content</li>\n<li>Feature &#8211; added an Event Categories block to display an event’s categories in the editor content</li>\n<li>Feature &#8211; added a new Events Blocks section to the block inserter</li>\n<li>Tweak &#8211; Added filters: <code>tribe_blocks_editor_update_classic_content_params</code>, <code>tribe_blocks_editor_update_classic_content</code>, <code>tribe_events_editor_default_classic_template</code>, <code>tribe_events_editor_default_template</code>, <code>tribe_events_google_maps_api</code>, <code>tribe_events_editor_assets_should_enqueue_frontend</code>, <code>tribe_events_single_map_zoom_level</code>, <code>tribe_events_single_event_time_formatted</code>, <code>tribe_events_single_event_time_title</code>, <code>tribe_events_event_block_datetime_use_yearless_format</code>, <code>tribe_get_event_website_link_target</code>, <code>tribe_events_single_event_time_formatted</code>, <code>tribe_events_single_event_time_title</code></li>\n<li>Tweak &#8211; Added actions: <code>tribe_blocks_editor_flag_post_classic_editor</code>, <code>tribe_events_editor_register_blocks</code>, <code>tribe_events_single_event_meta_primary_section_start</code>, <code>tribe_events_single_event_meta_primary_section_end</code>, <code>tribe_events_single_event_meta_secondary_section_start</code>, <code>tribe_events_single_event_meta_secondary_section_end</code>, <code>tribe_events_single_meta_details_section_start</code>, <code>tribe_events_single_meta_details_section_end</code>, <code>tribe_events_single_meta_map_section_start</code>, <code>tribe_events_single_meta_map_section_end</code>, <code>tribe_events_single_meta_organizer_section_start</code>, <code>tribe_events_single_meta_organizer_section_end</code>, <code>tribe_events_single_meta_venue_section_start</code>, <code>tribe_events_single_meta_venue_section_end</code></li>\n<li>Tweak &#8211; Changed views: <code>blocks/classic-event-details</code>, <code>blocks/event-category</code>, <code>blocks/event-datetime</code>, <code>blocks/event-links</code>, <code>blocks/event-organizer</code>, <code>blocks/event-price</code>, <code>blocks/event-tags</code>, <code>blocks/event-venue</code>, <code>blocks/event-website</code>, <code>blocks/featured-image</code>, <code>blocks/parts/details</code>, <code>blocks/parts/map</code>, <code>blocks/parts/organizer</code>, <code>blocks/parts/venue</code>, <code>silence</code>, <code>single-event-blocks</code>, <code>single-event</code>, <code>single-event/back-link</code>, <code>single-event/comments</code>, <code>single-event/content</code>, <code>single-event/footer</code>, <code>single-event/notices</code>, <code>single-event/title</code></li>\n<li>Language &#8211; 11 new strings added, 0 updated, 0 fuzzied, and 30 obsoleted</li>\n</ul>\n<h4>[4.6.26.1] 2018-11-21</h4>\n<ul>\n<li>Fix &#8211; Resolved a compatibility issue with WordPress version 4.7.11 and earlier (our thanks to @placer69 and @earthnutvt for flagging this) [118627]</li>\n</ul>\n<h4>[4.6.26] 2018-11-13</h4>\n<ul>\n<li>Fix &#8211; Fixed the setting-up of strings in the Tribe Bar datepicker to ensure they&#8217;re translatable into languages other than English [115286]</li>\n<li>Tweak &#8211; Improved the legibility of text in Featured Events that are in the Event List widget [116702]</li>\n<li>Tweak &#8211; Clarified a number of maps-related settings strings [114865]</li>\n</ul>\n<h4>[4.6.25] 2018-10-22</h4>\n<ul>\n<li>Fix &#8211; List only enabled views on the &#8222;Default View&#8220; option. Thanks to wescole, John Meuse and others for reporting! [114807]</li>\n<li>Fix &#8211; Handle left-over Facebook scheduled imports and notices [114831]</li>\n<li>Fix &#8211; Fixed event navigation when the mini calendar widget was on the event page. Props to Matt and wescole for flagging this [114359]</li>\n<li>Fix &#8211; Ensure columns without headers are handled in CSV imports [114199]</li>\n<li>Tweak &#8211; Added notice for the Events Gutenberg extension and eBook download [115543]</li>\n<li>Tweak &#8211; Avoid unnecessary HTTP calls in the Settings screens [114013]</li>\n<li>Tweak &#8211; Show only applicable refinements for the Eventbrite source types in Event Aggregator imports [107009]</li>\n<li>Tweak &#8211; Added <code>tribe_aggregator_resolve_geolocation</code> filter to allow for disabling of Geocoding using the EA service [114171]</li>\n<li>Tweak &#8211; Added <code>tribe_aggregator_clean_unsupported</code> filter to specify whether unsupported origin records should be removed or not</li>\n</ul>\n<h4>[4.6.24.1] 2018-10-08</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where a fatal error could be generated when trying to save a new Event Aggregator scheduled import [115339]</li>\n<li>Fix &#8211; Handle left-over Facebook scheduled imports and notices [114831]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_import_setting_origins</code> filter to the origins available for default import settings [115704]</li>\n</ul>\n<h4>[4.6.24] 2018-10-03</h4>\n<ul>\n<li>Fix &#8211; Prevent broken and low-resolution Google Maps if user has not provided a Google Maps API key of their own by providing our own fallback API key [114442]</li>\n<li>Fix &#8211; Only load widget assets when widget is active on the page [113141]</li>\n<li>Fix &#8211; Ensure that venue, organizer, and meta information doesn&#8217;t show on password-protected events [102643]</li>\n<li>Fix &#8211; Correct the Google Maps API link in the Settings help text to point to the correct API page [112322]</li>\n<li>Fix &#8211; Restores the event categories and tags creation summary in CSV imports [105888]</li>\n<li>Fix &#8211; Updated the Events Gutenberg extension install check to show only when the extension is not active [114577]</li>\n<li>Fix &#8211; Stop potential fatal errors from debug logging when running EA import actions from command line [114555]</li>\n<li>Fix &#8211; Fixed a bug where it was often not possible to un-check the &#8222;Enable JSON-LD&#8220; option in the Events List Widget (thanks to @myrunningresource and @craigwilcox for reporting this!) [113541]</li>\n<li>Fix &#8211; Ensure that the <code>tribe-events-bar-should-show</code> filter functions as aspected; if <code>__return_false</code> is passed, the Tribe Bar will be totally hidden (thanks @debranettles for reporting this!) [112260]</li>\n<li>Fix &#8211; Added checks to prevent JS Type Error in mobile view. Thanks szenenight, agrilife and others for flagging this! [113524]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_month_daily_events</code> filter to the Month view [114041]</li>\n<li>Tweak &#8211; Move Google Maps API loading to tribe_assets and only load once on single views when PRO is active, thanks to info2grow first reporting [112221]</li>\n<li>Tweak &#8211; Accept 0 as an argument in tribe_get_events() so that <code>\'post_parent\' =&gt; 0</code> works, thanks Cy for the detailed report [111518]</li>\n<li>Fix &#8211; handle left-over Facebook scheduled imports and notices [114831]</li>\n<li>Tweak &#8211; Added new filters for customizing the fallback Google Maps embeds: <code>tribe_is_using_basic_gmaps_api</code>, <code>tribe_get_basic_gmap_embed_url</code>, and <code>tribe_get_basic_gmap_embed_url_args</code> [114442]</li>\n<li>Tweak &#8211; Fixed the handling of the global $post variable in some Month View templates to make it easier for themers to customize those templates [113283]</li>\n<li>Tweak &#8211; Ensure linked posts are listed alphabetically in metabox dropdowns, as they are in all other admin locations [108120]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_month_daily_events</code> filter to the Month view [114041]</li>\n<li>Tweak &#8211; Move Google Maps API loading to tribe_assets and only load once on single views when PRO is active, thanks to info2grow first reporting [112221]</li>\n<li>Tweak &#8211; Accept 0 as an argument in tribe_get_events() so that <code>\'post_parent\' =&gt; 0</code> works, thanks Cy for the detailed report [111518]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_record_by_origin</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_service_post_import_args</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_import_validate_meta_by_origin</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_aggregator_refine_keyword_exclusions</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_aggregator_refine_location_exclusions</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_event_translate_service_data_field_map</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_event_translate_service_data_venue_field_map</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_event_translate_service_data_organizer_field_map</code> filter to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_status_third_party</code> action to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_aggregator_import_form</code> action to allow new EA origins [114652]</li>\n<li>Tweak &#8211; Added <code>$origin_show_map_options</code> parameter to the <code>tribe_aggregator_fields</code> filter to allow new EA origins to make use of them [114652]</li>\n<li>Fix &#8211; Fixed an issue where a fatal error could be generated when trying to save a new Event Aggregator scheduled import [115339]</li>\n</ul>\n<h4>[4.6.23] 2018-09-12</h4>\n<ul>\n<li>Fix &#8211; Fixed the &#8222;Full Styles&#8220; mobile view. Thanks Matthew, Laura and others for flagging this! [112301]</li>\n<li>Fix &#8211; Modify resource url function to work in mu-plugin directory, thanks to Doug for reporting it  [86104]</li>\n<li>Fix &#8211; Remove references to and settings for Facebook importing in Event Aggregator [112432]</li>\n<li>Fix &#8211; Ensure Event Aggregator allows for importing events from Eventbrite sites other than eventbrite.com, including but not limited to eventbrite.ca, .co.uk, and .co.nz [107821]</li>\n<li>Fix &#8211; Allow venue location fields to be intentionally empty on Venue Singular REST API calls [108834]</li>\n<li>Tweak &#8211; Add the WordPress Custom Fields Metabox show|hide settings from the Events Calendar Pro [109815]</li>\n<li>Tweak &#8211; Allow changing Event Aggregator import process system between the asynchronous and the cron-based one; previously only available as a filter [113418, 113475]</li>\n<li>Tweak &#8211; Allow stopping and clearing asynchronous queue processes from the admin UI [113418, 113475]</li>\n<li>Deprecated &#8211; <code>Tribe__Events__Aggregator__Record__Facebook</code></li>\n</ul>\n<h4>[4.6.22.1] 2018-08-27</h4>\n<ul>\n<li>Fix &#8211; Allow user to choose venues not created by them. Props to @integrity, @nomadadmin, and many others for reporting this! [113147]</li>\n</ul>\n<h4>[4.6.22] 2018-08-22</h4>\n<ul>\n<li>Add &#8211; Allow filtering events, in REST API requests, by their post ID with <code>include</code> [94326]</li>\n<li>Add &#8211; Enable future event display to get all events in the future that have not started [70769]</li>\n<li>Add &#8211; Allow filtering events, in REST API requests, by their post ID with <code>include</code> [94326]</li>\n<li>Add &#8211; Enable future event display to get all events in the future that have not started [70769]</li>\n<li>Fix &#8211; Prevent subsequent CSV imports from duplicating events in some instances [102745]</li>\n<li>Fix &#8211; The &#8222;Import events but preserve local changes to event fields&#8220; Event Aggregator change authority setting will now behave as expected [87443]</li>\n<li>Fix &#8211; Multiple fixes regarding linked post types (e.g. Organizers and custom post types) &#8211; props to @natureslens and others for reporting these [105116]:\n<ul>\n<li>Now correctly saves in their drag-and-drop order</li>\n<li>Deprecated the functions added in version 4.6.13 that previously attempted to fix ordering logic but was not done in a backwards-compatible way: <code>get_order_meta_key()</code> and <code>tribe_sanitize_organizers()</code></li>\n<li>We no longer rely on a separate postmeta value dedicated to ordering linked posts (e.g. <code>_EventOrganizerID_Order</code>), and you may want to remove all such values from your database after re-saving any events that have linked posts and their ordering is important</li>\n<li><code>tribe_get_linked_posts_by_post_type()</code> now works as expected, no longer returning zero results in error, nor returning all of the post type&#8217;s posts if there are none linked. The <code>tribe_events_return_all_linked_posts_if_none</code> filter was added, as it is necessary for this fix.</li>\n<li>Editing an existing event no longer loses the linked posts just because they were not part of the submission. Example of the bug in prior versions: If organizers are editable in the wp-admin event edit screen but not on the Community Events &#8222;event edit&#8220; form (via template override or other custom code), all pre-existing organizers were removed in error.</li>\n</ul>\n</li>\n<li>Fix &#8211; Handle the case where Event Aggregator import queues might get stuck when deleting import records [111856]</li>\n<li>Fix &#8211; Only show admin notice when it is a top-level page with the event slug, thanks to MikeNGarrett for the code fix! [111186]</li>\n<li>Fix &#8211; Change template_redirect to an action for some legacy view redirects, thanks barryceelen! [110463]</li>\n<li>Fix &#8211; Correctly import and set Organizers for iCal and ICS files Event Aggregator imports [96059]</li>\n<li>Fix &#8211; Retain category title in month view and month view shortcode, thanks corthoover for the first report [108258]</li>\n<li>Fix &#8211; The &#8222;Import events but preserve local changes to event fields&#8220; Event Aggregator change authority setting will now behave as expected [87443]</li>\n<li>Fix &#8211; Handle the case where Event Aggregator import queues might get stuck when deleting import records [111856]</li>\n<li>Fix &#8211; Prevent subsequent CSV imports from duplicating events in some instances [102745]</li>\n<li>Fix &#8211; Fix the classic header option not working. Thanks @hanemac, David Luyendyk and others for flagging this! [111672]</li>\n<li>Tweak &#8211; Namespace javascript debug function to prevent conflicts causing a function found, thanks to Tom-Mulvey for the fix [110462]</li>\n<li>Tweak &#8211; Add venue name to address string for iCal and gCal export, thanks for the coding from sylviavanos [110464]</li>\n<li>Tweak &#8211;  Drop the order from the query WPML linked query as it is set later in the method, thanks to dgwatkins for the PR [110459]</li>\n<li>Tweak &#8211; Display JS debug messages only if setting is set or through the <code>tribe_events_js_debug</code> filter. Thanks to Rob, @aand and others for flagging this! [82781]</li>\n</ul>\n<h4>[4.6.21] 2018-08-01</h4>\n<ul>\n<li>Add &#8211; Make global $post obj available to tribe_events_get_the_excerpt() with setup_postdata($post) [108043]</li>\n<li>Add &#8211; Added WPML metadata improvements for Organizers and Venue. Thanks to David Garcia Watkins and the entire WPML team for their contribution [106798]</li>\n<li>Fix &#8211; Ensure no console errors are being displayed if there&#8217;s no Google Maps API key present. Thanks Greg for flagging this [95312]</li>\n<li>Fix &#8211; Fixed an issue where saving Event Aggregator scheduled imports with an empty preview would generate PHP notices [110311]</li>\n<li>Fix &#8211; Escape each closing html element in month view tooltip to prevent PHP parser from exposing html, thanks to Karen for a solution [64834]</li>\n<li>Fix &#8211; Sending empty &#8218;categories&#8216; and &#8218;tags&#8216; for the REST API event endpoints when inserting and updating events [109627]</li>\n<li>Fix &#8211; Prevent selection of past dates when setting up Scheduled Other URL Imports in Event Aggregator [111227]</li>\n<li>Tweak &#8211; Manage plugin assets via <code>tribe_assets()</code> [40267]</li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Abstract_Asset in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Abstract_Events_Css in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Admin_Menu in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Admin_Ui in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Admin in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Ajax_Calendar in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Ajax_Dayview in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Ajax_List in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Bootstrap_Datepicker in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Calendar_Script in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Chosen in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Datepicker in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Dialog in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Dynamic in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Ecp_Plugins in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Events_Css_Default in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Events_Css_Full in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Events_Css_Skeleton in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Events_Css in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Factory in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Jquery_Placeholder in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Jquery_Resize in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__PHP_Date_Formatter in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Settings in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Smoothness in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Tribe_Events_Bar in favor of using <code>tribe_asset</code></li>\n<li>Deprecated &#8211; Tribe__Events__Asset__Tribe_Select2 in favor of using <code>tribe_asset</code></li>\n</ul>\n<h4>[4.6.20.1] 2018-07-10</h4>\n<ul>\n<li>Fix &#8211; Fix an issue where Event Aggregator imports might get blocked at 1% progress [110258]</li>\n<li>Fix &#8211; Fix the error displayed when navigating the month view via shortcode. Thanks Lam, @ltcalendar, Disk and others for flagging this! [109589]</li>\n</ul>\n<h4>[4.6.20] 2018-07-09</h4>\n<ul>\n<li>Feature &#8211; Add featured event column support for CLI imports [108027]</li>\n<li>Fix &#8211; Display the exact search term in the &#8222;no results&#8220; notice on the events page [106991]</li>\n<li>Fix &#8211; Allow venue and organizer fields to be intentionally empty on Event Singular REST API calls [109482]</li>\n<li>Fix &#8211; Added basic checks to prevent saving obviously-invalid event meta values, such as sending <code>EventStartMinute</code> of <code>60</code> (since it should be 0-59) to <code>tribe_create_event()</code>. This prevents falling back to &#8222;zero&#8220; values (e.g. Unix Epoch) when another value was intended. Thanks to @compton-bob for flagging this via our Help Desk. [109722]</li>\n<li>Fix &#8211; Add Privacy Policy guide for The Events Calendar [108454]</li>\n<li>Tweak &#8211; Added event ID parameter to <code>tribe_events_event_classes</code> filter to make it more useful [64807]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_record_finalized</code> action to allow developers to act before Event Aggregator imports start [109938]</li>\n</ul>\n<h4>[4.6.19] 2018-06-20</h4>\n<ul>\n<li>Feature &#8211; CSV importer now supports a featured event column [72376]</li>\n<li>Add &#8211; Add Eventbrite Icon to Third Party Accounts on the help page [105388]</li>\n<li>Add &#8211; Accessibility repair: new title-bar template for loop views included above the filter bar and content containing the page title in a <code>h1</code> tag.</li>\n<li>Fix &#8211; Accessibility repair: adjust main content container element from <code>div</code> to <code>main</code>.</li>\n<li>Fix &#8211; More robust handling of errors and exceptions during Event Aggregator imports [107929]</li>\n<li>Fix &#8211; Ensure that the &#8222;Export Events&#8220; button is properly displayed in month view when paginating. Thanks to @linpleva, Steven, Will and others for flagging this! [104751]</li>\n<li>Fix &#8211; Month view pagination for datepicker formats: YYYY.MM.DD, MM.DD.YYYY, and DD.MM.YYYY. Thanks @netzwerk, @wdburgdorf, @oliverwick and others for notifying us! [105443]</li>\n<li>Fix &#8211; Resolved customizer inconsistencies with month/week views and full styles [69758]</li>\n<li>Fix &#8211; Check the Events Aggregator license each time the page is accessed [67864]</li>\n<li>Fix &#8211; Improve Event Import message responses from Event Aggregator for certain cases where &#8222;Unknown service message&#8220; would be returned [107606]</li>\n<li>Fix &#8211; Make the date picker respect the &#8222;Start of the week&#8220; Setting. Thanks to @websource, @dsb and others for flagging this! [76320]</li>\n<li>Fix &#8211; Correct the &#8222;View All&#8220; link when using the events month view and plain permalinks. props to Kay and Robert for notifying us [72544]</li>\n<li>Fix &#8211; Keep filter bar date when changing from month to list view, with all datepicker formats. Thanks to Caio for reporting this! [83018]</li>\n<li>Fix &#8211; Correct the pagination in list view when a keyword is being searched. Thanks to @versi, @akr and Mary for reporting this! [94613]</li>\n<li>Fix &#8211; Split linked posts (Organizers and Venues) by ownership, for all users [71349]</li>\n<li>Fix &#8211; The connected status for Eventbrite under Third Party Accounts on the Help page [106868]</li>\n<li>Fix &#8211; Fixed two PHP 5.2 errors on the Events &gt; Help page [108338]</li>\n<li>Fix &#8211; Display the correct Import Settings when Eventbrite Tickets is enabled [106947]</li>\n<li>Tweak &#8211; Modify the default values for the CSV settings if there&#8217;s no EA license [94426]</li>\n<li>Tweak &#8211; Hinzufügen von Klassen zur Meta-Ausgabe in Meta-Vorlagen für einzelne Ereignisse, um die Anpassung zu erleichtern [62704]</li>\n<li>Tweak &#8211; Add the <code>tribe_aggregator_async_insert_event</code> filter to allow overriding the Event Aggregator asynchronous event insertion [107929]</li>\n<li>Tweak &#8211; Fügen Sie den Filter <code>\'tribe_aggregator_async_import_event_task</code>  hinzu, um das Überschreiben der asynchronen Importaufgabe des Ereignisaggregators zu ermöglichen [107929]</li>\n<li>Tweak &#8211; Veranstaltungsort Google Maps Link zu Veranstaltungen in der Tagesansicht hinzugefügt [91610]</li>\n<li>Tweak &#8211; Umbenennung der Zeitzonenmodusoption &#8222;Verwenden Sie die lokalen Zeitzonen für jedes Ereignis&#8220; zu &#8222;Manuelle Zeitzonen für jedes Ereignis verwenden&#8220; (danke @hikeitbaby für den Vorschlag) [67148]</li>\n<li>Tweak &#8211; Accessibility Repair: Verbesserung der Hierarchie durchgängig.</li>\n<li>Tweak &#8211; Accessibility-Reparatur: Stellen Sie sicher, dass alle Elemente eindeutig sind <code>id</code> attributes.</li>\n<li>Tweak &#8211; Erreichbarkeitsreparatur: Entfernen Sie überflüssige Tabstopps bei Feature-Bild-Links.</li>\n<li>Tweak &#8211; Accessibility Reparatur: Filter Bar View Selector Anpassungen.</li>\n<li>Tweak &#8211; Accessibility Repair: liefern aussagekräftige Aria-Label für die Filterstabeingänge.</li>\n<li>Tweak &#8211; Accessibility repair: Versteckt Google Map-Einbettungen von Screenreadern.</li>\n<li>Tweak &#8211; Aktivieren Sie nur URL-Importe für Eventbrite, wenn dieses Plugin nicht aktiv ist [107415]</li>\n<li>Tweak &#8211; Der EB 4.5-Migrationsprozess, um Ereignisse für die Migration besser zu erkennen und sicherzustellen, dass alle Felder migriert werden [106623]</li>\n<li>Tweak &#8211; Füge <code>tribe_events_month_has_events_filtered</code> function hinzu und filtere, um zu sehen, ob es Ereignisse in einem bestimmten Monat gibt, mit Filtern (Kategorien, Suche) [67607]</li>\n<li>Sprache &#8211; 68 neue Strings hinzugefügt, 406 aktualisiert, 3 fuzzied und 37 veraltet</li>\n</ul>\n<h4>[4.6.18] 2018-06-04</h4>\n<ul>\n<li>Add &#8211; Eventbrite to Event Aggregator import origins [61172]</li>\n<li>Add &#8211; Priority attribute to Import Setting fields to be able to customize order of fields [61173]</li>\n<li>Add &#8211; Default category and change authority for Eventbrite Imports [61173]</li>\n<li>Add &#8211; Ability to schedule Eventbrite imports through Event Aggregator [35454]</li>\n<li>Add &#8211; Preview for Eventbrite events in the import screen ordered from farthest future event to closest [70130]</li>\n<li>Add &#8211; Import Eventbrite events using the Other URL import origin [81825]</li>\n<li>Add &#8211; Ability to preview and import multiple Eventbrite events using the Organizer URL [94284]</li>\n<li>Add &#8211; Import from Eventbrite Location Search URL, i.e. https://www.eventbrite.com/d/or&#8211;portland/events/ [94588]</li>\n<li>Tweak &#8211; Move Eventbrite settings from Legacy Import to Settings Import Tab [94388]</li>\n<li>Tweak &#8211; Add Eventbrite imports to the Import History Tab [81826]</li>\n<li>Tweak &#8211; Remove Legacy Imports UI [81829]</li>\n</ul>\n<h4>[4.6.17] 2018-05-29</h4>\n<ul>\n<li>Tweak &#8211; Add tribe_redirected parameter to enable a visitor to select another view after default mobile redirect, thanks to Marcella for notifying us [102743]</li>\n<li>Fix &#8211; Hide any errors generated by servers that don&#8217;t support <code>set_time_limit()</code> (props to @jsww for flagging this!) [64183]</li>\n<li>Fix &#8211; Add a warning when the site Timezone is set to UTC [105217]</li>\n<li>Fix &#8211; An issue with organizers and venues not being attached to events on Eventbrite import  [106869]</li>\n<li>Language &#8211; 4 new strings added, 170 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.16] 2018-05-16</h4>\n<ul>\n<li>Tweak &#8211; Replaced the Aggregator queue processing system to run independently of WP Cron (not for CSV) [105650]</li>\n<li>Fix &#8211; Prevents notices for Events Community when handling State and Province fields [106415]</li>\n</ul>\n<h4>[4.6.15] 2018-05-09</h4>\n<ul>\n<li>Feature &#8211; Added wp-cli command to import events from a source with Event Aggregator. See <code>wp event-aggregator import-from --help</code> to know more [104426]</li>\n<li>Feature &#8211; Added wp-cli command to run scheduled imports with Event Aggregator. See <code>wp event-aggregator run-import --help</code> to know more [104426]</li>\n<li>Fix &#8211; Ensure that organizers can be deleted when an event has multiple organizers [103715]</li>\n<li>Fix &#8211; Fixed a bug where the <code>[tribe_events]</code> Month View pagination would fail when no Tribe Bar was visible and plain permalinks were being used [95720]</li>\n<li>Fix &#8211; Prevent <code>url_to_postid</code> from running when on the main events page to avoid query conflicts [94328]</li>\n<li>Fix &#8211; Prevent 404s and malformed URLs that would sometimes arise when navigating to a past-events view from the &#8222;All&#8220;-events view on a single recurring event [43925]</li>\n<li>Fix &#8211; Make the <code>[tribe_events]</code> shortcode&#8217;s output scroll to top when using the List View to match the non-shortcode List View  [81509]</li>\n<li>Fix &#8211; Ensure that default venue and address values are used throughout various venue-creation forms [63915]</li>\n<li>Tweak &#8211; Honor the return types for <code>tribe_has_next_event</code> and <code>tribe_has_previous_event</code> when the global query is null</li>\n<li>Language &#8211; 28 new strings added, 290 updated, 29 fuzzied, and 7 obsoleted</li>\n</ul>\n<h4>[4.6.14.1] 2018-04-18</h4>\n<ul>\n<li>Fix &#8211; Fixed fatal error that would sometimes arise when The Events Calendar was set to display on the front page</li>\n</ul>\n<h4>[4.6.14] 2018-04-18</h4>\n<ul>\n<li>Fix &#8211; Updated the &#8222;front page&#8220; logic to store the value in the DB instead of &#8222;mocking&#8220; the view via JS [100832]</li>\n<li>Fix &#8211; Fixed the generation of PHP warnings on retrieval of posts if the &#8222;Include events in main blog loop&#8220; option is checked (thanks to Colin Carmichael for reporting this problem) [97667]</li>\n<li>Fix &#8211; Made the <code>tribe-ea-record</code> custom post type (used to store Event Aggregator record information) private [99106]</li>\n<li>Fix &#8211; Expanded the size of the time zone input in the admin to allow for better visibility for long names [100363]</li>\n<li>Fix &#8211; If the main events page is set to be the site&#8217;s front page, ensure it shows as &#8222;selected&#8220; in the Customizer&#8217;s front page option [100832]</li>\n<li>Fix &#8211; Fixed an issue where failed Event Aggregator scheduled imports would re-attempt the import too soon [102489]</li>\n<li>Fix &#8211; Ensure the Tribe Bar displays all the available ranges of dates and times [100646]</li>\n<li>Fix &#8211; Hid the filters in the Tribe Bar if a unique view is enabled [75114]</li>\n<li>Fix &#8211; Fixed some imported-event handling so that events with no time and that aren&#8217;t all-day events do not display on the front-end [93979]</li>\n<li>Fix &#8211; Changed the HTTP status codes of empty event, venue, organizer, category, and tag archives from 404 to 200 and return empty arrays to stick with WP REST API standard [102283]</li>\n<li>Fix &#8211; Better &#8222;guessing&#8220; on column mapping during the import of CSV file (thanks to April in our Help Desk for flagging this problem!) [96162]</li>\n<li>Fix &#8211; Add new <code>tribe_events_linked_post_type_meta_key</code> filter, required to be set for each custom linked post type, to output custom linked post types in their drag-and-drop order (thanks @natureslens for highlighting the issue) [100733]</li>\n<li>Tweak &#8211; Added the <code>tribe_aggregator_find_matching_organizer</code> and <code>tribe_aggregator_find_matching_venue</code> filters in Events Aggregator to allow the definition of custom Venue and Organizer match criteria [97292]</li>\n<li>Tweak &#8211; Display the retry time for a failed Event Aggregator scheduled import in the Scheduled tab [102489]</li>\n<li>Tweak &#8211; Add new filter, <code>tribe_events_import_event_duplicate_matches</code>, to determine if an event is part of the duplicates matches [77956]</li>\n<li>Tweak &#8211; Ensure &#8222;secondary&#8220; maps, e.g. in the sidebar, have the same full-width behavior as &#8222;main&#8220; maps [74052]</li>\n<li>Tweak &#8211; Restore some missing header navigation elements [99742]</li>\n<li>Tweak &#8211; Add notice if an import is missing required columns [67886]</li>\n<li>Tweak &#8211; Save time zone and time zone abbreviation fields (if provided) even if date was not changed when saving event through API [102705]</li>\n</ul>\n<h4>[4.6.13] 2018-03-28</h4>\n<ul>\n<li>Feature &#8211; Added facilities allowing users to trash or permanently delete expired events [98826]</li>\n<li>Fix &#8211; Corrected the behavior of the previous/next event links rendered on single event pages (props to @jeremyfelt for fixing this) [101757]</li>\n<li>Fix &#8211; Save order of organizers as displayed in the admin (thanks to JobInfo and others for report) [79126]</li>\n<li>Tweak &#8211; Added Gutenberg compatibility for the Gutenberg Extension plugin</li>\n<li>Tweak &#8211; Added new filter <code>tribe_tickets_venue_action_links_edit_url</code> to modify the venue edit link for the sales and attendee reports [93923]</li>\n<li>Tweak &#8211; Altered day view to start at 00:00:00 and not 00:00:01 [99641]</li>\n</ul>\n<h4>[4.6.12] 2018-03-08</h4>\n<ul>\n<li>Fix &#8211; Resolved an oversight resulting in notice-level errors when the <code>tribe_event_is_on_date()</code> function was called incorrectly (props to @sharewisdom for pointing this out) [99117]</li>\n<li>Fix &#8211; Resolved errors within the admin environment when the &#8222;ticketed&#8220; view of events is generated [99266]</li>\n<li>Fix &#8211; Improved compatibility with WordPress SEO in relation to the default mobile events view [68716]</li>\n<li>Fix &#8211; Resolved Javascript errors in month view which were triggered under some conditions by the presence of password-protected events [99089]</li>\n<li>Fix &#8211; Improved logic responsible for identifying which events are expired (in the past) by using timezone-aware comparisons [91168]</li>\n<li>Fix &#8211; Corrected the export of upcoming events from single organizer pages (added to support changes in Events Calendar PRO) [70727]</li>\n<li>Tweak &#8211; Added safety checks around our use of the global $wp_query object (thanks @archetypalsxe for highlighting this issue!) [100199]</li>\n<li>Tweak &#8211; Renamed &#8218;Use Javascript to control date filtering&#8216; option to &#8218;Enable live refresh&#8216; and improved the associated helper text [98022]</li>\n<li>Tweak &#8211; Added caching to reduce the number of HTTP requests being made in relation to Event Aggregator within the admin environment [99486]</li>\n<li>Tweak &#8211; Improved performance by reducing the number of queries that run in single event pages (in relation to <code>tribe_get_prev_event_link()</code> and <code>tribe_get_next_event_link()</code> specifically) [94587]</li>\n<li>Tweak &#8211; Added pagination to single organizer and venue pages [97772]</li>\n<li>Tweak &#8211; Improved compatibility with the Twenty Seventeen theme (ensuring the calendar is full-width if set to be the site&#8217;s homepage) [97977]</li>\n<li>Language &#8211; 3 new strings added, 161 updated, 1 fuzzied, and 2 obsoleted</li>\n</ul>\n<h4>[4.6.11.1] 2018-02-16</h4>\n<ul>\n<li>Fix &#8211; The render of the venue and organizer templates (thanks to Antonio and others for reporting this in our forums) [99550]</li>\n<li>Fix &#8211; Make sure events on calendar are not affected by DST changes [99537]</li>\n</ul>\n<h4>[4.6.11] 2018-02-14</h4>\n<ul>\n<li>Fix &#8211; Ensure parity of CSS styles between the default Month View and the embedded Month Views generated by Events Calendar PRO&#8217;s [tribe_events] shortcode (thanks @copoloff for reporting this bug!) [92329]</li>\n<li>Fix &#8211; If <code>tribe_ical_feed_calname</code>  is empty the property <code>X-WR-CALNAME</code> is not added to the .ics file [46620]</li>\n<li>Fix &#8211; Stopped modifications of the main query if is in a single post to allow custom variables don&#8217;t affect the page loading when using shortcode (our thanks to Joseph Reckley and others for highlighting this problem) [91787]</li>\n<li>Tweak &#8211; Fixed a handful of small CSS bugs in the mobile views of the Twenty Sixteen, Twenty Fifteen, and Twenty Fourteen themes [95693]</li>\n<li>Tweak &#8211; Added new hooks (<code>tribe_events_ical_before</code>, <code>tribe_events_ical_events_list_args</code> and <code>tribe_events_ical_events_list_query</code>) to allow further customization of the iCal feed [86227]</li>\n<li>Tweak &#8211; Added safeguards to reduce conflicts when lodash and underscore are used on the same site [92205]</li>\n<li>Language &#8211; 0 new strings added, 41 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.10.1] 2018-01-26</h4>\n<ul>\n<li>Fix &#8211; Make sure rewrite rule for <code>/events</code> is not hardcoded and is based on dynamic option field (thanks to @earnjam and others for flagging this problem) [98463]</li>\n</ul>\n<h4>[4.6.10] 2018-01-23</h4>\n<ul>\n<li>Fix &#8211; Allow The Events Calendar REST API to be disabled using the <code>tribe_events_rest_api_enabled</code> filter [97209]</li>\n<li>Fix &#8211; Remove the errant <code>div.tribe-events-single-section</code> on the single event view when there is no venue [97615]</li>\n<li>Fix &#8211; Make sure the date for past events is set to the current date not the end of the day of the current date [71936]</li>\n<li>Fix &#8211; Use <code>featured_color_scheme_custom</code> if present as mechanism to overwrite the default color scheme for highlight color [96821]</li>\n<li>Fix &#8211; Make sure the date for past events is set to the current date not the end of the day of the current date [71936]</li>\n<li>Tweak &#8211; Trigger an event <code>map-created.tribe</code> when a map is created to allow flexibility on customization [91984]</li>\n<li>Tweak &#8211; Add a link to the knowledge base about &#8218;Setting Up Your Google Maps API Key&#8216; [89761]</li>\n<li>Tweak &#8211; Add <code>the_title</code> filter to events called by <code>tribe_events_template_data</code> [38237]</li>\n<li>Tweak &#8211; Made the &#8222;events&#8220; and &#8222;event&#8220; slugs translatable by WPML and other multilingual plugins [95026]</li>\n<li>Tweak &#8211; Introduced the <code>tribe_events_query_force_local_tz</code> filter to allow for forcing non-UTC event start and end times in Tribe__Events__Query [92948]</li>\n<li>Tweak &#8211; Prevent empty or otherwise-invalid values for various date-format options in the Display settings [94725]</li>\n<li>Tweak &#8211; Brought day number headers in the Month View into compliance with WCAG 2.0 accessibility standards when using the &#8222;Tribe Events&#8220; stylesheet [68411]</li>\n<li>Tweak &#8211; Improved the alignment of the event cost on the single-event view (props to @canberraclimbersassociation for reporting this bug) [97208]</li>\n<li>Tweak &#8211; Added some more context to the labeling of the &#8222;Number of events per page&#8220; option (thanks to Todd H. for highlighting this label) [73659]</li>\n<li>Tweak &#8211; Improve performance on Event Admin List Count by removing JOIN and use cached results [63567]</li>\n<li>Tweak &#8211; Made the &#8222;/page/&#8220; component of some views&#8216; URL string translatable [40976]</li>\n<li>Tweak &#8211; Button &#8222;Merge Duplicates&#8220; is always visible from now on [75208]</li>\n<li>Tweak &#8211; Allow queries to explicitly include or exclude events that are nominally hidden from event listings [91254]</li>\n</ul>\n<h4>[4.6.9] 2018-01-10</h4>\n<ul>\n<li>Feature &#8211; Add new utility functions tribe_is_events_home and tribe_is_events_front_page similar to native WP is_home and is_front_page [42195]</li>\n<li>Fix &#8211; Avoid issues when importing multiple organizers that specify images [96354]</li>\n<li>Fix &#8211; Make sure latitude and longitude information from iCal feeds is used if available [96363]</li>\n<li>Fix &#8211; Fixed an issue that prevented EA from importing images attached to Facebook events [96393]</li>\n<li>Fix &#8211; Remove the duplicate filter call that was running twice for <code>tribe_rest_venue_data</code> [96090]</li>\n<li>Tweak &#8211; Added new <code>tribe_aggregator_import_event_image</code>, <code>tribe_aggregator_import_venue_image</code> and <code>tribe_aggregator_import_organizer_image</code> filter so that users can control whether, during EA imports, images should be attached to post or not [96393]</li>\n<li>Tweak &#8211; Made it possible to translate the iCal feed&#8217;s description field (props @gafderks) [96677]</li>\n<li>Tweak &#8211; Improved escaping of map IDs (props LucaPipolo) [96772]</li>\n<li>Tweak &#8211; Added new REST API endpoint that allows looking up organizers by slug instead of ID at the path <code>organizers/by-slug/{slug}/</code>, it has the same functionality as the endpoint <code>organizers/{ID}</code> [96088]</li>\n<li>Tweak &#8211; Added new REST API endpoint that allows looking up venues by slug instead of ID at the path <code>venues/by-slug/{slug}/</code>, it has the same functionality as the endpoint <code>venues/{ID}</code> [96088]</li>\n<li>Tweak &#8211; Added <code>slug</code> to the REST API responses for organizer and venue data [96088]</li>\n<li>Tweak &#8211; Added <code>slug</code> to the REST API parameters allowed to use when inserting or updating an organizer or event [96088]</li>\n<li>Tweak &#8211; Added action: <code>tribe_events_venue_save</code> [96069]</li>\n<li>Tweak &#8211; Added action: <code>tribe_events_organizer_save</code> [96069]</li>\n<li>Tweak &#8211; Added filter: <code>tribe_events_rest_venue_prepare_postarr</code> [96069]</li>\n<li>Tweak &#8211; Added filter: <code>tribe_events_rest_organizer_prepare_postarr</code> [96069]</li>\n<li>Tweak &#8211; Old <code>tribe_rest_venue_data</code> filter was passing the venue and the event two the second parameter because of the duplication. Now it has the second parameter as $venue, third parameter as $event if event ID was provided [96090]</li>\n<li>Language &#8211; 5 new strings added, 30 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.8] 2017-12-18</h4>\n<ul>\n<li>Fix &#8211; Preserve filter bar checkbox selections when changing views [66749]</li>\n<li>Fix &#8211; Fix radio filters so they are only included as values when switching views when checked [72954]</li>\n<li>Fix &#8211; Ensure the correct properties are set for list widget queries, to avoid problems when running alongside Events Calendar PRO (props @KZeni) [94105]</li>\n<li>Fix &#8211; Fixed some layout issues with the &#8222;Buy Now&#8220; button and stock labels on mobile list views [81115]</li>\n<li>Fix &#8211; Fixed issue where left- or right-aligned images at the bottom of event descriptions would overlap event meta on single-event pages [71134]</li>\n<li>Fix &#8211; Fixed issue where Google Maps Link would display in some situations even when there is no address information for which to generate a link. [94909]</li>\n<li>Fix &#8211; Corrected reference to a Select2 asset (our thanks to @pyxis630 for flagging this problem and props to @andrasguseo for the fix) [95348]</li>\n<li>Fix &#8211; Ensure that when start and end dates are passed to the REST API, all events within the date range are correctly retrieved (thanks @braffenberg and others for highlighting this issue!) [90005]</li>\n<li>Tweak &#8211; Added Google Maps API key to all Google Maps URLs when the key is available, allowing maps to load more reliably on some hosting environments (props to @sfdfortnight, @thor, and many others for reporting this!) [62910]</li>\n<li>Tweak &#8211; Adjusted CSS to improve the display of venue URLs/phone numbers (especially when Events Calendar PRO is also active) (our thanks to Mathew on the forums for flagging this issue) [69127]</li>\n<li>Tweak &#8211; Added new REST API endpoint that allows looking up events by slug instead of ID at the path <code>events/by-slug/{slug}/</code>, it has the same functionality as the endpoint <code>events/{ID}</code> [92825]</li>\n<li>Tweak &#8211; Added <code>slug</code> to the REST API responses for event data [92825]</li>\n<li>Tweak &#8211; Added <code>slug</code> to the REST API parameters allowed to use when inserting or updating an event [92825]</li>\n<li>Tweak &#8211; Added new <code>tribe_events_rest_use_inclusive_start_end_dates</code> filter so that users can make the REST API return events from a more literal date range [90005]</li>\n<li>Language &#8211; 3 new strings added, 68 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.7] 2017-12-07</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where EA imports might not correctly create venues for iCalendar imports (thanks @starweb and others for highlighting this issue) [94323]</li>\n<li>Fix &#8211; Fixed an issue where Month View wouldn&#8217;t render correctly in X Theme with the &#8222;Events template&#8220; option set to &#8222;Default Page Template&#8220; [92554]</li>\n<li>Fix &#8211; Fixed a WPML incompatibility issue where language could be switched to the wrong one (thanks @dgwatkins) [94732]</li>\n<li>Tweak &#8211; Added the <code>tribe_events_x_theme_force_full_content()</code> filter to let users disable X Theme compatibility code [92554]</li>\n<li>Language &#8211; 0 new strings added, 2 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.6] 2017-11-21</h4>\n<ul>\n<li>Feature &#8211; Added Template class which adds a few layers of filtering to any template file included</li>\n<li>Tweak &#8211; Added clear warnings and errors to prevent and limit the import of iCalendar sources missing required fields [93600]</li>\n<li>Tweak &#8211; Included <code>tribe_callback_return</code> for static returns for Hooks</li>\n<li>Tweak &#8211; Improved Aggregator notices including error data on the responses [87326]</li>\n<li>Language &#8211; 4 new strings added, 79 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.5] 2017-11-16</h4>\n<ul>\n<li>Fix &#8211; Improved legacy URL redirect logic to prevent unwanted redirects (our thanks to wesleyanhq and Adam Schwartz for highlighting this issue) [86942]</li>\n<li>Fix &#8211; Modified tribe_get_template_part() to remove potential for multiple templates to be rendered in a single call [46630]</li>\n<li>Fix &#8211; Fixed an issue where Event Aggregator scheduled imports might remain stuck in pending status [90501, 92614, 91754]</li>\n<li>Fix &#8211; Removed code which was automatically populating various address fields with default values when creating a new venue from within the event editor [44732]</li>\n<li>Fix &#8211; Resolved some issues with the &#8222;Show Map&#8220; and &#8222;Show Map Link&#8220; options in CSV files not being reliably respected on import (props @joappf and many others for highlighting this issue) [82784]</li>\n<li>Fix &#8211; Added opportunities to override edit linked post links [89015]</li>\n<li>Fix &#8211; Fixed a bug where only some parts of event featured images were clickable in List Views (thanks @mattemkadia for highlighting this issue) [81392]</li>\n<li>Fix &#8211; Fixed the broken &#8218;Learn more&#8216; URL received after an unsuccessful &#8222;Other URL&#8220; import preview [92890]</li>\n<li>Fix &#8211; Fixed issue in list view navigation with backwards previous/next classes (thanks @secondtoughest) [36230]</li>\n<li>Fix &#8211; Fixed an issue where venues and organizers would not be correctly assigned to events in CSV imports with import statuses other than &#8222;Publish&#8220; [79680]</li>\n<li>Tweak &#8211; Remove net import scheduled notes for on demand imports [79079]</li>\n<li>Tweak &#8211; Allow for non-Latin characters to be used as the Events URL slug and the Single Event URL slug (thanks @daviddweb for originally reporting this) [61880]</li>\n<li>Tweak &#8211; Remove net import scheduled notes for on demand imports [79079]</li>\n<li>Tweak &#8211; Fixed some layout issues that would emerge with &#8222;Events URL Slug&#8220; option when &#8222;Plain&#8220; permalinks were enabled [92314]</li>\n<li>Tweak &#8211; Tweaked some language in Event Aggregator&#8217;s metabox on individual edit-event screens to reduce confusion around the impact of the Update Authority on CSV imports [77957]</li>\n<li>Tweak &#8211; Fix PHP 7.1 compatibility with Event Aggregator (props @BJP NEALE) [90002]</li>\n<li>Tweak &#8211; Added new filter: <code>tribe_events_force_filtered_ical_link</code>. This makes the &#8222;Export Events&#8220; URL more easily modifiable (thanks to @tdudley07 for highlighting this issue) [43908]</li>\n<li>Tweak &#8211; Made the &#8222;End of Day Cutoff&#8220; option better accommodate 24-hour and other time formats (thanks @festivalgeneral for bringing this issue to our attention!) [78621]</li>\n<li>Tweak &#8211; Made the options presented by the timezone selector filterable (via the newly added <code>tribe_events_timezone_choice</code> hook &#8211; our thanks to National University&#8217;s Marketing Department for this idea) [92909]</li>\n<li>Tweak &#8211; Improved integration with Twenty Seventeen &#8211; main events page now uses full height header when set to front page (thanks @uncovery for pointing this out) [89767]</li>\n<li>Tweak &#8211; Ensured REST API taxonomy endpoints are only registered in WordPress versions 4.7 and higher (thanks @dnaber-de for reporting this) [93227]</li>\n<li>Language &#8211; 1 new strings added, 132 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.6.4] 2017-11-09</h4>\n<ul>\n<li>Tweak &#8211; Timepicker is now part of Tribe Common, it was removed from The Events Calendar</li>\n<li>Tweak &#8211; Required changes to make the plugin compatible with version 4.6 of Event Tickets</li>\n<li>Language &#8211; 10 new strings added, 167 updated, 0 fuzzied, and 2 obsoleted</li>\n</ul>\n<h4>[4.6.3] 2017-11-02</h4>\n<ul>\n<li>Fix &#8211; Prevent JS error when adding a Pro widget in the WP Customizer screen [72127]</li>\n<li>Fix &#8211; Fixed issue where the value of an event&#8217;s &#8222;Show Google Maps Link&#8220; option would not properly affect the displaying of the link on List View (props: @etechnologie) [75547]</li>\n<li>Fix &#8211; Added some more specification to our jquery-ui-datepicker CSS to limit conflicts with other plugins and themes [90577]</li>\n<li>Fix &#8211; Improve shortcode pagination/view change url so it is reusable (props: @der.chef and others) [70021]</li>\n<li>Fix &#8211; Ensure the <code>tribe_json_ld_{type}_object</code> filter is available to make modifications of event, venue and organizer JSON LD data possible (thanks to Mathew for flagging this problem) [89801]</li>\n<li>Fix &#8211; Improved JSON LD output for events by outputting the correct UTC offset where required (our thanks to Nina and many others for flagging this issue) [78233]</li>\n<li>Tweak &#8211; Fixed some display issues for the event schedule details (props @mia-caro)</li>\n<li>Tweak &#8211; Improved the clarity of and amount of context for some linked post labels to make translation of those labels a little easier and more nuanced (props @hnacc and others) [88589]</li>\n<li>Tweak &#8211; Changed the order in which the list view &#8222;next events&#8220; link is assembled for better translatability (with thanks to @alelouya for highlighting this problem) [72097]</li>\n<li>Tweak &#8211; Adjusted linked posts selector HTML to improve compatibility with Batcache [92049]</li>\n<li>Tweak &#8211; Improved datepicker handling so an end date on or later than the start date can always be selected [89825]</li>\n<li>Language &#8211; 0 new strings added, 7 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.6.2] 2017-10-18</h4>\n<ul>\n<li>Fix &#8211; Restored functionality to the &#8222;currency position&#8220; options in Events Settings, and in the per-event cost settings (props @schola and many others!) [89918]</li>\n<li>Fix &#8211; Fixed issue in Month view with multi-month events not appearing on subsequent months (thanks @shinno.kei &amp; @schittly for helping isolate this) [89747]</li>\n<li>Fix &#8211; Made some changes to prevent Month View caching from breaking WPML support when in Month View (props: @mpike and many others!) [82286]</li>\n<li>Fix &#8211; Fixed start/end times being displayed in incorrect timezone in structured data (thanks @mtncreative &amp; @esosa) [42125]</li>\n<li>Fix &#8211; Fixed an issue that would cause a 404 error if the selected default view was not enabled (thanks @pruneau) [45612]</li>\n<li>Fix &#8211; Improved translatability by adding missing textdomains for a number of strings (props @pedro-mendonca) [91071]</li>\n<li>Fix &#8211; Removed unneeded escaping to ensure the organizer link displays as expected (pros @f4w-pwharton) [91074]</li>\n<li>Tweak &#8211; Improvements to the readme.txt file surrounding plugin requirements (thanks @ramiy) [90285]</li>\n<li>Tweak &#8211; Improve site identification in multisite installations using Event Aggregator to avoid throttling issues [90489]</li>\n<li>Tweak &#8211; Avoid notice level errors when a non-existent category archive is requested (our thanks to Charles Simmons for highlighting this) [90697]</li>\n<li>Tweak &#8211; Added a new filter <code>tribe_events_ical_single_event_links</code> to make customizing the iCal and gCal export links on single-event views easier [90705]</li>\n</ul>\n<h4>[4.6.1] 2017-10-04</h4>\n<ul>\n<li>Fix &#8211; Fixed &#8222;Next Events&#8220; and &#8222;Previous Events&#8220; navigation links in list views, which would sometimes make a category-filtered list view lose its category filter as a user navigated through pages of future or past events (props @forumhelpdesk and @atomicdust for reporting this!) [72013]</li>\n<li>Fix &#8211; Fixed some layout issues with the Tribe Bar datepicker that would arise when using a Twenty Sixteen or Twenty Fifteen child them (thanks to @stefanrueegger for reporting this) [46471]</li>\n<li>Fix &#8211; Prevented modification of event titles within the loop when using TRIBE_MODIFY_GLOBAL_TITLE [89273]</li>\n<li>Fix &#8211; Fixed issue when exporting all-day multi-day events via iCal where the end date was one day early (Thank you @fairmont for reporting this!) [87775]</li>\n<li>Fix &#8211; Fixed issues with the jQuery Timepicker vendor script conflicting with other plugins&#8216; similar scripts (props: @hcny et al.) [74644]</li>\n<li>Fix &#8211; Fixed an issue that would prevent Event Aggregator scheduled imports from running [88395]</li>\n<li>Fix &#8211; Fixed the &#8222;Start Time&#8220; and &#8222;End Time&#8220; timepicker fields in the event-creation screen to make it impossible to have an end date/time that comes before the start date/time [72686]</li>\n<li>Tweak &#8211; Remove unnecessary parameters from some remove_action calls in the plugin (thanks to @JPry on GitHub for submitting this fix!) [88867]</li>\n<li>Tweak &#8211; Adjusted the EA cron start time so that it never gets created in the past [88965]</li>\n<li>Tweak &#8211; Improved options format in the Event Aggregator settings [88970]</li>\n<li>Tweak &#8211; Added a filter to CSV importer for altering the delimiter, escaping, and enclosing characters [70570]</li>\n<li>Tweak &#8211; Adjusted the <code>tribe_update_venue()</code> template tag so it no longer creates some unnecessary meta fields involving post_title, post_content, etc. (thanks @oheinrich for bringing this to our attention) [66968]</li>\n<li>Tweak &#8211; Improved the performance of The Events Calendar REST API tweaking some queries [89743]</li>\n<li>Tweak &#8211; Add support for a <code>found_posts</code> argument in <code>tribe_get_events</code>, <code>tribe_get_venues</code> and <code>tribe_get_organizers</code> functions to return the number of posts found matching the current query arguments [89743]</li>\n<li>Deprecated &#8211; Deprecated the <code>tribe-events-bar-date-search-default-value</code> filter; use <code>tribe_events_bar_date_search_default_value</code> instead [67482]</li>\n<li>Language &#8211; Improvements to aid translatability of text throughout plugin (props: @ramiy) [88982]</li>\n<li>Language &#8211; 7 new strings added, 180 updated, 4 fuzzied, and 3 obsoleted</li>\n</ul>\n<h4>[4.6] 2017-09-25</h4>\n<ul>\n<li>Feature &#8211; Added full CRUD REST support for Events, Organizers, Venues, Event Categories, and Tags</li>\n<li>Tweak &#8211; Updated Bootstrap Datepicker to v1.7.0</li>\n<li>Tweak &#8211; Added latitude/longitude to REST responses when available on venues</li>\n<li>Tweak &#8211; Added JSON-LD data to REST responses when available</li>\n<li>Tweak &#8211; Replaced deprecated first parameter of <code>tribe_get_organizers()</code> with a parameter that, when specified with a truthy value, returns only organizers with upcoming events attached to them</li>\n<li>Tweak &#8211; Added linked post filters: <code>tribe_{$this-&gt;post_type}_has_events_excluded_post_stati</code>, <code>tribe_events_tribe_organizer_create</code>, <code>tribe_events_tribe_organizer_update</code>, <code>tribe_event_venue_duplicate_post_fields</code>, <code>tribe_event_organizer_duplicate_custom_fields</code></li>\n<li>Tweak &#8211; Added action: <code>tribe_events_organizer_created</code></li>\n<li>Tweak &#8211; Added REST filters: <code>tribe_rest_organizer_default_only_with_upcoming</code>, <code>tribe_rest_venue_default_only_with_upcoming</code>, <code>tribe_events_rest_term_allow_delete</code></li>\n<li>Tweak &#8211; Added duplicate-detection filters: <code>tribe_duplicate_post_strategies</code>, <code>tribe_duplicate_post_strategy</code>, <code>tribe_duplicate_post_{$strategy}_strategy</code></li>\n<li>Language &#8211; 152 new strings added, 217 updated, 6 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.5.13] 2017-09-20</h4>\n<ul>\n<li>Feature &#8211; Add link to the featured image in the Events List widget. New filter introduced to control this: <code>tribe_events_list_widget_featured_image_link</code> (props to @cabadaj007 for the feature request) [84807]</li>\n<li>Feature &#8211; Remove &#8218;France, Metropolitan&#8216; option from country list to prevent issues with Google Maps API (thanks @varesanodotfr for pointing this out) [78023]</li>\n<li>Feature &#8211; Ignored Events will restore previous status instead of setting to &#8218;publish&#8216; [82213]</li>\n<li>Fix &#8211; Patched jQuery Resize vendor library to avoid JavaScript conflicts (props to @britner for the original report) [71994]</li>\n<li>Fix &#8211; Fixed a typo in the Event List widget options [71081]</li>\n<li>Fix &#8211; Addressed some PHP notices that would sometimes emerge in tag-filtered post lists in the wp-admin (thanks to @wfsec28 and others in the forums for reporting this!) [45274]</li>\n<li>Fix &#8211; When &#8222;Full Styles&#8220; or &#8222;Tribe Events Styles&#8220; are used, prevent duplicate featured images from showing up in the Twenty Seventeen theme (props to @want2what and others in the forums for reporting this) [80955]</li>\n<li>Fix &#8211; Fixed the issue that would prevent the start date and date range parameters from being taken into account when using &#8218;Other URL&#8216; source in Event Aggregator</li>\n<li>Fix &#8211; Aggregator will no longer update comments while inactive [78890]</li>\n<li>Fix &#8211; Avoid issues when REST API archive request parameters are not in the original order (thanks @Nslaver for reporting this and providing a fix) [88748]</li>\n<li>Tweak &#8211; Aggregator prevents duplicated records with the same params from being created [68833]</li>\n<li>Tweak &#8211; Aggregator will now allow for some minor shifts in schedule execution time to help distribute requests to EA Service [86628]</li>\n<li>Tweak &#8211; Improve text in the Event Aggregator settings [77452]</li>\n<li>Tweak &#8211; Add actions before and after posts are inserted or updated by Event Aggregator to allow custom functions to kick in (<code>tribe_aggregator_before_insert_posts</code> and <code>tribe_aggregator_after_insert_posts</code>) [87530]</li>\n<li>Tweak &#8211; Allow users to import CSV with numerically-named categories by using a flag (currently <code>%n</code>) (thanks @Shamsi for reporting) [78340]</li>\n<li>Tweak &#8211; Allow date range and events count limits to be set on each type of import (except for &#8218;Other URL&#8216;) in Event Aggregator [79975]</li>\n</ul>\n<h4>[4.5.12.3] 2017-09-19</h4>\n<ul>\n<li>Fix &#8211; Display events on Month View correctly for WordPress version 4.8.2 and up (props @realcrozetva for reporting this) [88952]</li>\n</ul>\n<h4>[4.5.12.2] 2017-09-08</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where manually running Scheduled Imports would always result in a failed import [87321]</li>\n</ul>\n<h4>[4.5.12.1] 2017-09-07</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where events imported via Event Aggregator from an iCal-like source would be duplicated in place of being updated [87654]</li>\n</ul>\n<h4>[4.5.12] 2017-09-06</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where, with certain date formats chosen in the Events display settings, the &#8222;Next Month&#8220; link navigation wasn&#8217;t working (props to @tttammi and others for reporting this issue!) [86937]</li>\n<li>Fix &#8211; Fixed a typo in REST API Swagger documentation that mentioned &#8222;organizer&#8220; when it should have stated &#8222;venue&#8220;.</li>\n<li>Fix &#8211; Fixed issues with Event Aggregator queueing system where events might be duplicated or incorrectly updated [79975]</li>\n<li>Fix &#8211; Prevent notice when the Aggregator Record title is an array [82149]</li>\n<li>Fix &#8211; Allows Aggregator Google Map settings to extend the Global Setting by default (props to queerio for reporting this!) [67639]</li>\n<li>Fix &#8211; Prevent Warnings when throwing WordPress admin notices from Aggregator daily usage limit (props to cigarplanner for reporting this!) [83187]</li>\n<li>Fix &#8211; Resolved problem where Aggregator wouldn&#8217;t allow you to remove filtering terms for Records [76949]</li>\n<li>Fix &#8211; Allow any datepicker format to be used on Aggregator filtering Events (props to matthewseymour for reporting this!) [77819]</li>\n<li>Fix &#8211; Added check to see if log directory is readable before listing logs within it (thank you @rodrigochallengeday-org and @richmondmom for reporting this) [86091]</li>\n<li>Tweak &#8211; Datatables Head and Foot checkboxes will not select all items, only the current page [77395]</li>\n<li>Tweak &#8211; Included tooltip for Aggregator &#8222;Hide &amp; Ignore&#8220; button for events [67890]</li>\n<li>Tweak &#8211; Added all the Aggregator Origins to the Admin Bar [68693]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_get_state_options</code></li>\n<li>Tweak &#8211; Added template tags: <code>maybe_format_from_datepicker()</code></li>\n<li>Tweak &#8211; Added the <code>tribe_rest_single_event_data</code> filter to the single event REST API endpoint to allow filtering the returned data (thanks @mwender) [88748]</li>\n<li>Language &#8211; 2 new strings added, 90 updated, 0 fuzzied, and 1 obsoleted</li>\n</ul>\n<h4>[4.5.11] 2017-08-24</h4>\n<ul>\n<li>Fix &#8211; Avoid Event Aggregator previews or scheduled imports being marked as failures [84259]</li>\n<li>Fix &#8211; Fixed start and end date limit parsing for events archive in the REST API code [78375]</li>\n<li>Fix &#8211; Fixed issue with <code>tribe_events_get_the_excerpt()</code> returning a read more link that sometimes pointed to the current page [70473]</li>\n<li>Fix &#8211; Fixed Post ID not being sent to the_title filter for Organizers and Venues (props Anna L.) [85206]</li>\n<li>Fix &#8211; Fixed issue where Month View tooltips would often go off-screen in some smaller viewport sizes [65136]</li>\n<li>Fix &#8211; Fixed an issue that would sometimes render Event Aggregator options invalid even with a valid license [78469]</li>\n<li>Fix &#8211; Fixed an issue where the mobile.php template file would often fail to include an event&#8217;s featured image [74291]</li>\n<li>Fix &#8211; Resolved issue where invalid linked post IDs prevent proper updates on linked posts (props to Mathew L. and a few others for highlighting this issue) [71802]</li>\n<li>Fix &#8211; Do not hijack the blog when the main events page is configured to appear on the site&#8217;s homepage (our thanks to Jason and others for flagging this problem) [72094]</li>\n<li>Fix &#8211; Remove extra trailing double-quotes at the end of the timepicker data-format attributes [85603]</li>\n<li>Fix &#8211; Fixed an issues where Event Aggregator scheduled imports could not run other than manually [81639]</li>\n<li>Tweak &#8211; Prevent stray commas from showing up for some event venues in the List View [72289]</li>\n<li>Tweak &#8211; Prevent stray commas from showing up for some event venues in the Day View [85429]</li>\n<li>Tweak &#8211; Modify certain event queries to widen the window of opportunity for query caching (props @garretjohnson) [84841]</li>\n<li>Tweak &#8211; Improve Event Aggregator message regarding Facebook token expiration [70376]</li>\n<li>Tweak &#8211; Support importing from URLs (Event Aggregator) where the protocol hasn&#8217;t been specified by defaulting to HTTP [76466]</li>\n<li>Tweak &#8211; Removed WP API adjustments [85996]</li>\n<li>Tweak &#8211; Added filter: <code>tribe_aggregator_meta_source</code> to filter the Event Aggregator import source</li>\n<li>Tweak &#8211; Added filter: <code>tribe_events_linked_post_meta_values_{$current_linked_post_meta_key}</code> for filtering the array of values retrieved for a specific linked post meta field</li>\n<li>Tweak &#8211; Updated views: <code>src/views/day/single-event.php</code> and <code>src/views/list/single-event.php</code></li>\n<li>Kompatibilität &#8211; geeigent ab WordPress 4.5</li>\n<li>Language &#8211; Improvements to various strings to improve ease of translation (props to @ramiy)</li>\n<li>Language &#8211; 5 new strings added, 56 updated, 1 fuzzied, and 3 obsoleted [the-events-calendar]</li>\n</ul>\n<h4>[4.5.10.1] 2017-08-16</h4>\n<ul>\n<li>Fix &#8211; Updates common library to resolve a range of issues preventing frontend assets from loading and breaking parts of our user interface [85017]</li>\n</ul>\n<h4>[4.5.10] 2017-08-09</h4>\n<ul>\n<li>Fix &#8211; Avoid duplicate events when importing from some iCal, Google Calendar and Facebook feeds in Event Aggregator (our thanks to Jason Sears, controlyours and many other users for highlighting these issues) [67038]</li>\n<li>Fix &#8211; Fixed bug that caused scheduled imports to get stuck in a perpetual state of failure when receiving error messages from the Event Aggregator service (our thanks to Antonio Jose and others for flagging this problem) [83767]</li>\n<li>Fix &#8211; Resolved issue where errors from the Event Aggregator service were not properly logging/visible on the History tab [83767]</li>\n<li>Tweak &#8211; Made linked post fields&#8216; auto-save features more stringently check for empty values to prevent the plugin from trying to &#8222;save&#8220; empty values (our thanks to Jean-Marie for highlighting this problem) [80282]</li>\n<li>Tweak &#8211; Moved the organizer e-mail address field label a bit to better accommodate Community Events [80426]</li>\n<li>Tweak &#8211; Added filter to tribe_get_display_end_date()&#8217;s return value [77730]</li>\n<li>Tweak &#8211; Avoid notice-level errors while processing queues within Event Aggregator (our thanks to David Sharpe and others for reporting this) [84020]</li>\n<li>Tweak &#8211; Improve compatibility and avoid Javascript errors when running alongside Twenty Seventeen [70853]</li>\n<li>Compatibility &#8211; Minimum supported version of WordPress is now 4.4</li>\n<li>Language &#8211; 1 new strings added, 119 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[4.5.9] 2017-07-26</h4>\n<ul>\n<li>Fix &#8211; Send Aggregator callback URL with correct Scheme [83364]</li>\n<li>Fix &#8211; Scheduled Aggregator cron for inserting will re-enqueue to complete scheduled imports [83382]</li>\n<li>Fix &#8211; Avoid overwriting Venues and Organizers when importing FB events with similarly named Venues and Organizers [75370]</li>\n<li>Fix &#8211; Improve handling of large and/or slow Google Calendar and iCal feeds [79975]</li>\n<li>Tweak &#8211; Added period &#8222;.&#8220; separator to datepicker formats. [65282]</li>\n<li>Tweak &#8211; Added tribe_events_month_get_events_in_month filter to allow overriding of events used in month templates. [83317]</li>\n</ul>\n<h4>[4.5.8.1] 2017-07-21</h4>\n<ul>\n<li>Fix &#8211; Fixed an issue where failed EA Imports would hang for a long time before failing [83344]</li>\n</ul>\n<h4>[4.5.8] 2017-07-13</h4>\n<ul>\n<li>Fix &#8211; Remove permalink logic for recurring events (Events Calendar PRO will implement instead) [74153]</li>\n<li>Fix &#8211; Avoid type error when setting up one-time imports for Facebook URLs (our thanks to @J for flagging this!) [78664]</li>\n<li>Fix &#8211; Add a safety check in isOrganizer() function (our thanks to Kevin for flagging this!) [81645]</li>\n<li>Fix &#8211; Avoid EA Client hanging when no events are found while attempting an import from a Facebook source [82713]</li>\n<li>Fix &#8211; Improve compatibility of The Events Calendar when operating with WPML from within a subdirectory (props: @dgwatkins) [81998]</li>\n</ul>\n<h4>[4.5.7] 2017-06-28</h4>\n<ul>\n<li>Fix &#8211; Restore support for translated events category slugs when WPML is active [73478]</li>\n<li>Fix &#8211; Improve handling of shortcodes within event view excerpts (props: @awbauer) [81226]</li>\n<li>Fix &#8211; Improve compatibility with WPML in relation to event permalinks specifically (props: @dgwatkins) [81224]</li>\n<li>Fix &#8211; Improved handling of Venue fields that allows for better form validation in Community Events [76297]</li>\n<li>Tweak &#8211; Better detection and reporting of communication failures with the Event Aggregator server</li>\n<li>Tweak &#8211; Textual corrections (with thanks to @garrett-eclipse for highlighting many of these) [77196]</li>\n<li>Tweak &#8211; New filter added (&#8222;tribe_events_linked_posts_dropdown_enable_creation&#8220;) to facilitate more control over linked posts [80487]</li>\n<li>Tweak &#8211; Improve performance of theme compatibility code [71974]</li>\n<li>Tweak &#8211; Don&#8217;t show Event Aggregator system status in Help tab if there&#8217;s no Event Aggregator license in place [68506]</li>\n</ul>\n<h4>[4.5.6] 2017-06-22</h4>\n<ul>\n<li>Tweak &#8211; Improved how Cost field looks and it&#8217;s consistency across views [71092 &amp; 71094]</li>\n<li>Fix &#8211; Resolved issue where the Meta Chunker attempted to inappropriately chunk meta for post post_types [80857]</li>\n<li>Tweak &#8211; Added actions: <code>tribe_events_inside_cost</code></li>\n<li>Tweak &#8211; Changed views: <code>day/single-event</code>, <code>day/single-featured</code>, <code>list/single-event</code>, <code>list/single-featured</code></li>\n<li>Language &#8211; 1 new strings added, 15 updated, 1 fuzzied, and 1 obsoleted [the-events-calendar]</li>\n<li>Language &#8211; 0 new strings added, 0 updated, 1 fuzzied, and 0 obsoleted [tribe-common]</li>\n</ul>\n<h4>[4.5.5] 2017-06-14</h4>\n<ul>\n<li>Fix &#8211; Removed extra double quotes in organizer link output [71133]</li>\n<li>Fix &#8211; Make the list and day view styles match more closely [63599]</li>\n<li>Fix &#8211; Better sanitization on CSV imports (thanks to Valentinos Chouris from NCC Group for reporting this) [80311]</li>\n<li>Fix &#8211; Prevent tabs from being incorrectly escaped in iCal output (props: KZeni) [80452]</li>\n<li>Fix &#8211; Fixed inconsistent font styling of Tribe Bar form labels. [27252]</li>\n<li>Tweak &#8211; Removed unused Javascript (jQuery UI Dialog) to help avoid warnings (our thanks to @gama6889 for flagging this) [80766]</li>\n<li>Tweak &#8211; Added new filter hooks &#8218;tribe_events_register_event_type_args&#8216; and &#8218;tribe_events_register_event_cat_type_args&#8216; [80658]</li>\n</ul>\n<h4>[4.5.4] 2017-06-06</h4>\n<ul>\n<li>Tweak &#8211; Minor tweaks to the CSS for linked post types (Organizer/Venues)</li>\n<li>Fix &#8211; Prevent drag and drop icon showing when singular linked post type is been displayed</li>\n<li>Fix &#8211; Resolved issue where scheduled imports sometimes failed to execute [79587]</li>\n<li>Fix &#8211; Better sanitization of data (Props to Valentinos Chouris for reporting this) [80310]</li>\n<li>Language &#8211; 2 new strings added, 156 updated, 0 fuzzied, and 4 obsoleted [the-events-calendar]</li>\n<li>Language &#8211; 4 new strings added, 20 updated, 1 fuzzied, and 0 obsoleted [tribe-common]</li>\n</ul>\n<h4>[4.5.3] 2017-06-01</h4>\n<ul>\n<li>Fix &#8211; Made it easier to translate the update confirmation message (our thanks to safu9 for highlighting this) [79729]</li>\n<li>Fix &#8211; Fixed compatibility issue with WPML which caused organizers and venues to disappear on translated events [67581]</li>\n<li>Fix — Fixed bug where venues and organizers would be duplicated when their associated event is previewed. [64088]</li>\n<li>Tweak &#8211; Other fixes to the plugin verbiage (with thanks to @garrett-eclipse and others)</li>\n</ul>\n<h4>[4.5.2.1] 2017-05-19</h4>\n<ul>\n<li>Fix &#8211; Prevent fatal errors occuring in PHP 5.5 and earlier [79208]</li>\n</ul>\n<h4>[4.5.2] 2017-05-17</h4>\n<ul>\n<li>Fix &#8211; Correct REST API reference URL (our thanks to Lindsey for flagging this) [78658]</li>\n<li>Fix &#8211; Improve Event Aggregator integration to avoid situations where imports continually restart but do not complete [77988]</li>\n<li>Tweak &#8211; Make the inclusion or exclusion of the year (within the event schedule string) filterable [78070]</li>\n<li>Tweak &#8211; Adjustments to help avoid false positive security alerts being generated in relation to our customizer integration [78355]</li>\n</ul>\n<h4>[4.5.1] 2017-05-04</h4>\n<ul>\n<li>Fix &#8211; Prevented errors on EA import screen that happened in exotic circumstance. Thanks @kathryn for reporting this! [75787]</li>\n<li>Fix &#8211; Made EA preserve custom dates after reimporting a Facebook Event when option is set. [75787]</li>\n<li>Fix &#8211; Enhance month view caching to minimize impact of JSON-LD generation [74656]</li>\n<li>Tweak &#8211; Styling/layout improvements within the Event Aggregator screen [77895]</li>\n</ul>\n<h4>[4.5.0.2] 2017-05-01</h4>\n<ul>\n<li>Fix &#8211; Ensure compatibility with WordPress version 4.4 and earlier</li>\n</ul>\n<h4>[4.5.0.1] 2017-05-01</h4>\n<ul>\n<li>Fix &#8211; Resolving issue where some premium plugins were falsely claiming they were out of date</li>\n</ul>\n<h4>[4.5] 2017-05-01</h4>\n<ul>\n<li>Feature &#8211; Event Aggregator now allows users to import from other sites with The Events Calendar [68139]</li>\n<li>Feature &#8211; Include a Events REST API endpoint for read operations [70711]</li>\n<li>Feature &#8211; Include granular Scheduling for Events Aggregator</li>\n<li>Tweak &#8211; Update Authority for modified fields now will include Organizer, Venues and Taxonomy changes [71152]</li>\n<li>Tweak &#8211; Clean up direct calls to get events and use wrapper <code>tribe_get_events()</code> which has a hook for customizing</li>\n<li>Tweak &#8211; Remove including Event Tickets for backwards compatibility as a vendor library [71908]</li>\n<li>Tweak &#8211; Create a global ID to increase consistency on all of the imported items with Event Aggregator [75218]</li>\n<li>Fix &#8211; Prevent Aggregator to run on Empty Queues thus generating fatals (props to @Donald for the report here) [75377]</li>\n<li>Fix &#8211; Categories and Tags are no longer cleared when importing with Event Aggregator (thank you @Nicolas for the report) [74264]</li>\n<li>Fix &#8211; Increase consistency on Column Mapping for CSV imports [76476]</li>\n<li>Tweak &#8211; Added filters for REST API: <code>tribe_events_rest_url_prefix</code>, <code>tribe_rest_url</code>, <code>tribe_events_rest_use_builtin</code>, <code>tribe_rest_events_archive_data</code>, <code>tribe_rest_event_max_per_page</code>, <code>tribe_rest_event_data</code>, <code>tribe_rest_venue_data</code>, <code>tribe_rest_organizer_data</code>, <code>tribe_rest_event_categories_data</code>, <code>tribe_rest_event_tags_data</code>, <code>tribe_rest_event_taxonomy_term_data</code>, <code>tribe_rest_event_featured_image</code>, <code>tribe_events_rest_api_enabled</code></li>\n<li>Tweak &#8211; Added filters for REST API Documentation: <code>tribe_rest_swagger_cost_details_documentation</code>, <code>tribe_rest_swagger_date_details_documentation</code>, <code>tribe_rest_swagger_image_details_documentation</code>, <code>tribe_rest_swagger_image_size_documentation</code>, <code>tribe_rest_swagger_term_documentation</code>, <code>tribe_rest_swagger_event_documentation</code>, <code>tribe_rest_swagger_organizer_documentation</code>, <code>tribe_rest_swagger_venue_documentation</code>, <code>tribe_rest_swagger_documentation</code></li>\n<li>Tweak &#8211; Added filters for Modified fields tracking: <code>tribe_tracker_post_types</code>, <code>tribe_tracker_excluded_meta_keys</code>, <code>tribe_tracker_enabled</code>, <code>tribe_tracker_enabled_for_terms</code>, <code>tribe_tracker_taxonomies</code></li>\n<li>Tweak &#8211; Added filters for Event Aggregator: <code>tribe_aggregator_localized_data</code>, <code>tribe_aggregator_service_messages</code>, <code>tribe_aggregator_url_import_range_options</code>, <code>tribe_aggregator_url_import_range_cap</code>, <code>tribe_aggregator_url_import_range_start</code>, <code>tribe_aggregator_url_import_range_end</code></li>\n<li>Tweak &#8211; Removed filters for Event Aggregator: <code>tribe_aggregator_track_modified_fields</code></li>\n<li>Tweak &#8211; Added actions for Initialization: <code>tribe_events_bound_implementations</code></li>\n<li>Tweak &#8211; Removed methods for <code>Tribe__Events__Main</code>: <code>track_event_post_field_changes</code>, <code>maybe_load_tickets_framework</code></li>\n<li>Tweak &#8211; Removed methods for <code>Tribe__Events__Aggregator__Service</code>: <code>has_service_message</code></li>\n</ul>\n<h4>[4.4.5] 2017-03-23</h4>\n<ul>\n<li>Fix &#8211; Local changes to events should be preserved in accordance with the Event Import Authority setting (thanks to @bryan for reporting this one) [72876]</li>\n<li>Fix &#8211; Correct the value for days of the week abbreviation (thanks @mmmmartin03 for the report) [75379]</li>\n<li>Tweak &#8211; Enable the month view cache by default on new installations [74867]</li>\n<li>Tweak &#8211; External links to Google maps changed from http to https (nice find by @bjf2000 &#8211; reported via the .org support page) [74930]</li>\n<li>Tweak &#8211; Links to WordPress.org changed from http to https (ultimately this is also credited to @bjf2000&#8217;s find. Thanks!) [72273]</li>\n</ul>\n<h4>[4.4.4] 2017-03-08</h4>\n<ul>\n<li>Fix &#8211; Avoid unnecessarily removing a callback from an action while inside the same action (improves PolyLang compatibility &#8211; props @Chouby) [73122]</li>\n<li>Fix &#8211; Resolving issue where sites that overrode the wp-admin path would fail to successfully perform a Facebook OAuth with Event Aggregator [74687]</li>\n<li>Tweak &#8211; Improve template loading for easier customization by developers and better support of the template hierarchy (props @QWp6t) [72842]</li>\n</ul>\n<h4>[4.4.3] 2017-02-22</h4>\n<ul>\n<li>Fix &#8211; Resolved issue where iCal exports on month view were exporting more events than intended (thanks to @s2ldesign for reporting in our forums) [72133]</li>\n<li>Fix &#8211; Resolved meta width issue for maps when Pro is active (gracias a @ANTONIO JOSE por el reporte del error)  [69844, 72272]</li>\n<li>Fix &#8211; Resolved issue where featured images were not being imported via Event Aggregator Facebook imports (cheers to @Cody for the initial bug report) [72764]</li>\n<li>Fix &#8211; Resolved issue where translated &#8218;all&#8216; slugs were not respected (thank you @Marianne for your report in the forums) [71996]</li>\n<li>Tweak &#8211; Translation improvements and fixes (@Katja &#8211; thanks! ) [70068]</li>\n<li>Tweak &#8211; Allow &#8222;-1&#8220; when specifying the &#8222;Month view events per day&#8220; setting [70497]</li>\n</ul>\n<h4>[4.4.2] 2017-02-09</h4>\n<ul>\n<li>Fix &#8211; Ensure the global and source-specific Google Map settings for imports are respected [67228]</li>\n<li>Fix &#8211; Prevent PHP 5.2 Strict mode from throwing notices due to usage of <code>is_a</code> [72812]</li>\n<li>Fix &#8211; Ensure the events list widget&#8217;s show/hide if there are upcoming events setting is respected [72965]</li>\n<li>Tweak &#8211; Add filters for template tag functions related to dates: <code>tribe_get_start_time</code>, <code>tribe_get_end_time</code>, <code>tribe_get_start_date</code> and <code>tribe_get_end_date</code> [67759]</li>\n</ul>\n<h4>[4.4.1.1] 2017-01-26</h4>\n<ul>\n<li>Fix &#8211; Resolved fatal caused when rendering themes that override tribe styles</li>\n</ul>\n<h4>[4.4.1] 2017-01-26</h4>\n<ul>\n<li>Fix &#8211; Resolve the Fatals related to undefined methods and Memory exhaustion [71958, 71912]</li>\n<li>Fix &#8211; iCal export for Single events working again [71916]</li>\n<li>Tweak &#8211; Changes the Search label to prevent duplicate words (props @oheinrich) [72149]</li>\n<li>Tweak &#8211; Add theme version to <code>tribe-event.css</code> (props @berler) [71973]</li>\n<li>Fix &#8211; Resolve JavaScript error when jQuery was been de-registered [71369]</li>\n<li>Fix &#8211; Prevent Fatals when Importing Images on Event Aggregator [70576]</li>\n<li>Fix &#8211; Prevent Third Party notes to be escaped, anchor link working again [71872]</li>\n<li>Fix &#8211; Google Maps now are using HTTPS instead of HTTP (props @cliffordp)</li>\n<li>Fix &#8211; Prevent Fatals on Event Aggregator Cron, due to Activity logging failure [71904]</li>\n<li>Fix &#8211; Elminate some cases of problem with Facebook manual import on Event Aggregator [69137]</li>\n<li>Fix &#8211; WPML integration smaller incompatibilities [70520, 70522]</li>\n</ul>\n<h4>[4.4.0.1] 2017-01-09</h4>\n<ul>\n<li>Fix &#8211; Adds safety check to ensure a smooth activation process when earlier versions of Tribe Common are active</li>\n</ul>\n<h4>[4.4] 2017-01-09</h4>\n<ul>\n<li>Feature &#8211; Add dynamic helper text to single event editor to display the events date and time [66484]</li>\n<li>Feature &#8211; Add support for featured events [65898]</li>\n<li>Feature &#8211; Add support for placing the main events archive on the site homepage [38757]</li>\n<li>Feature &#8211; Add support for the theme customizer [67489]</li>\n<li>Feature &#8211; Make it possible to adjust map pins via the theme customizer [65889]</li>\n<li>Feature &#8211; Support for Event Aggregator in a multisite network context added [61427]</li>\n<li>Fix &#8211; Add a link to The Events Calendar Help page in the Network Administration screen of multisite installations [68665]</li>\n<li>Fix &#8211; Multisite license editing and displaying consistency [68662]</li>\n<li>Tweak &#8211; Adjusted styles and added actions for featured events in the List Widget [65923]</li>\n<li>Tweak &#8211; Organizers and Venues are now with a better and cleaner interface [68430]</li>\n<li>Tweak &#8211; Eliminate duplicate meta data for organizer posts [25084]</li>\n<li>Tweak &#8211; Improved the start/end date user interface [66486, 66487, 66550]</li>\n<li>Tweak &#8211; iCal export now includes all events &#8211; up to a reasonable limit &#8211; rather than just those in the current view [65037]</li>\n<li>Tweak &#8211; Adjustments made to the default week view color scheme [69756]</li>\n<li>Tweak &#8211; Add AJAX and improve consistency of the venue and organizer UI [38129]</li>\n</ul>\n<h4>[4.3.5] 2016-12-20</h4>\n<ul>\n<li>Tweak &#8211; Updated the template override instructions in a number of templates [68229]</li>\n<li>Tweak &#8211; Improve behavior of tribe_get_events_title() in respect of single events [46313]</li>\n<li>Tweak &#8211; Event Aggregator will only load on the Administration, prevent bigger loads for Front-End users [70812]</li>\n<li>Tweak &#8211; Allow better filtering for Organizers and Venue Meta fields (Props: @Chouby from Polylang) [70894]</li>\n<li>Fix &#8211; Prevent JavaScript Notices related to Bumpdown [69886]</li>\n<li>Fix &#8211; Assets URL on Windows Servers are fully operational again [68377]</li>\n<li>Fix &#8211; JavaScript and CSS files will respect HTTPS on all pages [69561]</li>\n<li>Fix &#8211; Fixed comment count and visibility issues due to Event Aggregator records [68297]</li>\n<li>Fix &#8211; Fixed PHP notices and warnings raised when importing .ics files [69960]</li>\n<li>Fix &#8211; Only show link to Venues if Pro is active in List View [69887]</li>\n<li>Fix &#8211; Fixed and issue that would make Event Aggregator importing notices remain stuck in the Import screen [70614]</li>\n<li>Fix &#8211; Avoid error screen when saving licenses on multisite installations [68599]</li>\n<li>Fix &#8211; Fix calendar view links in WPML language switcher [67134]</li>\n</ul>\n<h4>[4.3.4.2] 2016-12-13</h4>\n<ul>\n<li>Fix &#8211; Correct an oversight leading to breakages of the /all/ events archive for Events Calendar PRO users [70662]</li>\n</ul>\n<h4>[4.3.4.1] 2016-12-09</h4>\n<ul>\n<li>Fix &#8211; Updates Tribe Common to remove some stray characters that were impacting page layouts (props: @Aetles) [70536]</li>\n</ul>\n<h4>[4.3.4] 2016-12-08</h4>\n<ul>\n<li>Tweak &#8211; Tribe Common now is loaded only once across our plugin suite, improves performance in some cases [65755]</li>\n<li>Fix &#8211; Featured Images for Event Aggregator imports are working as expected again. [69465]</li>\n<li>Fix &#8211; Google Calendar and iCalendar files are now updating their respective events [68684]</li>\n<li>Fix &#8211; On demand Event Aggregator records will update events correctly [69542]</li>\n</ul>\n<h4>[4.3.3] 2016-11-16</h4>\n<ul>\n<li>Feature &#8211; Added Tribe Extension class and loader, to make small addons easier to build [68188]</li>\n<li>Fix &#8211; Ordering on Month view is working as expected again [69123]</li>\n<li>Fix &#8211; Enable ampersand character in mobile month view titles (thanks @kate for the report of this) [45409]</li>\n<li>Fix &#8211; Prevent notices for Event Aggregator License checking [67981]</li>\n<li>Fix &#8211; Mismatched text domains are resolved, important for translations (props to @Hans) [68462]</li>\n<li>Fix &#8211; Sticky on Month View is working as expected again [68902]</li>\n<li>Fix &#8211; Prevent HTTPS websites from pointing to Assets in HTTP [68372]</li>\n<li>Fix &#8211; On <code>WP_Query</code> we will no-longer overwrite custom <code>post__not_in</code> params [42143]</li>\n</ul>\n<h4>[4.3.2] 2016-11-02</h4>\n<ul>\n<li>Fix &#8211; Fixes an issue where the text in the Location search field was URL encoded when using the back or forward button for navigation. [61742]</li>\n<li>Fix &#8211; Aggregator Errors will not show more than once daily as comments (Thanks @Jacob for your report on the forums) [68094]</li>\n<li>Fix &#8211; Event Aggregator ICS default configuration now are been Selected Correctly [67885]</li>\n<li>Fix &#8211; Shortcode Month view now will display tooltips correctly [68094]</li>\n<li>Fix &#8211; Avoid loading the select2 JavaScript library twice when Advanced Custom Fields is activated (props to @ryan for the initial report [43605]</li>\n<li>Fix &#8211; Avoid errors and notices on calendar page when X theme and WPML plugins are active (thanks @ingrid for reporting this one) [64400]</li>\n</ul>\n<h4>[4.3.1.1] 2016-10-20</h4>\n<ul>\n<li>Fix &#8211; Corrected a packaging issue from the 4.3.1 release [67936]</li>\n</ul>\n<h4>[4.3.1] 2016-10-20</h4>\n<ul>\n<li>Tweak &#8211; Implement the pruning of Event Aggregator history records after 7 days, filterable by tribe_aggregator_record_retention [68283]</li>\n<li>Tweak &#8211; Event Aggregator will now verify that the license key has uses remaining before creating a history record [68286]</li>\n<li>Tweak &#8211; Improve <code>tribe_create_event</code> documentation (Props to Keith) [44871]</li>\n<li>Fix &#8211; Resolved an issue where scheduled Event Aggregator imports marked as &#8222;On Demand&#8220; were being run by cron [68284]</li>\n<li>Fix &#8211; Resolved a bug where empty meta fields were being inserted into Event Aggregator record post meta [68290]</li>\n<li>Fix &#8211; Resolved a bug where Venue and Organizers urls were been generated incorrectly (Thanks @Matt) [68168]</li>\n<li>Fix &#8211; Pagination links on Month view are updating correctly [67977]</li>\n<li>Fix &#8211; Resolved the support for translated event category archive slug that could lead to broken links on the front-end while using WPML (Props to Wilco in the support Forums) [62018]</li>\n<li>Fix &#8211; Resolved a bug where searching for past events in the List view would always yield no results (Thanks for the report @Davide) [61863]</li>\n<li>Fix &#8211; Resolved an issue where long file names would break plugin updates on some Windows installations (pros to @Alan [62552]</li>\n<li>Fix &#8211; Resolved an issue where the <code>/all</code> link on recurring events on non English websites could be broken (reported by @lumiest &#8211; thanks!) [68062]</li>\n<li>Fix &#8211; Pagination links on Month view are updating correctly [67977]</li>\n</ul>\n<h4>[4.3.0.1] 2016-10-14</h4>\n<ul>\n<li>Fix &#8211; Preventing legacy Facebook events from being duplicated</li>\n</ul>\n<h4>[4.3] 2016-10-13</h4>\n<ul>\n<li>Feature &#8211; Added Event Aggregator to enable service-based event imports from iCal feeds, Facebook, and Meetup</li>\n<li>Feature &#8211; Revamped the CSV import screens to work within the new Event Aggregator pages</li>\n<li>Tweak &#8211; Adjusted some view logic to support the new Event Views shortcode in Pro [44800]</li>\n<li>Tweak &#8211; Added a button to copy the system infomation on the help tab [43709]</li>\n<li>Tweak &#8211; Added an option for users to opt into automatic system infomation so our support system can grab the system information found on the help tab automatically [31645]</li>\n<li>Tweak &#8211; Use an earlier hook for iCal feed generation (props @jlambe) [64141]</li>\n<li>Tweak &#8211; Revise and simplify integration with Event Tickets attendee screen [61992]</li>\n<li>Tweak &#8211; Added context to a set of strings to make translation easier (props @pedro-mendonca) [64586]</li>\n<li>Tweak &#8211; Deprecated various disused functions and classes relating to the Meta Factory [39905]</li>\n<li>Fix &#8211; Cease using GLOB_BRACE for including deprecated files due to limited server support [63172]</li>\n<li>Fix &#8211; Avoid problems that can occur when hooking and unhooking actions (props @Chouby) [63474]</li>\n<li>Fix &#8211; Resolves an issue where we were duplicating a core WordPress hook but with a different set of parameters (props @Chouby) [66455]</li>\n<li>Fix &#8211; Correct the datetime formatting issues within the iCal feed (props @henryk) [65968]</li>\n<li>Deprecated &#8211; <code>Tribe__Events__Main::initOptions()</code> has been deprecated with no replacement</li>\n<li>Deprecated &#8211; <code>Tribe__Events__Main::set_meta_factory_global()</code> has been deprecated in favor of using the <code>Tribe__Events__Meta_Factory</code> class</li>\n<li>Deprecated &#8211; The <code>setup_meta()</code> method in both the <code>Tribe__Events__Template__Single_Event</code> and <code>Tribe__Events__Template_Factory</code> classes has been deprecated</li>\n<li>Deprecated &#8211; The <code>the_title()</code>, <code>event_date()</code>, <code>event_category()</code>, <code>event_tag()</code>, <code>event_website()</code>, <code>event_origin()</code>, <code>organizer_name()</code>, <code>organizer_email()</code>, <code>venue_name()</code>, <code>venue_address()</code>, and <code>venue_map()</code> methods have been deprecated in the <code>Tribe__Events__Advanced_Functions__Register_Meta</code> class</li>\n<li>Deprecated &#8211; The <code>register()</code>, <code>check_exists()</code>, and <code>get_args()</code> methods have been deprecated in the <code>Tribe__Events__Meta_Factory</code> class</li>\n</ul>\n<h4>[4.2.7] 2016-09-15</h4>\n<ul>\n<li>Tweak &#8211; Additional support for plugin extensions</li>\n</ul>\n<h4>[4.2.6] 2016-08-31</h4>\n<ul>\n<li>Add &#8211; tribe_is_event_past() conditional to detect if event end time is past current time (Reported by @Jonathan in our support forums &#8211; thanks Jonathan.)</li>\n</ul>\n<h4>[4.2.5] 2016-08-17</h4>\n<ul>\n<li>Fix &#8211; Fixed inconsistent template filtering logic for single event template [62525]</li>\n<li>Tweak &#8211; Restored preview for published events [64874]</li>\n</ul>\n<h4>[4.2.4] 2016-08-03</h4>\n<ul>\n<li>Tweak &#8211; Changed &#8222;Event Add-Ons&#8220; to load faster [64286]</li>\n<li>Fix &#8211; Fixed default venue setting [64628]</li>\n<li>Fix &#8211; Fixed default venue state and province settings [64629]</li>\n</ul>\n<h4>[4.2.3] 2016-07-20</h4>\n<ul>\n<li>Fix &#8211; In month view, be sure to unhook JSON-LD output when calling unhook function</li>\n<li>Fix &#8211; Incorrect JSON-LD event start and end times (thank you @jjbte for reporting on .org forums)</li>\n<li>Fix &#8211; Show Google Map and Link checkbox so they show when editing an event (Reported originally by Michael of @NailedIT in the .org forum)</li>\n<li>Fix &#8211; Use Community Events Venue Edit Link when on Community Events Forms instead of Admin (also as a result of the report abve from @NailedIT. Thanks again.)</li>\n</ul>\n<h4>[4.2.2] 2016-07-06</h4>\n<ul>\n<li>Fix &#8211; Small CSS Issue on Welcome Page</li>\n<li>Fix &#8211; Month view on mobile device width doesn&#8217;t have links to prev/next months</li>\n<li>Fix &#8211; Reimport of updated CSV removes featured image (Bug #46149)</li>\n<li>Fix &#8211; Fixed the issue that would make multiple organizers details disappear when trying to submit invalid event data using Community</li>\n<li>Fix &#8211; Add a check to avoid being unable to switch view when Filter Bar plugin is active and at least one field is set to auto-complete mode</li>\n<li>Fix &#8211; Only add the events custom post type to the tag archive queries and not custom queries with tags [45635]</li>\n<li>Fix &#8211; When using the filter tribe_events_excerpt_allow_shortcode shortcodes will be maybe be processed in event excerpts in the list views [42289]</li>\n</ul>\n<h4>[4.2.1.1] 2016-06-28</h4>\n<ul>\n<li>Fix &#8211; Ensure translations load as expected with all supported versions of WordPress (thanks to @JacobALund for originally reporting this on .org forums)</li>\n</ul>\n<h4>[4.2.1] 2016-06-22</h4>\n<ul>\n<li>Tweak &#8211; Adjust the caching rules for Month View for faster loading</li>\n<li>Fix &#8211; Replace a bad return type to avoid unnecessary notices in the error log</li>\n<li>Fix &#8211; Add missing styles for correctly hide screen reader text</li>\n<li>Fix &#8211; Fixes <code>tribe_get_event_link()</code> which wasn&#8217;t working when passing second parameter as `true&#8216;</li>\n<li>Tweak &#8211; Reduce the ginormous font size of Month View titles in skeleton styles</li>\n<li>Fix &#8211; Add styling to adjust List View description to full width</li>\n<li>Fix &#8211; Miscellaneous tweaks to improve the Month and Day views</li>\n<li>Fix &#8211; Fix a shorthand array that was causing errors in PHP 5.2 and 5.3 when importing events</li>\n</ul>\n<h4>[4.2] 2016-06-08</h4>\n<ul>\n<li>Feature &#8211; Added Google Maps API key field in the Settings tab to avoid map timeouts and errors on larger sites (Thanks to Yan for reporting this!)</li>\n<li>Feature &#8211; Added support for featured image, multiple organizers, excerpt and more custom fields in the .csv file import function for events (Thank you to Graphic Designer for posting on UserVoice!)</li>\n<li>Feature &#8211; Added support for featured image, description, map details and more custom fields in the .csv file import function for venues</li>\n<li>Feature &#8211; Added support for featured image and description in the .csv file import function for organizers (Thank you to Rebecca for posting on UserVoice!)</li>\n<li>Feature &#8211; Added an oEmbed template for events</li>\n<li>Feature &#8211; Improve performance of a query used to determine if there are free/uncosted events (Thank you @fabianmarz for the pull request!)</li>\n<li>Feature &#8211; Added support for attaching custom post types to events</li>\n<li>Tweak &#8211; Improved filtering of the <code>tribe_event_featured_image()</code> function (Cheers to @fabianmarz!)</li>\n<li>Tweak &#8211; Add an encoding class for the CSV importer to prevent non utf8 characters from preventing imports (Thanks to screenrage for the report!)</li>\n<li>Tweak &#8211; Improved our JSON-LD output to ensure consistency (Props to @garrettjohnson and Lars!)</li>\n<li>Tweak &#8211; Language files in the <code>wp-content/languages/plugins</code> path will be loaded before attempting to load internal language files (Thank you to user aafhhl for bringing this to our attention!)</li>\n<li>Tweak &#8211; Switch to HTTPS for the &#8222;Powered by The Events Calendar&#8220; link (Thank you Cynthia for reporting this!)</li>\n<li>Tweak &#8211; Switch to using HTTPS by default for interactions with Google Maps API</li>\n<li>Tweak &#8211; Improved filterability of calendar excerpts by introducing the new <code>tribe_events_get_the_excerpt</code> filter hook</li>\n<li>Tweak &#8211; Improved filtering of organizer details when importing by CSV (Props to @Geir for bringing this up!)</li>\n<li>Tweak &#8211; Adjustments for single event view in Twenty Fifteen theme</li>\n<li>Tweak &#8211; Improved performance of query used to test for events without any cost</li>\n<li>Tweak &#8211; Added missing semicolon to a laquo (Props to mwender on GitHub for the fix!)</li>\n<li>Tweak &#8211; Improve the &#8222;stickiness&#8220; of CSV import column mappings (Thank you @jamesgol!)</li>\n<li>Tweak &#8211; Consistency of JSON-LD markup improved (Cheers to @garrettjohnson for the help!)</li>\n<li>Tweak &#8211; Avoid notice-level errors when working with WP CLI on a site where The Events Calendar is also active (Thanks to @sun)</li>\n<li>Tweak &#8211; Corrected the spelling of timezone in the CSV Importer&#8217;s event field</li>\n<li>Tweak &#8211; Updated venue and organizer templates to use the new architecture for attaching custom post types to events</li>\n<li>Tweak &#8211; Move plugin CSS to PostCSS</li>\n<li>Tweak &#8211; Category default view is now set to <code>default</code> in place of hardcoding the current default view in the category base rewrite rule [31907]</li>\n<li>Deprecated &#8211; <code>Tribe__Events__PUE__Checker</code>, <code>Tribe__Events__PUE__Plugin_Info</code>, and <code>Tribe__Events__PUE__Utility</code> classes are deprecated and are replaced by <code>Tribe__PUE__Checker</code>, <code>Tribe__PUE__Plugin_Info</code>, and <code>Tribe__PUE__Utility</code> classes</li>\n<li>Fixed &#8211; Changed the use of <code>have_posts()</code> in the maybe iCal links for the main views that could cause an infinite loop</li>\n<li>Accessibility &#8211; Focus styles added for search fields</li>\n<li>Accessibility &#8211; Add ARIA labels for Month/Day/List sub nav</li>\n<li>Accessibility &#8211; Add ARIA label for events footer sub nav heading</li>\n</ul>\n<h4>[4.1.4] 2016-05-19</h4>\n<ul>\n<li>Fix &#8211; Improve accuracy of list view pagination after switching from month view</li>\n<li>Tweak &#8211; Give the multi-organizer form &#8217;sticky&#8216; properties so values persist even if the submission is initially rejected</li>\n<li>Tweak &#8211; Resolved minor CSS issues in the welcome page</li>\n</ul>\n<h4>[4.1.3] 2016-04-28</h4>\n<ul>\n<li>Fix &#8211; Month View single days are now ordered as follows: sticky events, ongoing multi-day events, all day events, then start time. In other words, all events should be ordered as you&#8217;d expect when viewing events in Month View.</li>\n<li>Fix &#8211; Updated the compatibility of CSV importer with WordPress 4.5 due to a change in the <code>post_status</code> filter. This will help prevent some of the errors you may have seen when importing events using a CSV file.</li>\n<li>Tweak &#8211; Added new event names for AJAX success to the List, Month, and Day views to help The Events Calendar&#8217;s compatibility with our other premium plugins.</li>\n</ul>\n<h4>[4.1.2] 2016-04-11</h4>\n<ul>\n<li>Tweak &#8211; Removed an unneeded hook that attempted to add a query argument to event tag links</li>\n<li>Fix &#8211; Resolved an issue where events marked as &#8222;sticky&#8220; would not display as such in Month View</li>\n<li>Fix &#8211; Dashes, hyphens, or whatever you like to call them in the events archive slug no longer breaks the URL</li>\n<li>Fix &#8211; The notice that pops up when a conflicting &#8222;events&#8220; page exists can now be dismissed</li>\n</ul>\n<h4>[4.1.1.1] 2016-04-07</h4>\n<ul>\n<li>Security &#8211; Tightened up security with post type link filtering (props to Nadal Soler for reporting this issue!)</li>\n<li>Security &#8211; Tightened up security around tribe bar submissions (props to Paul Mynarsky for reporting this issue!)</li>\n</ul>\n<h4>[4.1.1] 2016-03-30</h4>\n<ul>\n<li>Fix &#8211; Resolved bug where array notices were output on single event pages when venues were not set (props to zaxiscreative for reporting this issue!)</li>\n<li>Fix &#8211; Resolved issue where the Month View in mobile sizes retained the long day-of-week names when the abbreviations should have been used (props to Lucy for the bug report!)</li>\n<li>Fix &#8211; Fixed bug where a &#8222;0&#8220; was added to the default Venue name when creating a new event</li>\n<li>Fix &#8211; Fixed notice that caused Ajax requests to fail (props to cgrymala on WP.org for reporting this!)</li>\n<li>Fix &#8211; Removed quotes from around TZID-specified timezones in iCal feeds which causes problems with some parsers (props to factory44 for reporting the issue that lead to this fix)</li>\n<li>Fix &#8211; Resolved various capitalization issues with German translations (props to oheinrich in our forums for pointing out this issue!)</li>\n</ul>\n<h4>[4.1.0.1] 2016-03-17</h4>\n<ul>\n<li>Fix &#8211; Resolved multiple issues with the German <code>de_DE</code> language file that caused a number of site-breaking issues</li>\n</ul>\n<h4>[4.1] 2016-03-15</h4>\n<ul>\n<li>Feature &#8211; Added a tribe_get_venue_website_url() function for fetching Venue website URLs (props to fervorcreative in our forums for this request!)</li>\n<li>Performance &#8211; Lazy-load venue and organizer selector data</li>\n<li>Tweak &#8211; Allow iCal filenames to be filtered via a new filter: tribe_events_ical_feed_filename</li>\n<li>Tweak &#8211; Added a hook to allow single day queries in month view to be filtered: tribe_events_month_daily_events_query_args</li>\n<li>Tweak &#8211; Improved the logic around rebuilding known date ranges</li>\n<li>Tweak &#8211; Always show the &#8222;Merge Duplicates&#8220; button for venues and organizers in the Events General Settings page</li>\n<li>Tweak &#8211; Allow the &#8222;same slug&#8220; notice to be dismissed and fix some text in that message</li>\n<li>Tweak &#8211; Ignore alpha/beta/rc suffixes on version numbers when checking template versions</li>\n<li>Tweak &#8211; Add a filter for month view daily events query: tribe_events_month_daily_events_query_args</li>\n<li>Tweak &#8211; Added a more flexible cost range parsing function</li>\n<li>Tweak &#8211; Obfuscate license keys Events &gt; Help &gt; System Information</li>\n<li>Fix &#8211; Fixed a fatal that sometimes occurred when refreshing the import CSV page</li>\n<li>Fix &#8211; Fixed issue where some characters were not escaped appropriately for month and year formats</li>\n<li>Fix &#8211; Added missing tribe-loading@2x.gif</li>\n<li>Fix &#8211; Fixed a warning produced by passing a DateTime() object into start_date or end_date args of tribe_get_events (props to iamhexcoder for the pull request!)</li>\n<li>Fix &#8211; Fixed bug where events in month view were not always sorted in chronological order</li>\n<li>Fix &#8211; Fixed the System Info URL in Events &gt; Help</li>\n<li>Fix &#8211; Resolved issue where the default country would be &#8222;Array&#8220; if no default country is set</li>\n<li>Fix &#8211; Fixed bug where ajaxurl was sometimes undefined</li>\n</ul>\n<h4>[4.0.7] 2016-03-02</h4>\n<ul>\n<li>Fix &#8211; Resolve display issues on templates with Jetpack and a few themes</li>\n<li>Fix &#8211; Mobile breakpoints on month view working with custom breakpoints</li>\n<li>Fix &#8211; Reordering Venue and Organizer metadata no longer breaks titles</li>\n<li>Fix &#8211; Prevented notices from happening when using <code>the_title</code> filter</li>\n<li>Fix &#8211; iCal links now will respect categories on the first page</li>\n<li>Fix &#8211; Prevent third-party bugs with SEO plugins when inserting events programmatically</li>\n<li>Fix &#8211; Organizer information is showing up again correctly</li>\n<li>Fix &#8211; Modified the add-on license validation method to better explain what is happening</li>\n<li>Fix &#8211; Description on mobile views now have the correct class attribute on HTML</li>\n<li>Fix &#8211; Added missing semicolon on the list navigation for &#8222;&amp;laquo&#8220;</li>\n</ul>\n<h4>[4.0.6] 2016-02-17</h4>\n<ul>\n<li>Tweak &#8211; Adjust injection of event data into the_content from priority 10 to 9 for better 3rd-party plugin compatibility</li>\n<li>Tweak &#8211; Change mobile month view selector to load event details below the calendar for better theme compatibility</li>\n<li>Tweak &#8211; Better handling of edge cases on the post_excerpt for List View</li>\n<li>Tweak &#8211; Removal of generic CSS classes like <code>.updated</code> and <code>.published</code></li>\n<li>Fix &#8211; Prevent Notices from appearing when using <code>tribe_get_organizer()</code></li>\n<li>Fix &#8211; Make HTML Single Event Pages valid</li>\n<li>Fix &#8211; Numeric named categories URLs are now fully working</li>\n<li>Fix &#8211; Event Title now Accepts HTML on Tooltips</li>\n<li>Fix &#8211; Licenses Tab now will work with <code>DISALLOW_FILE_MODS</code> (Props to Sun for spotting and fixing this)</li>\n</ul>\n<h4>[4.0.5] 2016-01-15</h4>\n<ul>\n<li>Security &#8211; Security fix with Venues and Organizers (props to grantdayjames for reporting this!)</li>\n</ul>\n<h4>[4.0.4] 2015-12-23</h4>\n<ul>\n<li>Tweak &#8211; Including the latest embedded Event Tickets release for backward compatibility</li>\n</ul>\n<h4>[4.0.3] 2015-12-22</h4>\n<ul>\n<li>Tweak &#8211; Adjust single-event.php template to allow the &#8222;Time&#8220; title and content to be filterable (Props to Sitecrafting for highlighting this issue!)</li>\n<li>Fix &#8211; Resolved issue with an overly escaped Event Category edit URL that prevented editing categories (Thanks to Ian for the first report of this issue!)</li>\n<li>Fix &#8211; Fixed issue where clicking on columns on the Events listed in the Admin Dashboard were ALWAYS sorted by Event start/end date before sorting by the column selected (Cheers to Corrado for bringing this to our attention!)</li>\n</ul>\n<h4>[4.0.2] 2015-12-16</h4>\n<ul>\n<li>Tweak &#8211; Adding better support for non-numeric cost values on events (Props to Mirja for highlighting this!)</li>\n<li>Tweak &#8211; Avoid notice level errors when advanced events list widget settings are saved (Thank you Johan for reporting the issue!)</li>\n<li>Tweak &#8211; Improve messaging in the same-slug warning message (Thanks to Simon for bringing this to our attention!)</li>\n<li>Tweak &#8211; Hook to Event Tickets to inject event dates into ticket emails</li>\n<li>Tweak &#8211; Adding better support for default venues (Props to Karly for noting this!)</li>\n<li>Tweak &#8211; Improve handling of internationalized slugs (Cheers to Oliver for the help!)</li>\n<li>Fix &#8211; Ensure the past events list displays the correct events when accessed via ajax (Thank you Jesse for highlighting this!)</li>\n<li>Fix &#8211; Support ordering by venue/organizer within event queries (Thank you Doug for bringing this to our attention!)</li>\n<li>Fix &#8211; Fixed issue where events with the same date/time would sometimes be excluded from single-event navigation (Cheers to JeremyEnglert for the tip!)</li>\n<li>Fix &#8211; Resolved issue where events set with the explicit cost of 0 were not showing as &#8222;Free&#8220; (Thank you terrizsolo for reporting this!)</li>\n<li>Fix &#8211; Fixed bug where the datepicker in Twenty Sixteen was really ugly</li>\n<li>Fix &#8211; Fixed bug where using Quick Edit on events caused the table columns in the event list to become jumbled on save (Props to A K for the report!)</li>\n<li>Fix &#8211; Resolved bug where category links sometimes included event category 1 (Thank you Anthony for the original report of this problem!)</li>\n<li>Fix &#8211; Fixed a settings page URL (Props to Kristy for the heads up!)</li>\n</ul>\n<h4>[4.0.1] 2015-12-10</h4>\n<ul>\n<li>Tweak &#8211; Add a warning message for major updates</li>\n<li>Tweak &#8211; For SEO reasons, use an h1 for the title rather than an h2 (props to wpexplorer for this fix)</li>\n<li>Tweak &#8211; Target the calendar view grid in JS using a simpler selector</li>\n<li>Fix &#8211; Resolved WP 4.4 related fatal on the Nav Menu page that prevented the admin footer from rendering/enqueuing JS</li>\n<li>Fix &#8211; Resolved bug where visiting /events/upcoming could sometimes result in an infinite redirect loop</li>\n<li>Fix &#8211; Removed <code>wp_trim_excerpt</code> and use only it&#8217;s powers, fixing the excerpt problem</li>\n<li>Fix &#8211; Fixed bug where the mobile calendar view did not display the date for the date being viewed</li>\n<li>Fix &#8211; Fixed bug where the admin toolbar&#8217;s Events &gt; Import &gt; CSV did not link to the CSV importer page</li>\n<li>Fix &#8211; Fixed issue where the events list in the admin dashboard were not ordered in an intuitive manner</li>\n<li>Fix &#8211; Resolved bug where sorting by event category or tag resulted in an error</li>\n<li>Fix &#8211; Fixed bug where full event content text was displayed where excerpts should have been displayed</li>\n<li>Fix &#8211; Resolved issue where events imported via CSV were excluded from single event navigation</li>\n<li>Fix &#8211; Fixed bug where /events/list would sometimes 404 on a new install</li>\n<li>Fix &#8211; Resolved bug where multiday all-day events displayed the end date as one day later than it should be when the End of Day Cut-off was set to something other than 12am</li>\n<li>Fix &#8211; Timezone handling fixed within generated iCal feeds</li>\n</ul>\n<h4>[4.0] 2015-12-02</h4>\n<ul>\n<li>Security &#8211; A TON of escaping was added to our codebase thanks to the efforts of the always-helpful Andy Fragen (@afragen)</li>\n<li>Feature &#8211; Moved the Ticket framework code into its own plugin (event-tickets)</li>\n<li>Feature &#8211; The event cost now supports more international formats with the addition of the tribe_events_cost_separators filter (Thank you remokrol for bringing this to our attention!)</li>\n<li>Feature &#8211; Added support for the twentysixteen theme</li>\n<li>Feature &#8211; Created a new Add-Ons tab in Settings so that TEC add-ons can have a consolidated settings tab</li>\n<li>Feature &#8211; Improve the date formats UI by providing example output for each selected format</li>\n<li>Tweak &#8211; Restructured TEC&#8217;s core settings code for reusability with other standalone plugins like Event Tickets</li>\n<li>Tweak &#8211; Deprecate old JS event names in favor of a new JS event naming standard. Example: deprecated tribe_ev_runAjax in favor of run-ajax.tribe</li>\n<li>Tweak &#8211; Consolidated import pages for TEC and add-ons</li>\n<li>Tweak &#8211; When suggesting a UTF-8 compatibility CSV formatting tool, point to one that still exists</li>\n<li>Tweak &#8211; Added the ability to filter attendees CSV items via tribe_events_tickets_attendees_csv_items (Props to @bostondv on GitHub for this patch!)</li>\n<li>Tweak &#8211; Updated all excerpt output to use tribe_events_get_the_excerpt() to ensure a consistent display of excerpt content (Cheers to Joseph to pointing this out!)</li>\n<li>Tweak &#8211; Add support for wp_get_document_title in response to the WordPress 4.4 deprecation of wp_title</li>\n<li>Tweak &#8211; Check post creation permissions before letting users create venues and organizers from the event meta box</li>\n<li>Tweak &#8211; Only display data separators between fields that have data when rendering organizers (Thank you Bud for highlighting this issue!)</li>\n<li>Tweak &#8211; When a user cannot create organizers, prevent the auto-selection of organizers when editing an event</li>\n<li>Tweak &#8211; Remove microformat CSS classes from templates and replace with namespaced content-relevant CSS classes</li>\n<li>Tweak &#8211; Changed the &#8222;updated&#8220; CSS class to &#8222;tribe-updated&#8220; so that it is properly namespaced (Thank you vijayrajesh!)</li>\n<li>Tweak &#8211; The Plugin Update Checker will now auto-save valid plugin keys (Thanks to Denon for originally bringing this up!)</li>\n<li>Tweak &#8211; Cleaned up the output of JSON-LD data. Filterable via the new tribe_google_data_markup_json filter</li>\n<li>Tweak &#8211; Drop the use of the generic CSS class &#8222;placeholder&#8220; in favor of &#8222;tribe-event-placeholder&#8220; (Thanks to Marc on the forums!)</li>\n<li>Tweak &#8211; Adjusted the CSS padding on Admin Menu items for Events</li>\n<li>Tweak &#8211; Various codesniffer fixes</li>\n<li>Tweak &#8211; tribe_get_venue_link() no longer echoes if you ask it to return an <a> element</a></li>\n<li>Tweak &#8211; Error messages for empty Venue names</li>\n<li>Tweak &#8211; Improve our responsiveness for the widget mini calendar, allowing smaller sidebars.</li>\n<li>Tweak &#8211; No longer retrieve empty costs when fetching all costs for all events</li>\n<li>Tweak &#8211; Change the priority of bootstrapping the-events-calendar to ensure it occurs before any of the TEC addons in the event some addons are upgraded to v4.0 later than TEC</li>\n<li>Tweak &#8211; Adjust the logic used for adding a noindex/follow tag to event views</li>\n<li>Tweak &#8211; No longer hiding default address fields when default venues are selected when Pro is active</li>\n<li>Fix &#8211; Resolved issue where the iCal feed did not provide an appropriately formatted timezone in some cases (Cheers to Matt for the report!)</li>\n<li>Fix &#8211; Added support for translating some previously untranslatable strings (Props to tititou36, media325, and Stef!)</li>\n<li>Fix &#8211; Prevented duplicate CSS IDs on the mini calendars (Cheers to Corrado for the help!)</li>\n<li>Fix &#8211; Fixed bug causing tribe_get_single_ical_link() and tribe_get_ical_link() to use the same URL when it shouldn&#8217;t (Props to Ben Byrne @drywall on Twitter for the heads up!)</li>\n<li>Fix &#8211; Fixed issue where the &#8222;Add another organizer&#8220; text wasn&#8217;t using the correct singular label (Thank you MIKE for the report!)</li>\n<li>Fix &#8211; Various CSS fixes for twenty(ten-fifteen)</li>\n<li>Fix &#8211; Improved our handling of <code>get_current_screen()</code> across the plugin, avoiding notices and warnings (Thank you Mike for the help!)</li>\n<li>Fix &#8211; Fixed bug where accessing object properties on a non object errored out when saving event meta (props to @dalethedeveloper on GitHub for this fix!)</li>\n<li>Fix &#8211; Fixed bug where organizer ID meta attached sometimes included a blank record. That blank record is no longer returned in tribe_get_organizer_ids()</li>\n<li>Fix &#8211; Fixed error message returned when tabbing away from a blank event name meta box so that it properly indicates that an event name is required (Our thanks to @tapan29bd for this fix!)</li>\n<li>Fix &#8211; Resolved issue where Timezone event start/end date property name strings were malformed which guaranteed a a call to get_post_meta for Timezone date strings</li>\n<li>Fix &#8211; Fixed CSS issue where the month view calendar could sometimes extend beyond the edge of the page when Skeleton Styles were enabled</li>\n<li>Fix &#8211; Fixed a problem where iCal data was generated with incorrect dates in the case of some all days events (thanks to Matt for highlighting this)</li>\n<li>Fix &#8211; Resolved a problem causing the previous month view to appear when it should not</li>\n<li>Fix &#8211; Fixed issue in mobile month view where date was missing from heading</li>\n<li>Fix &#8211; Resolved issue that caused /events/ to 404 if it was visited on a new install before hitting &#8222;Save&#8220; on the Events &gt; Settings &gt; Display page</li>\n<li>Deprecated &#8211; The Tribe__Events__Main::defaultValueReplaceEnabled() method is being deprecated in favor of tribe_get_option(&#8218;defaultValueReplace&#8216;). Schedules for removal in v4.5</li>\n<li>Deprecated &#8211; The tribe_event_link() has been deprecated in favor of tribe_get_event_link(). Scheduled for removal in 5.0</li>\n<li>Deprecated &#8211; The third parameter of tribe_get_organizer_link() (the $echo parameter) has been deprecated and is scheduled for removal in 5.0</li>\n<li>Deprecated &#8211; Tribe__Events__Abstract_Deactivation in favor of Tribe__Abstract_Deactivation</li>\n<li>Deprecated &#8211; Tribe__Events__Admin__Helpers in favor of Tribe__Admin__Helpers</li>\n<li>Deprecated &#8211; Tribe__Events__App_Shop in favor of Tribe__App_Shop</li>\n<li>Deprecated &#8211; Tribe__Events__Autoloader in favor of Tribe__Autoloader</li>\n<li>Deprecated &#8211; Tribe__Events__Cache in favor of Tribe__Cache</li>\n<li>Deprecated &#8211; Tribe__Events__Cache_Listener in favor of Tribe__Cache_Listener</li>\n<li>Deprecated &#8211; Tribe__Events__Changelog_Reader in favor of Tribe__Changelog_Reader</li>\n<li>Deprecated &#8211; Tribe__Events__Credits in favor of Tribe__Credits</li>\n<li>Deprecated &#8211; Tribe__Events__Date_Utils in favor of Tribe__Date_Utils</li>\n<li>Deprecated &#8211; Tribe__Events__Field in favor of Tribe__Field</li>\n<li>Deprecated &#8211; Tribe__Events__Settings in favor of Tribe__Settings</li>\n<li>Deprecated &#8211; Tribe__Events__Settings_Tab in favor of Tribe__Settings_Tab</li>\n<li>Deprecated &#8211; Tribe__Events__Support in favor of Tribe__Support</li>\n<li>Deprecated &#8211; Tribe__Events__Template_Part_Cache in favor of Tribe__Template_Part_Cache</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Attendees_Table in favor of Tribe__Tickets__Attendees_Table in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Metabox in favor of Tribe__Tickets__Metabox in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Ticket_Object in favor of Tribe__Tickets__Ticket_Object in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Tickets in favor of Tribe__Tickets__Tickets in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Tickets__Tickets_Pro in favor of Tribe__Tickets__Tickets_Handler in the event-tickets plugin</li>\n<li>Deprecated &#8211; Tribe__Events__Validate in favor of Tribe__Validate</li>\n<li>Deprecated &#8211; Tribe__Events__View_Helpers in favor of Tribe__View_Helpers</li>\n<li>Deprecated &#8211; Tribe__Events__Main::OPTIONNAME in favor of Tribe__Main::OPTIONNAME</li>\n<li>Deprecated &#8211; Tribe__Events__Main::OPTIONNAMENETWORK in favor of Tribe__Main::OPTIONNAMENETWORK</li>\n<li>Deprecated &#8211; Tribe__Events__Main::addHelpAdminMenuItem() in favor of Tribe__Settings_Manager::add_help_admin_menu_item()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::addNetworkOptionsPage() in favor of Tribe__Settings_Manager::add_network_options_page()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::array_insert_after_key() in favor of Tribe__Main::array_insert_after_key()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::array_insert_before_key() in favor of Tribe__Main::array_insert_before_key()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::debug() in favor of Tribe__Debug::debug()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::defaultValueReplaceEnabled() in favor of tribe_get_option( &#8218;defaultValueReplace&#8216; )</li>\n<li>Deprecated &#8211; Tribe__Events__Main::doHelpTab() in favor of Tribe__Settings_Manager::do_help_tab()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::doNetworkSettingTab() in favor of Tribe__Settings_Manager::do_network_settings_tab()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::doSettingTabs() in favor of Tribe__Settings_Manager::do_setting_tabs()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::do_licenses_tab() in favor of Tribe__Settings_Manager::do_licenses_tab()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getNetworkOption() in favor of Tribe__Settings_Manager::get_network_option()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getNetworkOptions() in favor of Tribe__Settings_Manager::get_network_options()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getNotices() in favor of Tribe__Notices::get()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getOption() in favor of Tribe__Settings_Manager::get_option()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::getOptions() in favor of Tribe__Settings_Manager::get_options()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::have_addons() in favor of Tribe__Settings_Manager::have_addons()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::isNotice() in favor of Tribe__Notices::is_notice()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::pluginDir in favor of Tribe__Events__Main::plugin_dir</li>\n<li>Deprecated &#8211; Tribe__Events__Main::pluginName in favor of Tribe__Events__Main::plugin_name</li>\n<li>Deprecated &#8211; Tribe__Events__Main::pluginPath in favor of Tribe__Events__Main::plugin_path</li>\n<li>Deprecated &#8211; Tribe__Events__Main::pluginUrl in favor of Tribe__Events__Main::plugin_url</li>\n<li>Deprecated &#8211; Tribe__Events__Main::removeNotice() in favor of Tribe__Notices::remove_notice()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::renderDebug() in favor of Tribe__Debug::render()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::saveAllTabsHidden() in favor of Tribe__Settings_Manager::save_all_tabs_hidden()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::setNetworkOptions() in favor of Tribe__Settings_Manager::set_network_options()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::setNotice() in favor of Tribe__Notices::set_notice()</li>\n<li>Deprecated &#8211; Tribe__Events__Main::truncate() in favor of tribe_events_get_the_excerpt()</li>\n<li>Deprecated &#8211; tribe_event_beginning_of_day() in favor of tribe_beginning_of_day()</li>\n<li>Deprecated &#8211; tribe_event_end_of_day() in favor of tribe_end_of_day()</li>\n<li>Deprecated &#8211; tribe_event_format_date() in favor of tribe_format_date()</li>\n<li>Deprecated &#8211; tribe_events_the_notices() in favor of tribe_the_notices()</li>\n</ul>\n<h4>3.x and previous</h4>\n<p>For release notes from the 3.x and older lifecycles, see our <a href=\"https://theeventscalendar.com/category/products/release-notes/\" rel=\"nofollow ugc\">full historical release notes</a>.</p>\n\";s:11:\"screenshots\";s:2069:\"<ol><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-1.png?rev=2633753\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-1.png?rev=2633753\" alt=\"Monatsübersicht mit Hover\"></a><p>Monatsübersicht mit Hover</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-2.png?rev=2633753\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-2.png?rev=2633753\" alt=\"Mobile Views\"></a><p>Mobile Views</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-3.png?rev=2633753\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-3.png?rev=2633753\" alt=\"Einmaliges Event\"></a><p>Einmaliges Event</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-4.png?rev=2633753\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-4.png?rev=2633753\" alt=\"Listenansicht\"></a><p>Listenansicht</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-5.png?rev=2633753\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-5.png?rev=2633753\" alt=\"Event Editor\"></a><p>Event Editor</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-6.png?rev=2633753\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-6.png?rev=2633753\" alt=\"Events Admin Liste\"></a><p>Events Admin Liste</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-7.png?rev=2633753\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-7.png?rev=2633753\" alt=\"Allgemeine Einstellungen\"></a><p>Allgemeine Einstellungen</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-8.png?rev=2633753\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-8.png?rev=2633753\" alt=\"Anzeigeeinstellungen\"></a><p>Anzeigeeinstellungen</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-9.png?rev=2664783\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-9.png?rev=2664783\" alt=\"CSV Importierung\"></a><p>CSV Importierung</p></li></ol>\";s:7:\"reviews\";s:16675:\"<div class=\"review\">\n <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Great plugin</h4>\n                          <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/domino5000/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/155238612ccf661cf89985b8df293882?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/155238612ccf661cf89985b8df293882?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/domino5000/\" class=\"reviewer-name\">domino5000</a> am <span class=\"review-date\">Februar 2, 2022</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">It\'s a very good plugin. We used it on our website before it was closed down and it worked very well for us. We liked different views and how easy it was to setup. We will use it again if we ever need calendar plugin again.</div>\n</div>\n<div class=\"review\">\n     <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Horribly slow support kills any value in this plugin!</h4>\n                         <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"2 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                         </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/ghsteadman/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/397ffc3644eb667db5a966d1cf56edc1?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/397ffc3644eb667db5a966d1cf56edc1?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/ghsteadman/\" class=\"reviewer-name\">ghsteadman</a> am <span class=\"review-date\">Januar 27, 2022</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">My two-star rating is generous and only there because when this plugin works it is a useful tool. That said, I\'ve yet to get through any single month of use without an issue and the support this developer provides is the worst I\'ve seen in any plugin I\'ve ever used, free or paid (Pro).\n\nSupport tickets routinely sit without response for days. Prepare yourself for a tool you don\'t mind being broken for extended periods of time.\n\nIf your business model relies on dependable event scheduling and ticket sales STAY AWAY FROM THIS PLUGIN.</div>\n</div>\n<div class=\"review\">\n    <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Good software, needs quicker support</h4>\n                          <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"3 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                                </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/webfoundry/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/995fb96019a6ef6763769bf476004fc5?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/995fb96019a6ef6763769bf476004fc5?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/webfoundry/\" class=\"reviewer-name\">webfoundry</a> am <span class=\"review-date\">Januar 19, 2022</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">It took too long to get help with my last query which I suspect it because of the transition to the new team... but the software itself has traditionally been very good.</div>\n</div>\n<div class=\"review\">\n    <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Too clunky</h4>\n                            <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/jtpowel/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/caae8021ccdc007cbf9858e528de38cf?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/caae8021ccdc007cbf9858e528de38cf?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/jtpowel/\" class=\"reviewer-name\">jtpowel</a> am <span class=\"review-date\">Januar 6, 2022</span>                        </p>\n          </div>\n        </div>\n        <div class=\"review-body\">It seems like at every turn I was met with a need to delve into the plugin source code and make custom modifications to do simple things.\n\nNeeded to order events by recently added ... you would think ordering the events by ANY attribute would be a simple addition. But no, you can\'t order events that way, and the support just leaves you on your own to muck around in PHP.</div>\n</div>\n<div class=\"review\">\n      <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Bon pluging&#039;s</h4>\n                            <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/petanque2022/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/bade9b4c19bdf5ca2762dc92217ff5e5?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/bade9b4c19bdf5ca2762dc92217ff5e5?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/petanque2022/\" class=\"reviewer-name\">petanque2022</a> am <span class=\"review-date\">Dezember 31, 2021</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Nouveau avec Event\'s Calendar satisfait pour le momment</div>\n</div>\n<div class=\"review\">\n     <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Buenisimo</h4>\n                             <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/andresjreyes/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/e74c385d65d616db895ea4a1ca09de15?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/e74c385d65d616db895ea4a1ca09de15?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/andresjreyes/\" class=\"reviewer-name\">andresjreyes</a> am <span class=\"review-date\">Dezember 22, 2021</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Amigable, intuitivo , se integra muy bien con tema Sydney. gracias y saludos</div>\n</div>\n<div class=\"review\">\n <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Has WPML issues</h4>\n                               <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"2 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                         </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/zukes/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/480b4a31934109406b20434b3e213072?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/480b4a31934109406b20434b3e213072?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/zukes/\" class=\"reviewer-name\">Zukes</a> am <span class=\"review-date\">Dezember 2, 2021</span>                    </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Has WPML issues. Many hours wasted on support and tinkering.</div>\n</div>\n<div class=\"review\">\n <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Gran plugin muy fiable</h4>\n                                <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/rafelpc/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/db5e627b8be59381aa9374c5fa331ef3?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/db5e627b8be59381aa9374c5fa331ef3?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/rafelpc/\" class=\"reviewer-name\">rafelpc</a> am <span class=\"review-date\">November 30, 2021</span>                     </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Lo llevo usando desde hace años, sin problemas, gran trabajo!</div>\n</div>\n<div class=\"review\">\n       <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">i miss the following</h4>\n                          <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/dinosaurier/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9a34540229cbbdb299336ccc22e4e9f8?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9a34540229cbbdb299336ccc22e4e9f8?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/dinosaurier/\" class=\"reviewer-name\">Dinosaurier</a> am <span class=\"review-date\">November 21, 2021</span>                 </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Hallo,\n\nI have installed the free version and miss the following:\nYou have to be able to enter cities first - so that you can also enter several events in one city, and then assign the venues like city hall, pub etc. to the cities. Of course, the search must then also be possible for places (cities) ... I see that this is not possible?\nCu Dino...</div>\n</div>\n<div class=\"review\">\n     <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Buy TEC if you have a high pain threshold</h4>\n                             <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/jasonkibby/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/255eb5a2f4b4e870e6f0e2822567d049?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/255eb5a2f4b4e870e6f0e2822567d049?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/jasonkibby/\" class=\"reviewer-name\">jasonkibby</a> am <span class=\"review-date\">November 18, 2021</span>                    </p>\n          </div>\n        </div>\n        <div class=\"review-body\">My experience with TEC, buying the PRO version and numerous paid plugins has been truly horrible thus far. \n\nSupport?  Fat chance.  You\'ll wait days for insufficient responses if you\'re lucky enough to get them to pay attention at all.  \n\nIf you need a basic event calendar with zero frills, hey great.  Maybe use the free version. \n\nI\'m trying to use TEC for the purpose intended with a quality feature set and paid plugins.\n\nIsn\'t an active paying customer what TEC wants in its sphere?  \n\nApparently not.  \n\nWe\'re not newbies or ornery Karens looking for reasons to complain. \n\nWe are legit customers who were given the impression TEC is a serious company.\n\nWe\'re trying to get a functional project underway and TEC is responding like what you would expect from a fly-by-night grifter on CodeCanyon.  \n\nI have no choice but to find a genuine programmer to expedite what we need.  \n\n\"The Events Calendar\" is awash in problems, the least of which is slow performance with a code crash rate which would give them Nascar pole position.  \n\nWhoever acquired TEC better do some soul searching, and fast.  \n\nThey\'re either a competitive, client-focused vendor or another purveyor of garbage code insufficient for actual businesses.  \n\nIt\'s their choice what they want to be. \n\nThis happens to code firms all the time. A product reaches a certain plateau where the company loses sight of the individual customers which built their enterprise. \n\nIf their product worked and they had anything that smelled like active support, I\'d pay 10x their retail price for the product.  \n\nAs it stands, The Events Calendar ownership is squandering the brand\'s years of goodwill by deploying arrogance, grindingly slow support and hack code as their fresh, new product line. \n\nIt\'s all gross and I am sad to have to write this as a dead serious cautionary tale.  \n\nThe Events Calendar, today, is for low demand hobbyists and not to be taken seriously.\n\nYou\'ve been warned. If you buy TEC before they change their ways from top to bottom, you\'ll be happy if you need very little and very sad if your project places any performance demand on TEC\'s code or staff in any way.  \n\nHeaven help you if you rely on this code or the people behind it for anything which looks like a business project.  </div>\n</div>\n\";}s:13:\"download_link\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.13.0.zip\";s:11:\"screenshots\";a:9:{i:1;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-1.png?rev=2633753\";s:7:\"caption\";s:26:\"Monatsübersicht mit Hover\";}i:2;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-2.png?rev=2633753\";s:7:\"caption\";s:12:\"Mobile Views\";}i:3;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-3.png?rev=2633753\";s:7:\"caption\";s:16:\"Einmaliges Event\";}i:4;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-4.png?rev=2633753\";s:7:\"caption\";s:13:\"Listenansicht\";}i:5;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-5.png?rev=2633753\";s:7:\"caption\";s:12:\"Event Editor\";}i:6;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-6.png?rev=2633753\";s:7:\"caption\";s:18:\"Events Admin Liste\";}i:7;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-7.png?rev=2633753\";s:7:\"caption\";s:24:\"Allgemeine Einstellungen\";}i:8;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-8.png?rev=2633753\";s:7:\"caption\";s:20:\"Anzeigeeinstellungen\";}i:9;a:2:{s:3:\"src\";s:72:\"https://ps.w.org/the-events-calendar/assets/screenshot-9.png?rev=2664783\";s:7:\"caption\";s:16:\"CSV Importierung\";}}s:4:\"tags\";a:5:{s:8:\"calendar\";s:8:\"calendar\";s:5:\"event\";s:5:\"Event\";s:6:\"events\";s:6:\"events\";s:9:\"organizer\";s:9:\"organizer\";s:8:\"schedule\";s:8:\"schedule\";}s:8:\"versions\";a:249:{s:3:\"1.5\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.zip\";s:5:\"1.5.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.1.zip\";s:5:\"1.5.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.2.zip\";s:5:\"1.5.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.3.zip\";s:5:\"1.5.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.4.zip\";s:5:\"1.5.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.5.zip\";s:5:\"1.5.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.5.6.zip\";s:3:\"1.6\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.zip\";s:5:\"1.6.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.1.zip\";s:5:\"1.6.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.2.zip\";s:5:\"1.6.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.3.zip\";s:5:\"1.6.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.4.zip\";s:5:\"1.6.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.1.6.5.zip\";s:3:\"2.0\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.zip\";s:5:\"2.0.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.1.zip\";s:6:\"2.0.10\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.10.zip\";s:6:\"2.0.11\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.11.zip\";s:5:\"2.0.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.2.zip\";s:5:\"2.0.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.3.zip\";s:5:\"2.0.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.4.zip\";s:5:\"2.0.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.5.zip\";s:5:\"2.0.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.6.zip\";s:5:\"2.0.7\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.7.zip\";s:5:\"2.0.8\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.8.zip\";s:5:\"2.0.9\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.2.0.9.zip\";s:3:\"3.0\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.0.zip\";s:5:\"3.0.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.0.1.zip\";s:5:\"3.0.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.0.2.zip\";s:5:\"3.0.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.0.3.zip\";s:3:\"3.1\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.1.zip\";s:4:\"3.10\";s:67:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.10.zip\";s:6:\"3.10.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.10.1.zip\";s:4:\"3.11\";s:67:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.11.zip\";s:6:\"3.11.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.11.1.zip\";s:6:\"3.11.2\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.11.2.zip\";s:4:\"3.12\";s:67:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.zip\";s:6:\"3.12.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.1.zip\";s:6:\"3.12.2\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.2.zip\";s:6:\"3.12.3\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.3.zip\";s:6:\"3.12.4\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.4.zip\";s:6:\"3.12.5\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.5.zip\";s:6:\"3.12.6\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.6.zip\";s:3:\"3.2\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.2.zip\";s:3:\"3.3\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.3.zip\";s:5:\"3.3.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.3.1.zip\";s:3:\"3.4\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.4.zip\";s:5:\"3.4.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.4.1.zip\";s:3:\"3.5\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.5.zip\";s:5:\"3.5.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.5.1.zip\";s:3:\"3.6\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.6.zip\";s:5:\"3.6.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.6.1.zip\";s:3:\"3.7\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.7.zip\";s:3:\"3.8\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.8.zip\";s:5:\"3.8.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.8.1.zip\";s:3:\"3.9\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.9.zip\";s:5:\"3.9.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.9.1.zip\";s:5:\"3.9.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.9.2.zip\";s:5:\"3.9.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.9.3.zip\";s:3:\"4.0\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.zip\";s:5:\"4.0.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.1.zip\";s:5:\"4.0.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.2.zip\";s:5:\"4.0.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.3.zip\";s:5:\"4.0.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.4.zip\";s:5:\"4.0.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.5.zip\";s:5:\"4.0.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.6.zip\";s:5:\"4.0.7\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.0.7.zip\";s:3:\"4.1\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.zip\";s:7:\"4.1.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.0.1.zip\";s:5:\"4.1.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.1.zip\";s:7:\"4.1.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.1.1.zip\";s:5:\"4.1.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.2.zip\";s:5:\"4.1.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.3.zip\";s:5:\"4.1.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.1.4.zip\";s:3:\"4.2\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.zip\";s:5:\"4.2.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.1.zip\";s:7:\"4.2.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.1.1.zip\";s:5:\"4.2.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.2.zip\";s:5:\"4.2.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.3.zip\";s:5:\"4.2.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.4.zip\";s:5:\"4.2.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.5.zip\";s:5:\"4.2.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.6.zip\";s:5:\"4.2.7\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.2.7.zip\";s:3:\"4.3\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.zip\";s:7:\"4.3.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.0.2.zip\";s:5:\"4.3.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.1.zip\";s:7:\"4.3.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.1.2.zip\";s:7:\"4.3.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.2.1.zip\";s:7:\"4.3.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.3.1.zip\";s:7:\"4.3.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.4.1.zip\";s:7:\"4.3.4.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.4.3.zip\";s:7:\"4.3.5.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.3.5.1.zip\";s:3:\"4.4\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.zip\";s:7:\"4.4.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.0.2.zip\";s:5:\"4.4.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.1.zip\";s:7:\"4.4.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.1.2.zip\";s:7:\"4.4.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.2.1.zip\";s:7:\"4.4.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.3.1.zip\";s:7:\"4.4.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.4.1.zip\";s:7:\"4.4.5.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.5.1.zip\";s:3:\"4.5\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.zip\";s:7:\"4.5.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.0.1.zip\";s:7:\"4.5.0.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.0.3.zip\";s:7:\"4.5.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.1.1.zip\";s:6:\"4.5.10\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.10.zip\";s:8:\"4.5.10.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.10.2.zip\";s:8:\"4.5.11.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.11.1.zip\";s:6:\"4.5.12\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.zip\";s:8:\"4.5.12.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.1.zip\";s:8:\"4.5.12.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.2.zip\";s:8:\"4.5.12.4\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.12.4.zip\";s:8:\"4.5.13.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.13.1.zip\";s:5:\"4.5.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.2.zip\";s:7:\"4.5.2.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.2.2.zip\";s:7:\"4.5.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.3.1.zip\";s:7:\"4.5.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.4.1.zip\";s:7:\"4.5.5.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.5.1.zip\";s:7:\"4.5.6.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.6.1.zip\";s:7:\"4.5.7.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.7.1.zip\";s:5:\"4.5.8\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.8.zip\";s:7:\"4.5.8.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.8.2.zip\";s:7:\"4.5.9.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.5.9.1.zip\";s:7:\"4.6.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.0.1.zip\";s:7:\"4.6.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.1.1.zip\";s:6:\"4.6.10\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.10.zip\";s:8:\"4.6.10.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.10.2.zip\";s:6:\"4.6.11\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.11.zip\";s:8:\"4.6.11.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.11.2.zip\";s:8:\"4.6.12.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.12.1.zip\";s:8:\"4.6.13.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.13.1.zip\";s:6:\"4.6.14\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.14.zip\";s:8:\"4.6.14.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.14.2.zip\";s:8:\"4.6.15.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.15.1.zip\";s:8:\"4.6.16.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.16.1.zip\";s:8:\"4.6.17.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.17.1.zip\";s:8:\"4.6.18.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.18.1.zip\";s:8:\"4.6.19.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.19.1.zip\";s:7:\"4.6.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.2.1.zip\";s:6:\"4.6.20\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.20.zip\";s:8:\"4.6.20.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.20.2.zip\";s:8:\"4.6.21.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.21.1.zip\";s:6:\"4.6.22\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.22.zip\";s:8:\"4.6.22.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.22.2.zip\";s:8:\"4.6.23.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.23.1.zip\";s:6:\"4.6.24\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.24.zip\";s:8:\"4.6.24.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.24.2.zip\";s:8:\"4.6.25.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.25.1.zip\";s:6:\"4.6.26\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.26.zip\";s:8:\"4.6.26.2\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.26.2.zip\";s:7:\"4.6.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.3.1.zip\";s:7:\"4.6.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.4.1.zip\";s:7:\"4.6.5.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.5.1.zip\";s:7:\"4.6.6.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.6.1.zip\";s:7:\"4.6.7.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.7.1.zip\";s:7:\"4.6.8.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.8.1.zip\";s:7:\"4.6.9.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.9.1.zip\";s:3:\"4.7\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.zip\";s:7:\"4.7.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.0.2.zip\";s:7:\"4.7.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.1.1.zip\";s:7:\"4.7.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.2.1.zip\";s:7:\"4.7.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.3.1.zip\";s:7:\"4.7.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.7.4.1.zip\";s:3:\"4.8\";s:66:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.8.zip\";s:7:\"4.8.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.8.0.2.zip\";s:7:\"4.8.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.8.1.1.zip\";s:7:\"4.8.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.8.2.1.zip\";s:7:\"4.9.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.1.zip\";s:7:\"4.9.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.2.zip\";s:7:\"4.9.0.4\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.0.4.zip\";s:5:\"4.9.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.1.zip\";s:7:\"4.9.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.1.2.zip\";s:8:\"4.9.10.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.10.1.zip\";s:8:\"4.9.11.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.11.1.zip\";s:8:\"4.9.12.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.12.1.zip\";s:8:\"4.9.13.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.13.1.zip\";s:8:\"4.9.14.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.14.1.zip\";s:7:\"4.9.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.2.1.zip\";s:5:\"4.9.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.zip\";s:7:\"4.9.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.1.zip\";s:7:\"4.9.3.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.3.3.zip\";s:7:\"4.9.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.4.1.zip\";s:7:\"4.9.5.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.5.1.zip\";s:7:\"4.9.6.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.6.1.zip\";s:7:\"4.9.7.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.7.1.zip\";s:7:\"4.9.8.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.8.1.zip\";s:7:\"4.9.9.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.9.9.1.zip\";s:5:\"5.0.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.0.zip\";s:7:\"5.0.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.0.1.zip\";s:7:\"5.0.0.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.0.3.zip\";s:7:\"5.0.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.1.1.zip\";s:7:\"5.0.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.1.2.zip\";s:5:\"5.0.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.2.zip\";s:7:\"5.0.2.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.2.2.zip\";s:7:\"5.0.2.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.2.3.zip\";s:5:\"5.0.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.3.zip\";s:7:\"5.0.3.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.3.2.zip\";s:7:\"5.0.3.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.0.3.3.zip\";s:7:\"5.1.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.0.1.zip\";s:7:\"5.1.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.0.2.zip\";s:7:\"5.1.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.1.1.zip\";s:7:\"5.1.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.1.2.zip\";s:7:\"5.1.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.2.1.zip\";s:7:\"5.1.2.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.2.2.zip\";s:5:\"5.1.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.3.zip\";s:7:\"5.1.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.3.1.zip\";s:5:\"5.1.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.4.zip\";s:7:\"5.1.4.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.4.1.zip\";s:5:\"5.1.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.5.zip\";s:7:\"5.1.5.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.5.1.zip\";s:5:\"5.1.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.6.zip\";s:7:\"5.1.6.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.6.1.zip\";s:6:\"5.10.0\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.10.0.zip\";s:6:\"5.10.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.10.1.zip\";s:6:\"5.11.0\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.11.0.zip\";s:6:\"5.12.0\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.12.0.zip\";s:6:\"5.12.1\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.12.1.zip\";s:6:\"5.12.2\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.12.2.zip\";s:6:\"5.12.3\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.12.3.zip\";s:6:\"5.12.4\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.12.4.zip\";s:6:\"5.13.0\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.13.0.zip\";s:5:\"5.2.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.2.0.zip\";s:7:\"5.2.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.2.0.1.zip\";s:5:\"5.2.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.2.1.zip\";s:7:\"5.2.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.2.1.1.zip\";s:7:\"5.2.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.2.1.2.zip\";s:5:\"5.3.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.0.zip\";s:7:\"5.3.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.0.1.zip\";s:5:\"5.3.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.1.zip\";s:7:\"5.3.1.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.1.1.zip\";s:7:\"5.3.1.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.1.2.zip\";s:5:\"5.3.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.zip\";s:7:\"5.3.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.1.zip\";s:7:\"5.3.2.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.2.zip\";s:5:\"5.4.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.zip\";s:7:\"5.4.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.1.zip\";s:7:\"5.4.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.2.zip\";s:7:\"5.4.0.3\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.4.0.3.zip\";s:5:\"5.5.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.5.0.zip\";s:7:\"5.5.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.5.0.1.zip\";s:7:\"5.5.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.5.0.2.zip\";s:5:\"5.6.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.6.0.zip\";s:5:\"5.7.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.7.0.zip\";s:5:\"5.7.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.7.1.zip\";s:5:\"5.8.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.8.0.zip\";s:5:\"5.8.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.8.1.zip\";s:5:\"5.8.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.8.2.zip\";s:5:\"5.9.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.9.0.zip\";s:5:\"5.9.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.9.1.zip\";s:5:\"5.9.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.9.2.zip\";s:5:\"trunk\";s:62:\"https://downloads.wordpress.org/plugin/the-events-calendar.zip\";}s:11:\"donate_link\";s:18:\"https://evnt.is/29\";s:7:\"banners\";a:2:{s:3:\"low\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";s:4:\"high\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";}}s:13:\"wordpress-seo\";a:25:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:13:\"wordpress-seo\";s:7:\"version\";s:4:\"18.0\";s:6:\"author\";s:43:\"<a href=\"https://yoa.st/1uk\">Team Yoast</a>\";s:14:\"author_profile\";s:43:\"https://profiles.wordpress.org/joostdevalk/\";s:12:\"contributors\";a:3:{s:5:\"yoast\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/yoast/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/2d6543ef6d3e1336c47d008809b87816?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Yoast\";}s:11:\"joostdevalk\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/joostdevalk/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/f08c3c3253bf14b5616b4db53cea6b78?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Joost de Valk\";}s:9:\"omarreiss\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/omarreiss/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/86aaa606a1904e7e0cf9857a663c376e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Omar Reiss\";}}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:6:\"5.6.20\";s:6:\"rating\";i:96;s:7:\"ratings\";a:5:{i:5;i:25773;i:4;i:619;i:3;i:178;i:2;i:126;i:1;i:732;}s:11:\"num_ratings\";i:27428;s:15:\"support_threads\";i:457;s:24:\"support_threads_resolved\";i:363;s:15:\"active_installs\";i:5000000;s:12:\"last_updated\";s:21:\"2022-01-25 8:07am GMT\";s:5:\"added\";s:10:\"2010-10-11\";s:8:\"homepage\";s:18:\"https://yoa.st/1uj\";s:8:\"sections\";a:6:{s:11:\"description\";s:12477:\"<h3>Yoast SEO: Das #1 WordPress SEO Plugin</h3>\n<p>Seit 2008 hat Yoast SEO Millionen von Websites geholfen <strong>höher bei Suchmaschinen gelistet zu werden</strong>.</p>\n<p>Das Ziel von Yoast ist <strong>SEO für alle</strong>. Die Benutzer unseres Plugins reichen von der Bäckerei um die Ecke bis zu einigen der meistbesuchten Websites auf dem Planeten.</p>\n<p>Das kostenlose Yoast SEO enthält alles, was du zum Verwalten deiner SEO brauchst; das Plugin <a href=\"https://yoa.st/1v8\" rel=\"nofollow ugc\">Yoast SEO Premium</a> und seine Erweiterungen schalten noch mehr Werkzeuge und Funktionen frei.</p>\n<h4>HÄNG DEN WETTBEWERB AB</h4>\n<p>Um bei Suchmaschinen hoch eingestuft zu werden, musst du die Konkurrenz hinter dir lassen. Du musst eine bessere, schnellere, stärkere Website haben als die, die das gleiche verkaufen oder das gleiche tun wie du.</p>\n<p>Yoast SEO ist das am häufigsten verwendete WordPress-SEO-Plugin und hat Millionen von Menschen wie dir geholfen, weiterzukommen und vorne zu bleiben.</p>\n<h4>WIR KÜMMERN UNS UM DEINE WORDPRESS-SEO</h4>\n<p>Yoast SEO ist vollgepackt mit Funktionen, die Besuchern und Suchmaschinen dabei helfen, das Meiste aus deiner Website herauszuholen. Zu unseren Favoriten gehören:</p>\n<ul>\n<li>Automatisierte technische SEO-Verbesserungen wie <strong>kanonische URLs</strong> and <strong>Meta-Tags</strong>.</li>\n<li>Erweiterte <strong>XML-Sitemaps</strong>; dies macht es Google leicht, die Struktur deiner Website zu verstehen.</li>\n<li>Beschreibungsvorlagen für Titel und Meta für <strong>besseres Branding</strong> und konsistente Snippets in den Suchergebnissen.</li>\n<li>Eine tiefe Schema.org-Integration, die deine <strong>Chancen auf Rich Results erhöht</strong>, indem sie Suchmaschinen hilft, deine Inhalte besser zu verstehen.</li>\n<li>Volle Kontrolle über <strong>Website-Breadcrumbs</strong>, sodass Benutzer und Suchmaschinen immer wissen, wo sie sich befinden.</li>\n<li><strong>Schnellere Ladezeiten</strong> für deine gesamte Website dank einer innovativen Methode zur Verwaltung von Daten in WordPress.</li>\n<li><strong>[Premium]</strong> Unterstützung für unsere <a href=\"https://yoa.st/1v8\" rel=\"nofollow ugc\">Yoast-SEO-Premium</a>-Benutzer.</li>\n<li><strong>[Premium]</strong> Die Möglichkeit, Yoast SEO um <a href=\"https://yoa.st/1uv\" rel=\"nofollow ugc\">Nachrichten-SEO</a>, <a href=\"https://yoa.st/1uw\" rel=\"nofollow ugc\">Video-SEO</a>, <a href=\"https://yoa.st/1uu\" rel=\"nofollow ugc\">Lokal-SEO</a> and <a href=\"https://yoa.st/3rh\" rel=\"nofollow ugc\">WooCommerce-SEO</a> zu erweitern.</li>\n</ul>\n<h4>SCHREIBE MIT YOAST SEO TOLLE INHALTE</h4>\n<p>Wir wissen, dass Content King ist. Und deswegen ist Yoast SEO berühmt für seine  <strong>marktführende Inhalts- und SEO-Analyse</strong>. Yoast SEO bietet dir: </p>\n<ul>\n<li><strong>SEO-Analyse</strong>: Ein unschätzbares Werkzeug beim Schreiben von SEO-freundlichen Inhalten unter Berücksichtigung der richtigen (Fokus-)Schlüsselwörter.</li>\n<li><strong>Lesbarkeitsanalyse</strong>: Stellt sicher, dass Menschen und Suchmaschinen deine Inhalte lesen und verstehen können.</li>\n<li><strong>Full language support</strong> for: English, German, French, Dutch, Spanish, Italian, Russian, Indonesian, Polish, Portuguese, Arabic, Swedish, Hebrew, Hungarian, Turkish, Czech, Norwegian, Slovak and Greek.</li>\n<li>Eine <strong>Google-Vorschauy</strong>, die dir zeigt, wie deine Listings in den Suchergebnissen aussehen werden. Sogar auf mobilen Geräten!</li>\n<li><strong>Innovative Schema-Blocks</strong> für den Block-Editor für WordPress, damit deine FAQ- und How-To-Inhalte direkt in den Suchergebnissen erscheinen können. Plus ein Breadcrumbs-Block, um deine Benutzer zu leiten.</li>\n<li><strong>[Premium] Interne-Links-Blöcke</strong>, mit denen du die Struktur deiner Inhalte leicht verbessern kannst. Füg einfach einen <strong>Inhaltsverzeichnis-Block</strong>, einen <strong>Verwandte-Links-Block</strong>, einen <strong>Unterseiten-</strong>Block oder einen <strong>Geschwister-Block</strong> hinzu! Wir fügen laufend neue Blöcke hinzu, mit denen du deine Website-Struktur einfach verbessern kannst.</li>\n<li><strong>[Premium]</strong> Social previews to show you how your content will be shown on Twitter and Facebook. Plus: Social Appearance Templates to guarantee a consistent look.</li>\n<li><strong>[Premium]</strong> Das Insights-Tool zeigt dir, wo die Schwerpunkte deines Textes liegen. So kannst du prüfen, ob der Inhalt deines Textes mit deinen Schlüsselwörtern übereinstimmt.</li>\n<li><strong>[Premium]</strong> Optimiere deine Inhalte für Synonyme und verwandte Key Phrases.</li>\n<li><strong>[Premium]</strong> Optimiere deinen Beitrag für verschiedene Formen deiner Schlagwörter wie Singular und Plural. Aber auch unterschiedliche Verbformen, Synonyme und verwandte Key Phrases. Ergibt natürlichere Inhalte!</li>\n<li><strong>[Premium]</strong> Automatische Vorschläge für interne Links: Schreibe deinen Artikel und lassen dir geeignete Beiträge anzeigen, auf die du verlinken kannst.</li>\n<li><strong> [Premium] </strong> Ein Filter für verwaiste Inhalte zum Erkennen von Posts, auf die keine Links verweisen!</li>\n<li><strong>[Premium]</strong> SEO workouts to make working on your site as easy as ABC. These SEO workflows will get your site into shape in no time!</li>\n</ul>\n<h4>HALTE DEINE WEBSITE PERFEKT IN FORM</h4>\n<p>Ob du ein Online-Gründer, Blogger oder Content Creator, ein Entwickler, ein (WordPress-)SEO-Experte oder Firmeninhaber bist – Yoast SEO hilft dir, deine Website in perfektem Zustand zu halten mit:</p>\n<ul>\n<li>Tuning am Unterbau deiner Website, damit du an der Erstellung großartiger Inhalte arbeiten kannst!</li>\n<li>Bietet dir <strong>Cornerstone-Inhalte</strong> und Funktionen zur <strong>internen Verlinkung</strong>, die dir helfen, deine Website-Struktur im Handumdrehen zu optimieren.</li>\n<li>Übersetzen deiner Inhalte in strukturierte Daten wo immer möglich, um Suchmaschinen dabei zu helfen, deine Website zu verstehen.</li>\n<li>Unterstützt dich bei der Verwaltung deines Teams: mit unseren <strong>SEO-Rollen</strong> kannst du Kolleg:innen Zugriff auf bestimmte Abschnitte des Yoast-SEO-Plugins gewähren.</li>\n<li><strong>[Premium] Erstellt automatisch Redirects</strong>, wenn sich URLs ändern oder Seiten gelöscht werden, und bietet Werkzeuge, um Weiterleitungen zu verwalten oder zu erstellen.</li>\n<li><strong>[Premium]</strong> Vorschau auf Soziale Medien: verwalte die Art und Weise, wie deine Seite in sozialen Netzwerken wie Facebook und Twitter geteilt wird.</li>\n</ul>\n<h4>VERTRAU DEN EXPERTEN</h4>\n<p>Yoast wird von einem Team aus erfahrenen Entwicklern, Testern, Softwarearchitekten und SEO-Beratern unterstützt. Sie arbeiten ständig daran, auf dem neuesten Stand von WordPress-SEO zu bleiben und das Plugin mit jeder Veröffentlichung zu verbessern.</p>\n<p>Yoast SEO ist das <strong>einzige WordPress SEO-Plugin, das von weltbekannten SEO-Experten </strong> entwickelt wird.</p>\n<h3>PREMIUM-SUPPORT HOLEN</h3>\n<p>Das Yoast-Team bietet normale Unterstützung in den WordPress.org-Foren. Du wirst aber hoffentlich verstehen, dass wir unsere Premium-Kunden priorisieren. Der individuelle E-Mail-Support ist für Menschen verfügbar, die Yoast SEO Premium gekauft haben.</p>\n<p>Hast du gewusst, dass <a href=\"https://yoa.st/1v8\" rel=\"nofollow ugc\">Yoast SEO Premium</a> eine Menge Extra-Funktionen bietet:</p>\n<ul>\n<li>Ein <strong>Redirect-Manager</strong>, der „404-Seite-nicht-gefunden“-Fehler verhindert</li>\n<li>Mach dir beim Optimieren keine Sorgen wegen Überoptimierung dank der <strong>intelligenten Wortformen-Erkennung</strong>, die in mehreren Sprachen verfügbar ist.</li>\n<li><strong>Interne-Links-Blöcke</strong>, um deine Website einfach zu strukturieren.</li>\n<li><strong>Vorschläge für interne Verlinkung</strong> während du schreibst.</li>\n<li>In der <strong>Google-Vorschau</strong> und <strong>Social-Vorschau</strong> kannst du sehen, wie deine Inhalte in Suchergebnisse und beim Teilen über Social Media aussehen werden.</li>\n<li><strong>Cornerstone-Content-Häkchen</strong> verweisen Suchmaschinen auf deine wichtigsten Seiten.</li>\n<li>Verbinde Yoast SEO mit Zapier, um einfach <strong>Zaps zu erstellen, um deine veröffentlichten Beiträge bei über 2000+ Plattformen wie Twitter, Facebook und viele mehr zu teilen</strong>.</li>\n</ul>\n<p>Wenn du es ernst meinst mit deinem WordPress-SEO, installier das <a href=\"https://yoa.st/1v8\" rel=\"nofollow ugc\">Plugin Yoast SEO Premium</a>! <strong>Kostet ein bisschen, spart jede Menge Zeit!</strong></p>\n<h4>UNSERE ERWEITERUNGEN, UM DEINE WORDPRESS-SEO WEITER ZU VERBESSERN</h4>\n<p>Schau dir diese SEO-Add-ons von Yoast an:</p>\n<ul>\n<li><strong><a href=\"https://yoa.st/1uu\" rel=\"nofollow ugc\">Yoast Local SEO</a></strong> optimiert deine Website für ein lokales Publikum.</li>\n<li><strong><a href=\"https://yoa.st/1uw\" rel=\"nofollow ugc\">Yoast-Video-SEO</a></strong> stellt sicher, dass Google versteht, worum es in deinem Video geht. Das erhöht die Chancen für ein Auftauchen in den Video-Ergebnissen.</li>\n<li><strong><a href=\"https://yoa.st/1uv\" rel=\"nofollow ugc\">Yoast News SEO</a></strong> für Nachrichten-Websites, die ihre Sichtbarkeit und Leistung in Google News verbessern möchten.</li>\n<li><strong><a href=\"https://yoa.st/3rh\" rel=\"nofollow ugc\">WooCommerce-SEO</a></strong> für alle Online-Shops, die in den Suchergebnissen und sozialen Medien besser abschneiden wollen.</li>\n</ul>\n<p>Diese Erweiterungen funktionieren gut mit der kostenlosen Version von Yoast SEO. Die Premium-Erweiterungen bieten allerdings auch Support rund um die Uhr.</p>\n<p>Oh, und nicht zu vergessen: Unsere <strong><a href=\"https://yoa.st/3ri\" rel=\"nofollow ugc\">Yoast Academy</a></strong> ist für alle Gründer, Blogger und überhaupt alle, die mehr über die Optimierung von Websites, die Verbesserung deiner WordPress-SEO und darüber lernen wollen, wie du deine Inhalten auf die nächste Ebene bekommst!</p>\n<h3>INTEGRATIONEN</h3>\n<p>Yoast SEO arbeitet problemlos mit vielen Themes und Plugins zusammen. Besonders gut mit:</p>\n<ul>\n<li>Der <a href=\"https://wordpress.org/support/article/wordpress-editor/\">WordPress-Block-Editor</a> (alias „Gutenberg“).</li>\n<li>Das offizielle <a href=\"https://wordpress.org/plugins/amp/\">AMP</a>-Plugin, das deine Templates so verändert, dass diese das „AMP“-HTML-Format verwenden.</li>\n<li>Das Google-Plugin <a href=\"https://wordpress.org/plugins/web-stories/\">Web Stories</a>, das dir beim Erzählen von „<a href=\"https://amp.dev/about/stories/\" rel=\"nofollow ugc\">Web-Geschichten</a>“ hilft.</li>\n<li>Das Plugin <a href=\"https://wordpress.org/plugins/advanced-custom-fields/\">Advanced Custom Fields</a>, wenn du auch das Plugin <a href=\"https://wordpress.org/plugins/acf-content-analysis-for-yoast-seo/\">ACF Content Analysis for Yoast SEO</a> aktivierst.</li>\n<li>Der Website Builder <a href=\"https://wordpress.org/plugins/elementor/\"> Elementor </a>.</li>\n<li><a href=\"https://zapier.com/apps/yoast-seo/integrations\" rel=\"nofollow ugc\">Zapier</a> hilft dir, deinen Veröffentlichungsablauf zu automatisieren.</li>\n<li><a href=\"https://wordpress.org/plugins/wp-search-with-algolia/\">Algolia</a> integration to improve the quality of your site search.</li>\n</ul>\n<h3>FEHLERBERICHTE</h3>\n<p>Möchtest du einen Fehler in Yoast SEO melden? Am besten machst du das im WordPress-SEO-<a href=\"https://github.com/Yoast/wordpress-seo\" rel=\"nofollow ugc\">GitHub-Repository</a>. Beachte bitte, dass GitHub kein Supportforum ist und Tickets geschlossen werden, wenn sie nicht die Voraussetzungen für einen Bug erfüllen.</p>\n<h3>WEITERLESEN</h3>\n<p>Willst du mehr Informationen über die Suchmaschinenoptimierung und Yoast SEO? Schaue dir dies mal an:</p>\n<ul>\n<li>Die offizielle Website zum <a href=\"https://yoa.st/1v8\" rel=\"nofollow ugc\">Yoast SEO Plugin</a>.</li>\n<li>Das <a href=\"https://yoa.st/1va\" rel=\"nofollow ugc\">Yoast SEO Hilfe-Center</a>.</li>\n<li><a href=\"https://yoa.st/1v6\" rel=\"nofollow ugc\">WordPress SEO &#8211; Das umfassende Handbuch von Yoast</a>.</li>\n<li>Andere <a href=\"https://yoa.st/1v9\" rel=\"nofollow ugc\">WordPress-Plugins</a> vom Team Yoast.</li>\n<li>Folge Yoast auch bei <a href=\"https://facebook.com/yoast\" rel=\"nofollow ugc\">Facebook</a>, <a href=\"https://www.instagram.com/yoast/\" rel=\"nofollow ugc\">Instagram</a> und <a href=\"https://twitter.com/yoast\" rel=\"nofollow ugc\">Twitter</a>.</li>\n</ul>\n\";s:12:\"installation\";s:1080:\"<p>Starting with Yoast SEO consists of just two steps: installing and setting up the plugin. Yoast SEO is designed to work with your site’s specific needs, so don’t forget to go through the Yoast SEO configuration workout as explained in the ‘after activation’ step!</p>\n<h3>YOAST SEO MIT WORDPRESS INSTALLIEREN</h3>\n<ol>\n<li>Geh zur Plugins-Seite in deinem Dashboard und wähle „Installieren“;</li>\n<li>Nach &#8218;Yoast SEO&#8216; suchen;</li>\n<li>Aktiviere Yoast SEO von deiner Plugins-Seite;</li>\n<li>Gehe nach unten zu ‚Nach der Aktivierung‘.</li>\n</ol>\n<h3>YOAST SEO MANUELL INSTALLIEREN</h3>\n<ol>\n<li>Lade den Ordner „wordpress-seo“ in das Verzeichnis /wp-content/plugins/ hoch;</li>\n<li>Aktiviere das Plugin Yoast SEO im Menü ‚Plugins‘ in WordPress;</li>\n<li>Gehe nach unten zu ‚Nach der Aktivierung‘.</li>\n</ol>\n<h3>NACH DER AKTIVIERUNG</h3>\n<ol>\n<li>You should see (a notice to start) the Yoast SEO configuration workout;</li>\n<li>Go through the configuration workout and set up the plugin for your site;</li>\n<li>Du bist fertig!</li>\n</ol>\n\";s:3:\"faq\";s:6196:\"\n<dt id=\'how%20do%20the%20xml%20sitemaps%20in%20the%20yoast%20seo%20plugin%20work%3F\'>\nWie funktionieren die XML Sitemaps im Yoast-SEO-Plugin?\n</h4>\n<p>\n<p>Eine XML-Sitemap kann für SEO nützlich sein, weil Google wichtige Seiten einer Website auch dann sehr schnell erfassen kann, wenn die interne Verlinkung eine Website nicht fehlerfrei ist.<br />\nDer Sitemap-Index und einzelne Sitemaps werden automatisch aktualisiert, wenn du Inhalte hinzufügst oder entfernst, und enthalten die Beitragstypen, die Suchmaschinen indexieren sollen. Als „noindex“ markierte Beitragstypen erscheinen nicht in der Sitemap. <a href=\"https://yoa.st/3qt\" rel=\"nofollow ugc\">Lerne mehr über XML-Sitemaps</a>.</p>\n</p>\n<dt id=\'how%20can%20i%20add%20my%20website%20to%20google%20search%20console%3F\'>\nWie kann ich meine Website bei der Google-Search-Console hinzufügen?\n</h4>\n<p>\n<p>Du kannst deine Website leicht zur Google Search Console hinzufügen.<br />\n1. Lege ein Google-Search-Console-Konto an und melde dich dort an.<br />\n2. Im Such-Drop-Down klick auf „Eine Property hinzufügen“.<br />\n3. Gib die URL deiner Website ein und klick auf „Weiter“.<br />\n4. Klick den Pfeil neben „HTML tag“ an, um die Option zu erweitern.<br />\n5. Kopiere den Meta-Tag.<br />\n6. Melde dich bei deiner WordPress-Website an.<br />\n7. Klick im Dashboard auf „SEO“.<br />\n8. Klick auf „Allgemein“.<br />\n9. Klick auf den Tab „Webmaster Tools“.<br />\n10. Füge den Code ins Google-Feld ein und klick „Änderungen speichern“.<br />\n11. Geh zurück zur Google Search Console und klick „Verifizieren“.</p>\n<p>Wenn du detailliertere Schritte brauchst, besuche bitte <a href=\"https://yoa.st/3qu\" rel=\"nofollow ugc\">unseren Artikel in der Wissensdatenbank</a>.</p>\n</p>\n<dt id=\'how%20do%20i%20implement%20yoast%20seo%20breadcrumbs%3F\'>\nWie kann ich Yoast-SEO-Breadcrumbs implementieren?\n</h4>\n<p>\n<p>Die Schritte unten sind eine temporäre Lösung, weil händische Änderungen an Theme-Dateien durch künftige Theme-Updates überschrieben werden könnten. Kontaktiere bitte den Theme-Entwickler für eine dauerhafte Lösung. Wir haben einen Artikel über die <a href=\"https://yoa.st/3qv\" rel=\"nofollow ugc\">Bedeutung von Breadcrumbs für SEO</a> geschrieben.</p>\n<p>Um die <a href=\"https://yoa.st/3qw\" rel=\"nofollow ugc\">Breadcrumbs</a>-Funktion von Yoast SEO zu implementieren, musst du dein Theme anpassen. Wir empfehlen, vor jeder Änderung an Theme-Dateienein Backup zu machen. Dein Hoster kann dir dabei behilflich sein.<br />\nKopiere den folgenden Code da in dein Theme, wo du die Breadcrumbs haben möchtest. Wenn du nicht sicher bist, musst du mit der Platzierung experimentieren:</p>\n<pre><code>&lt;?php\nif ( function_exists( \'yoast_breadcrumb\' ) ) {\n    yoast_breadcrumb( \'&lt;p id=\"breadcrumbs\"&gt;\',\'&lt;/p&gt;\' );\n}\n?&gt;\n</code></pre>\n<p>Typischerweise könntest du deine Breadcrumbs in deiner <code>single.php</code> und/oder <code>page.php</code> direkt über dem Seitentitel platzieren. Eine bei manchen Themes besonders einfache andere Möglichkeit wäre, den Code ganz am Ende der <code>header.php</code> einzufügen.</p>\n<p>In den meisten Nicht-WooTheme-Themes sollte dieser Code-Schnipsel nicht zu deiner <code>functions.php</code> hinzugefügt werden.<br />\nAlternativ kannst du den Breadcrumb-Shortcode manuell zu einzelnen Beiträgen oder Seiten hinzufügen: <code>[wpseo_breadcrumb]</code></p>\n<p>Wenn du mehr Details oder eine Schritt-für-Schritt-Anleitung benötigst, lies unsere <a href=\"https://yoa.st/3qx\" rel=\"nofollow ugc\">Implementierungsanleitung für Yoast-SEO-Breadcrumbs</a>.</p>\n</p>\n<dt id=\'how%20do%20i%20noindex%20urls%3F\'>\nWie setze ich bei URLs auf noindex?\n</h4>\n<p>\n<p>Yoast SEO bietet mehrere Optionen, um eine oder mehrere URLs auf noindex zu setzen. <a href=\"https://yoa.st/3qy/\" rel=\"nofollow ugc\"> Weitere Informationen dazu findest du in dieser Anleitung</a>.</p>\n</p>\n<dt id=\'google%20shows%20the%20wrong%20description%2C%20how%20do%20i%20fix%20this%3F\'>\nGoogle zeigt die falsche Beschreibung, wie kann ich das korrigieren?\n</h4>\n<p>\n<p>Wenn du gute Meta-Beschreibungen für deine Blogbeiträge geschrieben hast, gibt es nichts Ärgerlicheres, als zu sehen, dass Google eine komplett andere Beschreibung deiner Website in den Suchergebnissen verwendet.</p>\n<p>Mögliche Ursachen könnten sein:<br />\n1. Falsche Beschriftung im Code<br />\n2. Der Google Cache ist veraltet<br />\n3. Suchbegriffsmanipulation<br />\n4. Google hat die Meta-Description ignoriert</p>\n<p>Du kannst hier <a href=\"https://yoa.st/3qz\" rel=\"nofollow ugc\">mehr über die Lösung des Problems</a> mit der falschen Beschreibung lesen.</p>\n</p>\n<dt id=\'how%20often%20is%20yoast%20seo%20updated%3F\'>\nWie häufig wird Yoast SEO aktualisiert?\n</h4>\n<p>\n<p>Yoast SEO wird alle zwei Wochen aktualisiert. Wenn du wissen möchtest, weshalb, lies bitte <a href=\"https://yoa.st/3q-\" rel=\"nofollow ugc\">diesen Beitrag mit den Gründen dafür</a>!</p>\n</p>\n<dt id=\'how%20do%20i%20get%20support%3F\'>\nWie erhalte ich Support?\n</h4>\n<p>\n<p>Da unser kostenloses Plugin von Millionen von Menschen weltweit genutzt wird, können wir dir keinen ganz individuellen Support anbieten. Wenn du Probleme mit dem Plugin Yoast SEO für WordPress hast, kannst du Hilfe in den Supportforen hier bei <a href=\"https://wordpress.org/support/plugin/wordpress-seo/\">wordpress.org</a> erhalten oder unsere Wissensdatenbank unter <a href=\"https://yoa.st/3r1\" rel=\"nofollow ugc\">yoast.com/help/</a> durchsuchen.</p>\n<p>Die Plugins, die du bei Yoast kaufen kannst, sind Premium-Plugins (auch wenn Premium nicht im Namen ist) und beinhalten ein ganzes Jahr lang kostenlose Updates und Premium-Support. Das bedeutet, dass du unser Support-Team kontaktieren kannst, wenn du Fragen zu diesem Plugin hast.</p>\n<p><a href=\"https://yoa.st/3r2\" rel=\"nofollow ugc\">Lese mehr darüber, wie du Support erhalten kannst.</a></p>\n</p>\n<dt id=\'i%20have%20a%20different%20question%20than%20listed%20here\'>\nIch habe eine hier nicht aufgelistete Frage\n</h4>\n<p>\n<p>Deine Frage wurde höchstwahrscheinlich schon in unserer Wissensdatenbank beantwortet: <a href=\"https://yoa.st/1va\" rel=\"nofollow ugc\">yoast.com/help/</a>.</p>\n</p>\n\n\";s:9:\"changelog\";s:5843:\"<h4>18.0</h4>\n<p>Release Date: January 25th, 2022</p>\n<p>Yoast SEO 18.0 is out now! This release contains a number of bug fixes and a couple of enhancements. We&#8217;ve enhanced schema presentation for non-alphanumeric languages and made several improvements in both the SEO and readability analysis of the Japanese language. Read more about what&#8217;s new in Yoast SEO 18.0 in <a href=\"https://yoa.st/release-18-0\" rel=\"nofollow ugc\">our release post in English</a> or <a href=\"https://yoa.st/release-18-0-spanish\" rel=\"nofollow ugc\">our release post in Spanish</a>!</p>\n<p>Erweiterungen:</p>\n<ul>\n<li>Limits a potentially slow query to certain routes, which makes it so it gets called fewer times.</li>\n<li>Enhances schema presentation for languages that are not alphanumeric. Props to <a href=\"https://github.com/sous-studio\" rel=\"nofollow ugc\">sous-studio</a>.</li>\n</ul>\n<p>Fehlerbehebungen:</p>\n<ul>\n<li>Fixes a bug where removing an image from our Facebook Preview and Twitter Preview modals could lead to a confusing experience due to focus loss.</li>\n<li>Fixes a bug where clicking outside of a Yoast modal in the block editor would not close the modal.</li>\n<li>Fixes a bug where Japanese keyphrase enclosed in double quotes failed to be recognized in Keyword in meta description, Keyword density, Keyphrase distribution, Keyphrase in introduction, Keyphrase in image text and in Keyphrase in subheading assessments.</li>\n<li>Fixes a bug where synonyms enclosed in double quotes in the Link keyphrase assessment failed to be recognized even when there were exact matches in the anchor text.  </li>\n<li>Fixes a bug where incorrect assessments were shown for keyphrases only consisting of function words in Japanese.</li>\n<li>Fixes a bug where a fatal error would be thrown if the link count of a corrupt indexable item would get updated.</li>\n<li>Fixes a bug where the title tag would not be correct in Full Site Editing themes.</li>\n<li>Fixes a bug where the text length assessment would count URLs from videos loaded in the article in the total amount of the copy characters in Japanese.</li>\n<li>Fixes a bug where Japanese full stops in a text would be counted as three characters instead of one.</li>\n</ul>\n<p>Sonstiges:</p>\n<ul>\n<li>Sets the WordPress tested up to version to 5.9.</li>\n<li>Sets WooCommerce tested up to version to 6.1.</li>\n</ul>\n<h4>17.9</h4>\n<p>Release Date: January 11th, 2022</p>\n<p>Yoast SEO 17.9 is now available! Yoast SEO now comes with a keyphrase tracking tool powered by Wincher that lets you monitor your keyphrases, straight from the plugin! Make sure to try out this new keyphrase tracking feature and let us know what you think. Read more about what&#8217;s new in Yoast SEO 17.9 in <a href=\"https://yoa.st/release-17-9\" rel=\"nofollow ugc\">our release post in English</a> or <a href=\"https://yoa.st/release-17-9-spanish\" rel=\"nofollow ugc\">our release post in Spanish</a>!</p>\n<p>Erweiterungen:</p>\n<ul>\n<li>Introduces a keyphrase position tracking tool that gives insight into how your content ranks in the search results. Powered by Wincher.</li>\n<li>Improves Japanese text analysis results by adding functionality to segment Japanese texts into sentences and words.</li>\n<li>Adapts relevant assessments to count text length in characters instead of words in Japanese.</li>\n<li>Completes the readability analysis for Japanese by adding the transition words and sentence beginnings assessments.</li>\n<li>Improves keyword detection for Japanese by adding a function words list.</li>\n<li>Adapts Keyphrase in title scoring criteria for Japanese: the exact match keyphrase is not required for Japanese unless the keyphrase is enclosed in double quotes.</li>\n<li>Disables the Keyphrase in slug assessment for Japanese due to currently being unable to match keyphrases written in Japanese characters in slugs written in Latin characters.</li>\n<li>Improves the accuracy of the Estimated Reading Time results for Japanese.</li>\n<li>Adapts the recommended meta description length and meta description preview limit for Japanese.</li>\n<li>Improves the Workouts overview for mobile screens.</li>\n<li>Makes sure we don&#8217;t output the same <code>sameAs</code> URL twice on <code>Person</code> and <code>Organization</code>.</li>\n<li>Adds &#8222;Blog Post&#8220; / <code>BlogPosting</code> as a potential Schema <code>Article</code> type.</li>\n</ul>\n<p>Fehlerbehebungen:</p>\n<ul>\n<li>Fixes a bug where a fatal error would be thrown when using PHP 8.1.</li>\n<li>Fixes a bug where the <code>og:image:type</code> meta would not be output correctly. Props to <a href=\"https://github.com/dodomorandi\" rel=\"nofollow ugc\">@dodomorandi</a>.</li>\n<li>Fixes a bug where the incoming link count of a post would not return to zero if all incoming links were removed.</li>\n<li>Fixes a bug where the meta description would get trimmed to an empty string if the text doesn&#8217;t have any space. Props to <a href=\"https://github.com/waviaei\" rel=\"nofollow ugc\">@waviaei</a>.</li>\n<li>Fixes a bug where Link keyphrase assessment would not find a match when the keyphrase is enclosed in double quotes.</li>\n<li>Fixes a bug where <code>&lt;br&gt;</code> tags with attributes in the text would not be converted to paragraph tags. As a result some long paragraphs in the text might not have been highlighted in the Paragraph length assessment.</li>\n</ul>\n<p>Sonstiges:</p>\n<ul>\n<li>Improves compatibility with PHP 8.1 by adding validations and handling deprecations.</li>\n<li>Reverts the removal of the deprecated <code>WPSEO_Frontend</code> class.</li>\n<li>Changes the font size of the alerts from 14px to 13px.</li>\n</ul>\n<h4>Earlier versions</h4>\n<p>Für das Changelog früherer Versionen schau dir bitte das <a href=\"https://yoa.st/yoast-seo-changelog\" rel=\"nofollow ugc\">Yoast SEO Changelog auf yoast.com</a> an.</p>\n\";s:11:\"screenshots\";s:1995:\"<ol><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2643727\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2643727\" alt=\"Die allgemeine Meta-Box von Yoast SEO. Diese erscheint beim Bearbeiten von Beiträgen, Seiten und Custom Post Types.\"></a><p>Die allgemeine Meta-Box von Yoast SEO. Diese erscheint beim Bearbeiten von Beiträgen, Seiten und Custom Post Types.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2643727\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2643727\" alt=\"Beispiel für die SEO-Analysefunktionalität.\"></a><p>Beispiel für die SEO-Analysefunktionalität.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2643727\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2643727\" alt=\"Beispiel der Funktion &quot;Lesbarkeitsanalyse&quot;.\"></a><p>Beispiel der Funktion \"Lesbarkeitsanalyse\".</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=2643727\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=2643727\" alt=\"Übersicht der SEO Probleme und Verbesserungsvorschläge der gesamten Website.\"></a><p>Übersicht der SEO Probleme und Verbesserungsvorschläge der gesamten Website.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=2643727\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=2643727\" alt=\"Steuere, welche Funktionen du verwenden möchtest\"></a><p>Steuere, welche Funktionen du verwenden möchtest</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=2643727\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=2643727\" alt=\"Importiere ganz einfach SEO Daten von anderen SEO Plugins wie All in One SEO pack, HeadSpace2 SEO und wpSEO.de.\"></a><p>Importiere ganz einfach SEO Daten von anderen SEO Plugins wie All in One SEO pack, HeadSpace2 SEO und wpSEO.de.</p></li></ol>\";s:7:\"reviews\";s:16827:\"<div class=\"review\">\n <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Good</h4>\n                          <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/valentin528/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a0f6bf598d11085f6b81dd6443fb5f43?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a0f6bf598d11085f6b81dd6443fb5f43?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/valentin528/\" class=\"reviewer-name\">valentin528</a> am <span class=\"review-date\">Januar 28, 2022</span>                   </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Could set up to 5 special kewords per page</div>\n</div>\n<div class=\"review\">\n   <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Les métas déscriptions</h4>\n                              <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"2 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                         </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/dom71530/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/f112b4ae6846aaa5456f5ce38bd9982f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/f112b4ae6846aaa5456f5ce38bd9982f?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/dom71530/\" class=\"reviewer-name\">dom71530</a> am <span class=\"review-date\">Januar 27, 2022</span>                    </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Les métas déscriptions ne sont pas pris en compte par Google...</div>\n</div>\n<div class=\"review\">\n    <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Buggy and Premium Service Sucks</h4>\n                               <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/walton/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ab1025246bdd6e1b06696446a3eb9b8a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ab1025246bdd6e1b06696446a3eb9b8a?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/walton/\" class=\"reviewer-name\">Walton</a> am <span class=\"review-date\">Januar 31, 2022</span>                  </p>\n          </div>\n        </div>\n        <div class=\"review-body\">So Yoast SEO has always been buggy. It doesn\'t know what passive case is (I think it\'s just an alogorithm (verb to be or to have + past participle) which is total nonsense! It\'s knowledge of transition words is highly limited. The Fleisch reading scale is a joke-Not everyone likes short sentences. Sometimes ideas are complicated. So you need to express them in clauses. Clauses make sentences long. Long sentences are not always bad. Those ideas I mentioned before need long sentences. They need long sentences to be expressed clearly.  It sometimes misses my keyword, but then counts synonyms. Whatever. It was free!\n\nNow I pay and the same damn mistakes but all the little workouts and courses are based on those damn SEO and Readability Scores, which are all flawed! And premium service sucks. Every time you sent a message, a different person answers. Half the answers are just cut-and-paste. It\'s like talking to an algorithim. Literally, they are sucking the humanity out of the web, blogs, and now customer service. I want to stab my eyeballs out every time I see a message from premium customer service. i think it must be a very deliberate corporate strategy to not answer things in the forum where usually a bunch of people show up (and I know I get annoyed quickly) but at least people try to help  and offer suggestions. Premium service and the yoast support forums are just not worth it.</div>\n</div>\n<div class=\"review\">\n     <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Dobre narzędzie pracy dla początkujących</h4>\n                           <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/lingowski/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/470afaa9485d613c99e4abce9966fc13?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/470afaa9485d613c99e4abce9966fc13?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/lingowski/\" class=\"reviewer-name\">Brudtech - mycie dachów i elewacji <small>(lingowski)</small></a> am <span class=\"review-date\">Januar 20, 2022</span>                    </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Do prowadzenia małego business\'u dla osób niewtajemniczonych to bardzo dobra opcja, ponieważ przybliży do prawidłowego celu. Na początek nie znajdziesz nic lepszego. Polecam. My promujemy naszą stronę na frazy mycie dachów - i ta wtyczka bardzo dobrze radzi sobie, aby wypromować stronę samym wartościowym contentem w top 10 na fraze ogólnopolską.</div>\n</div>\n<div class=\"review\">\n   <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">No way to remove &quot;SEO&quot; from the menu for non-admins.</h4>\n                                <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/csparrow/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/fdb60f1890c3bf11bd53946c543b78d2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/fdb60f1890c3bf11bd53946c543b78d2?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/csparrow/\" class=\"reviewer-name\">Jack Sparrow <small>(csparrow)</small></a> am <span class=\"review-date\">Januar 14, 2022</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Trash plugin. Absolutely no way to remove the stupid \"SEO\" with their logo from the back-end menu for non-admins and custom user roles. I literally tried everything. The new ridiculous workouts are awful. Disabling all these has no effect:\n wpseo bulk edit  x \n wpseo edit advanced metadata  x \n wpseo manage options  x \n wpseo manage redirects  x \n\nToxic plugin. Over the years, it has become more and more aggressive with its SPAM. Even white label branding for WP can\'t remove their crap once and for all. I\'m giving this review because I tried for months, and I\'m pissed with them.</div>\n</div>\n<div class=\"review\">\n <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">17.9 Breaking Blocks</h4>\n                          <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"3 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                                </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/devjpm/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/aea5b91a2a2203b56549f45c36caae20?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/aea5b91a2a2203b56549f45c36caae20?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/devjpm/\" class=\"reviewer-name\">devjpm</a> am <span class=\"review-date\">Januar 13, 2022</span>                  </p>\n          </div>\n        </div>\n        <div class=\"review-body\"><code>Stylesheet yoast-seo-metabox-css-css was not properly added.</code> is an error that crops up when using some of my custom blocks. Once I disable Yoast they work as expected but I need to have Yoast for SEO. Please fix this soon as I must revert to an older version of Yoast in the meantime. </div>\n</div>\n<div class=\"review\">\n   <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Hands-on Free SEO Solution</h4>\n                            <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/biguenique/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9f454bc5bb97d623f063cfee8010e51e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9f454bc5bb97d623f063cfee8010e51e?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/biguenique/\" class=\"reviewer-name\">Bigue Nique <small>(biguenique)</small></a> am <span class=\"review-date\">Januar 8, 2022</span>                  </p>\n          </div>\n        </div>\n        <div class=\"review-body\">When considering SEO for a WordPress project, most of the times I end up relying on Yoast. The free version works out of the box. Just click \"activate\", set a few things, and you\'re good to go.\n\nIt\'s a must if you want to share your articles on social media and want to control how they display there (Open Graph).\n\nThe interface is straightforward and intuitive, it makes you aware of what needs to be taken care of to improve your SEO, right there in the editor. It goes beyond that by giving you great indicators to improve your content for readability and SEO.\n\nThere are a few interesting and creative alternatives out there, but this plugin has been around for a while and it\'s a safe bet, for sure. The free version might be enough for most uses. It works. I haven\'t tried the paid version yet.</div>\n</div>\n<div class=\"review\">\n        <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">EXCELENTE FERRAMENTA</h4>\n                          <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/opiniaoplay/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/b864284373c32f5c990655ef9bff6d31?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/b864284373c32f5c990655ef9bff6d31?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/opiniaoplay/\" class=\"reviewer-name\">opiniaoplay</a> am <span class=\"review-date\">Januar 5, 2022</span>                    </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Excelente Ferramenta para ampliar o engajamento do site </div>\n</div>\n<div class=\"review\">\n     <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Meh. There are better plugins</h4>\n                         <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"3 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                                </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/shshshea/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/841278ac6e95a314d77ecd4328bcdb64?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/841278ac6e95a314d77ecd4328bcdb64?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/shshshea/\" class=\"reviewer-name\">shshshea</a> am <span class=\"review-date\">Dezember 29, 2021</span>                  </p>\n          </div>\n        </div>\n        <div class=\"review-body\">I used Yoast Premium for a long time. Found another plugin thats code weighed a lot less and offered a lot more, even in their free version and I love their premium version. I have since deleted Yoast, but the plugin leaves behind a TON of data in your Database. I would avoid using this plugin, even just trying it, as it will just bloat your database and not clean up after itself.</div>\n</div>\n<div class=\"review\">\n      <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">GREAT TOOL KIVUHUB</h4>\n                            <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/eliudprom/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/e15458f74741b74a1d02b832e88d4c19?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/e15458f74741b74a1d02b832e88d4c19?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/eliudprom/\" class=\"reviewer-name\">eliudprom</a> am <span class=\"review-date\">Dezember 21, 2021</span>                       </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Thank you for the contents. our company used these tips and we got great result all because we followed your recommendation now we have a great website , thank you all for contributing to make KIVUHUB the best,</div>\n</div>\n\";}s:13:\"download_link\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.0.zip\";s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2643727\";s:7:\"caption\";s:116:\"Die allgemeine Meta-Box von Yoast SEO. Diese erscheint beim Bearbeiten von Beiträgen, Seiten und Custom Post Types.\";}i:2;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2643727\";s:7:\"caption\";s:45:\"Beispiel für die SEO-Analysefunktionalität.\";}i:3;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2643727\";s:7:\"caption\";s:43:\"Beispiel der Funktion \"Lesbarkeitsanalyse\".\";}i:4;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=2643727\";s:7:\"caption\";s:78:\"Übersicht der SEO Probleme und Verbesserungsvorschläge der gesamten Website.\";}i:5;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=2643727\";s:7:\"caption\";s:49:\"Steuere, welche Funktionen du verwenden möchtest\";}i:6;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=2643727\";s:7:\"caption\";s:111:\"Importiere ganz einfach SEO Daten von anderen SEO Plugins wie All in One SEO pack, HeadSpace2 SEO und wpSEO.de.\";}}s:4:\"tags\";a:5:{s:16:\"content-analysis\";s:16:\"Content analysis\";s:11:\"readability\";s:11:\"Readability\";s:6:\"schema\";s:6:\"schema\";s:3:\"seo\";s:3:\"seo\";s:11:\"xml-sitemap\";s:11:\"xml sitemap\";}s:8:\"versions\";a:84:{s:4:\"12.0\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.0.zip\";s:4:\"12.1\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.1.zip\";s:4:\"12.2\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.2.zip\";s:4:\"12.3\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.3.zip\";s:4:\"12.4\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.4.zip\";s:4:\"12.5\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.5.zip\";s:6:\"12.5.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.5.1.zip\";s:4:\"12.6\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.6.zip\";s:6:\"12.6.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.6.1.zip\";s:6:\"12.6.2\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.6.2.zip\";s:4:\"12.7\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.7.zip\";s:6:\"12.7.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.7.1.zip\";s:4:\"12.8\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.8.zip\";s:6:\"12.8.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.8.1.zip\";s:4:\"12.9\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.9.zip\";s:6:\"12.9.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.9.1.zip\";s:4:\"13.0\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.13.0.zip\";s:4:\"13.1\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.13.1.zip\";s:4:\"13.2\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.13.2.zip\";s:4:\"13.3\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.13.3.zip\";s:4:\"13.4\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.13.4.zip\";s:6:\"13.4.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.13.4.1.zip\";s:4:\"13.5\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.13.5.zip\";s:4:\"14.0\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.0.zip\";s:6:\"14.0.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.0.1.zip\";s:6:\"14.0.2\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.0.2.zip\";s:6:\"14.0.3\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.0.3.zip\";s:6:\"14.0.4\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.0.4.zip\";s:4:\"14.1\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.1.zip\";s:4:\"14.2\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.2.zip\";s:4:\"14.3\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.3.zip\";s:4:\"14.4\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.4.zip\";s:6:\"14.4.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.4.1.zip\";s:4:\"14.5\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.5.zip\";s:4:\"14.6\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.6.zip\";s:6:\"14.6.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.6.1.zip\";s:4:\"14.7\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.7.zip\";s:4:\"14.8\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.8.zip\";s:6:\"14.8.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.8.1.zip\";s:4:\"14.9\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.9.zip\";s:4:\"15.0\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.0.zip\";s:4:\"15.1\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.1.zip\";s:6:\"15.1.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.1.1.zip\";s:4:\"15.2\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.2.zip\";s:6:\"15.2.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.2.1.zip\";s:4:\"15.3\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.3.zip\";s:4:\"15.4\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.4.zip\";s:4:\"15.5\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.5.zip\";s:4:\"15.6\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.6.zip\";s:6:\"15.6.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.6.1.zip\";s:6:\"15.6.2\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.6.2.zip\";s:4:\"15.7\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.7.zip\";s:4:\"15.8\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.8.zip\";s:4:\"15.9\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.9.zip\";s:6:\"15.9.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.9.1.zip\";s:6:\"15.9.2\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.15.9.2.zip\";s:4:\"16.0\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.0.zip\";s:6:\"16.0.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.0.1.zip\";s:6:\"16.0.2\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.0.2.zip\";s:4:\"16.1\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.1.zip\";s:6:\"16.1.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.1.1.zip\";s:4:\"16.2\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.2.zip\";s:4:\"16.3\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.3.zip\";s:4:\"16.4\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.4.zip\";s:4:\"16.5\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.5.zip\";s:4:\"16.6\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.6.zip\";s:6:\"16.6.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.6.1.zip\";s:4:\"16.7\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.7.zip\";s:4:\"16.8\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.8.zip\";s:4:\"16.9\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.9.zip\";s:4:\"17.0\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.17.0.zip\";s:4:\"17.1\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.17.1.zip\";s:4:\"17.2\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.17.2.zip\";s:6:\"17.2.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.17.2.1.zip\";s:4:\"17.3\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.17.3.zip\";s:4:\"17.4\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.17.4.zip\";s:4:\"17.5\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.17.5.zip\";s:4:\"17.6\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.17.6.zip\";s:4:\"17.7\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.17.7.zip\";s:6:\"17.7.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.17.7.1.zip\";s:4:\"17.8\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.17.8.zip\";s:4:\"17.9\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.17.9.zip\";s:4:\"18.0\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.18.0.zip\";s:5:\"trunk\";s:56:\"https://downloads.wordpress.org/plugin/wordpress-seo.zip\";}s:11:\"donate_link\";s:18:\"https://yoa.st/1up\";s:7:\"banners\";a:2:{s:3:\"low\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";s:4:\"high\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";}}s:6:\"leadin\";a:25:{s:4:\"name\";s:71:\"HubSpot – CRM, E-Mail-Marketing, Live-Chat, Formulare &amp; Analytics\";s:4:\"slug\";s:6:\"leadin\";s:7:\"version\";s:7:\"8.4.628\";s:6:\"author\";s:59:\"<a href=\"http://hubspot.com/products/wordpress\">HubSpot</a>\";s:14:\"author_profile\";s:42:\"https://profiles.wordpress.org/hubspotdev/\";s:12:\"contributors\";a:2:{s:10:\"hubspotdev\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/hubspotdev/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/b0fc5d064b5de562cd2c4da8f2949488?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:7:\"HubSpot\";}s:6:\"leadin\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/leadin/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/e01bb710319d405b425ca83629d9df92?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:6:\"Leadin\";}}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.8.3\";s:12:\"requires_php\";s:3:\"5.6\";s:6:\"rating\";i:88;s:7:\"ratings\";a:5:{i:5;i:120;i:4;i:12;i:3;i:4;i:2;i:5;i:1;i:16;}s:11:\"num_ratings\";i:157;s:15:\"support_threads\";i:6;s:24:\"support_threads_resolved\";i:5;s:15:\"active_installs\";i:200000;s:12:\"last_updated\";s:22:\"2022-01-31 11:29am GMT\";s:5:\"added\";s:10:\"2014-03-12\";s:8:\"homepage\";s:45:\"http://www.hubspot.com/integrations/wordpress\";s:8:\"sections\";a:6:{s:11:\"description\";s:9700:\"<p>DAS LEISTUNGSSTÄRKSTE &amp; BENUTZERFREUNDLICHSTE PLUG-IN FÜR KONTAKTMANAGEMENT (CRM), E-MAIL-MARKETING, LIVE-CHAT, FORMULARE &amp; ANALYTICS</p>\n<p><a href=\"https://www.hubspot.de/products/wordpress?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">HubSpot</a> ermöglicht ein nachhaltiges Wachstum für dein Unternehmen. HubSpot hilft dir, Besucher in Leads zu verwandeln, Kunden zu pflegen und dein Unternehmenswachstum zu messen.</p>\n<p>Mit dem kostenlosen Plug-in von HubSpot kannst du schnell und einfach:</p>\n<ul>\n<li>Kommuniziere mit Besuchern mithilfe von <a href=\"https://www.hubspot.de/products/crm/live-chat?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">Live-Chat und Chatbots</a> und konvertiere Leads mit Formularen und Popups.</li>\n<li>Erstelle ansprechende, responsive <a href=\"https://www.hubspot.de/products/marketing/email?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">E-Mail-Newsletter</a> in WordPress und pflege Leads mit Marketing-Automatisierungskampagnen.</li>\n<li>Verwalte deine gesamte Kontaktdatenbank mit HubSpots kostenlosem <a href=\"https://www.hubspot.de/products/crm?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">CRM</a> und gruppiere Kontakte mithilfe des integrierten Listendesigners.</li>\n<li>Messe dein Unternehmenswachstum in Echtzeit – mit praktischen Analytics-Dashboards.</li>\n</ul>\n<p>Was ist im kostenlosen WordPress-Plug-in von HubSpot enthalten:</p>\n<p><strong>CRM &amp; KONTAKTMANAGEMENT-PLATTFORM</strong></p>\n<p>Die Formulare auf deiner Website werden automatisch mit deinem HubSpot CRM synchronisiert. So kannst du Kontakte leichter verwalten, Kontakte in Listen segmentieren und jede Interaktion mit der Website anzeigen. Da das Plug-in pro Kontakt einen Datensatz erstellt und darin den kompletten Verlauf der Seitenaufrufe, Live-Chats, ausgefüllten Formulare usw. eines Kontakts hinterlegt, hast du den Überblick über sämtliche Interaktionen mit deiner Website.</p>\n<p><strong>E-MAIL-NEWSLETTER &amp; MARKETING-AUTOMATISIERUNG</strong></p>\n<p>Im praktischen <a href=\"https://www.hubspot.de/products/marketing/email?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">Drag-&#038;-Drop-E-Mail-Designer</a> von HubSpot kannst du ansprechende, interaktive Newsletter für deine Kontakte erstellen. Richte E-Mails ein, die automatisch verschickt werden, sobald ein Besucher ein Formular ausfüllt oder mit deinem Live-Chat bzw. deinen Chatbots interagiert.</p>\n<p>Du möchtest E-Mails nicht selbst entwerfen müssen? HubSpot bietet mehr als 20 vorgefertigte E-Mail-Vorlagen. Du musst nur noch deinen Content hinzufügen und auf „Senden“ drücken.</p>\n<p>Mit der Software von HubSpot für E-Mail-Marketing kannst du deine Nachrichten personalisieren und deine Inhalte auf die einzelnen Abonnenten zuschneiden. Darüber hinaus kannst du mithilfe von A/B-Tests und E-Mail-Tracking noch einen Schritt weitergehen und die Öffnungs- und Klickrate der einzelnen Kampagnen verbessern.</p>\n<p>Alle E-Mails werden automatisch in der Customer-Relationship-Management (CRM)-Software protokolliert und enthalten Berichte zu geöffneten und angeklickten E-Mails, sodass du bei jeder E-Mail die Interaktionen messen kannst.</p>\n<p><strong>FORMULARE &amp; POPUPS</strong></p>\n<p>Erstelle mithilfe des intuitiven Drag-&#038;Drop-Designers in Minutenschnelle ansprechende <a href=\"https://www.hubspot.de/products/marketing/forms?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">Formulare und Popups</a> auf deiner Website. Wähle mithilfe der fortschrittlichen Filterung von HubSpot basierend auf dem Verhalten deiner Besucher aus, auf welchen Seiten deine Popups angezeigt werden sollen.</p>\n<p>Du möchtest lieber weiter dein gewohntes Plug-in für Formulare und Popups verwenden? Kein Problem! HubSpot lässt sich mit den meisten WordPress-Formulardesignern, Formulardesignererstellern und Popup-Designern integrieren und ist sofort einsatzbereit. Du musst dir also überhaupt keine Gedanken machen.</p>\n<p>HubSpot bietet einen dynamischen Formulardesigner, der zum Erstellen von nahezu jedem Typ von Formular verwendet werden kann, darunter auch die folgenden: Ankündigungs-Popup, Bannerleiste, Formular mit bedingter Logik, Kontaktformular, benutzerdefiniertes Formular, Spendenformular, E-Mail-Formular, Exit Intent-Popup-Formular, Event-Formular, Feedback-Formular, Popup für Mobilgeräte, Newsletter-Formular, Bestellformular, Zahlungsformular, Popup-Formular, Quiz-Formular, Angebotsformular, Formular zum Unterschreiben, Anmeldeformular, Sternebewertungsformular, Sticky Bar, Umfrage-Popup, Web-Formular und viele weitere!</p>\n<p><strong>LIVE-CHAT &amp; CHATBOTS</strong></p>\n<p>Füge deiner Website einen kostenlosen <a href=\"https://www.hubspot.de/products/crm/live-chat?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">Live-Chat</a> hinzu und interagiere schnell mit den Besuchern deiner Website. Füge deiner Website <a href=\"https://www.hubspot.de/products/crm/live-chat?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">Chatbots</a> hinzu, die rund um die Uhr verfügbar sind und mit denen du die Erfassung, Generierung und Verwaltung von Leads automatisieren sowie Live-Support bieten kannst. Jetzt kannst du deinen Besuchern jederzeit und von jedem Ort aus helfen – dank der Live-Chat-Funktion von WordPress!</p>\n<p><strong>INTEGRIERTE ANALYTICS &amp; DASHBOARDS</strong></p>\n<p>Dank integrierter Marketing-Analytics (E-Mail-Analytics, Traffic-Analytics und Website-Analytics) kannst du besser nachvollziehen, welche Vertriebs- und Marketingaktionen am erfolgreichsten sind … und wo es Probleme gibt. Formulare, Popups, Live-Chat &amp; Chatbots, E-Mail-Marketing und Vertriebs-Follow-ups helfen dir beim Wachstum deines Unternehmens.</p>\n<p>Warum Analytics von einer anderen App installieren, wenn du von integrierten WordPress-Analytics profitieren kannst? Mit HubSpot erhältst du eine vereinheitlichte Ansicht der Performance deiner Website in einem leicht verständlichen Analytics-Dashboard – und das ohne WordPress verlassen zu müssen. Dashboards können angepasst werden, sodass du die jeweils relevantesten Informationen anzeigen kannst und damit fundierte datengestützte Entscheidungen für dein einzigartiges Unternehmen treffen kannst.</p>\n<p><strong>NAHTLOSE INTEGRATIONEN</strong></p>\n<p>Bist du zufrieden mit den Tools, die du nutzt? Du kannst jetzt schnell und einfach HubSpot mit über <a href=\"https://ecosystem.hubspot.com/de/marketplace/apps?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">400 nativen Integrationen</a> verknüpfen, einschließlich:<br />\n– Analytics/Werbung/Social-Media-Software: Adroll, Facebook Ads, Facebook Messenger, Google Ads, Google Analytics, Hotjar, Instagram Ads, Linkedin Ads, Twitter, WhatsApp, YouTube<br />\n– Kommunikation/Design/Integrationen: Canva, Gutenberg Blocks, HelloSign, Integromat, Slack, Twilio, Vidyard, Zoom<br />\n– CRM/E-Mail-Marketing/Software für Marketing-Automatisierung: Active Campaign, Aweber, Campaign Monitor, Constant Contact, Drip, Gmail, Hustle, Mailchimp, Ontraport, Outlook, Salesforce, Sendinblue, WP Fusion, Zoho<br />\n– E-Commerce/Online-Store/Wiederkehrende Zahlungen/Zahlungsabwicklung: BigCommerce, Shopify, Stripe, WooCommerce, YITH<br />\n– Software für die Planung von Meetings/Events: Calendly, Eventbrite, The Events Calendar<br />\n– Formulare/Landing-Page-Designer/CRO: Caldera Forms, Contact Form 7, Elementor, Formidable Forms, Forminator, Gravity Forms, Instapage, JotForm, Kali Forms, MailOptIn, Ninja Forms, OptInMonster, Sumo, Survey Monkey, Typeform, Unbounce, WPForms<br />\n– Live-Chat/Kundensupport-Software: Drift, Front, Help Scout, Intercom, LiveChat, Pure Chat, Zendesk<br />\n– Produktivität/Projektmanagement-Software: Asana, Jira</p>\n<p>HubSpot funktioniert auch mit Zapier und PieSync sehr gut. Du kannst also nahezu jedes Tool miteinander verknüpfen.</p>\n<p><strong>DAS SAGEN KUNDEN ÜBER HUBSPOT – CRM, E-MAIL-MARKETING, LIVE-CHAT, FORMULARE &amp; ANALYTICS</strong></p>\n<p>„HubSpot hat dazu beigetragen, dass wir den Umsatz von WP Buffs auf 1 Mill. USD steigern konnten. Mit dem Plug-in und Sales-CRM konnten wir unseren Vertriebsprozess professioneller gestalten und gut organisiert von einem auf vier Vertriebsmitarbeiter umstellen. Mit den Berichte-Dashboards bin ich stets darüber informiert, wo unser Vertriebsgeschäft überzeugt und wo noch Spielraum für Verbesserungen besteht. Deshalb können wir HubSpot nur empfehlen.“ – <strong>Joe Howard, Gründer &amp; CEO, WP Buffs</strong></p>\n<p>„HubSpot liefert Marketingexperten fundierte Erkenntnisse, die über die anonymen Web-Analytics von Google Analytics hinausgehen. Stattdessen erhalten sie detaillierte Daten zu einzelnen Benutzern.“ – <strong>Michael Shoup, Gründer/CEO, 12South Marketing</strong></p>\n<p>„HubSpot reduziert meinen Zeitaufwand für Marketing enorm. Früher mussten wir sehr viel Zeit investieren und haben am Ende nur wenige Inbound-Leads generiert, aber jetzt sind die Zahlen mit nur minimalen Aufwand um ein Vielfaches in die Höhe geschossen.“ – <strong>Brian Ruhlmann, Director of Sales &amp; Marketing, AdmitHub</strong></p>\n\";s:12:\"installation\";s:1252:\"<h4>Suche</h4>\n<p>Lade das Plug-in einfach über die Admin-Benutzeroberfläche in WordPress herunter.</p>\n<ul>\n<li>Gehe zu deinem Administrator-Dashboard.</li>\n<li>Gehe zum Menü „Plugins“.</li>\n<li>Klicke auf „Neue hinzufügen“.</li>\n<li>Suche nach „HubSpot“.</li>\n<li>Klicke auf „Jetzt installieren“.</li>\n<li>Gehe zum Menü „Plugins“.</li>\n<li>Klicke im WordPress-Plug-in „All-in-One-Marketing von HubSpot – Formulare, Popups, Live-Chat“ auf „Aktivieren“.</li>\n<li>Melde dich bei deinem HubSpot-Account an oder registriere dich für einen HubSpot-Account.</li>\n</ul>\n<p>Deine WordPress-Website und dein HubSpot-Account werden miteinander verknüpft, sodass du sofort mit dem All-in-One-Marketing-Plug-in von HubSpot beginnen und Formulare, Popups und Live-Chat nutzen kannst.</p>\n<h4>Upload</h4>\n<ol>\n<li>Ordner „leadin“ in das Verzeichnis „/wp-content/plugins/“ hochladen</li>\n<li>Aktiviere das Plug-in im „Plugins“-Menü in WordPress</li>\n</ol>\n<p>Probleme? Sieh dir unsere <a href=\"https://knowledge.hubspot.com/de/integrations/install-the-hubspot-wordpress-plugin?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">Hilferessourcen</a> an.</p>\n\";s:3:\"faq\";s:7400:\"\n<dt id=\'requirements\'>\nAnforderungen\n</h4>\n<p>\n<ul>\n<li>Deine Website oder dein Blog muss WordPress.org Version 3.7 oder höher verwenden. Wir empfehlen die neueste Version.</li>\n<li>Das Plug-in kann nicht auf WordPress.com-Websites installiert werden, da dort Plug-ins oder Javascript nicht hinzugefügt werden können.</li>\n<li>Die wp_footer-Funktion muss in der Footer-Datei (footer.php) deines WordPress-Designs enthalten sein.</li>\n<li>Diese Funktion ist erforderlich, damit unser Javascript-Snippet auf jeder Seite deiner Website installiert werden kann.</li>\n<li>Du musst ein WordPress-Admin sein, um Plug-ins für deine Website zu installieren. Wenn du kein Admin bist, leite diese Anweisungen an die Person weiter, die deine WordPress-Installation verwaltet.</li>\n</ul>\n</p>\n<dt id=\'what%20does%20the%20plugin%20do%3F\'>\nWas macht das Plug-in?\n</h4>\n<p>\n<p>Das WordPress-Plug-in von HubSpot ermöglicht dir die Verwendung von E-Mail-Marketing, CRM, Formularen, Popups und Live-Chat von HubSpot auf deiner WordPress-Website. Das Plug-in bietet dir alle Tools, die du benötigst, um dein Geschäft auszubauen und deine Kontakte und Kunden zu begeistern.</p>\n</p>\n<dt id=\'what%20is%20hubspot%3F\'>\nWas ist HubSpot?\n</h4>\n<p>\n<p><a href=\"https://hubspot.de/?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">HubSpot</a> ist eine All-in-one-Wachstumsplattform mit einem kostenlosen CRM sowie Marketing-, Vertriebs- und Kundendienstprodukten, mit denen du dein Geschäft ausbauen kannst.</p>\n</p>\n<dt id=\'who%20should%20use%20hubspot%3F\'>\nWer sollte HubSpot nutzen?\n</h4>\n<p>\n<p>HubSpot eignet sich perfekt für Agenturen, Geschäftsinhaber (einschließlich kleine Unternehmen und E-Commerce-Unternehmen), Blogger, Designer oder alle mit einer WordPress-Website, die ein nahtlos funktionierendes CRM-Plug-in mit integrierten Marketing-Tools nutzen möchten. Mehr als 100.000 Websites in über 100 Ländern setzen bereits auf HubSpot, um ihr Geschäft auszubauen.</p>\n</p>\n<dt id=\'are%20coding%20skills%20needed%20to%20use%20the%20hubspot%20wordpress%20plugin%3F\'>\nSind Programmierkenntnisse erforderlich, um das WordPress-Plug-in von HubSpot nutzen zu können?\n</h4>\n<p>\n<p>Überhaupt nicht! Der Download des WordPress-Plug-ins von HubSpot ist einfach und es funktioniert sofort reibungslos mit deiner WordPress-Website. Du kannst die Vorteile von CRM, Live-Chat, E-Mail-Marketing, Formularen und vielen weiteren Tools nutzen &#8211; und das ganz ohne Programmieraufwand.</p>\n</p>\n<dt id=\'what%20is%20available%20for%20free%20with%20hubspot%3F\'>\nWas ist bei HubSpot kostenlos verfügbar?\n</h4>\n<p>\n<p>Das WordPress-Plug-in von HubSpot kann kostenlos für Formulare, Kontaktmanagement, E-Mail-Marketing und mehr verwendet werden.</p>\n<p>HubSpot stellt außerdem auch kostenpflichtige Stufen von Produkten für jene Nutzer bereit, die sich erweiterte Funktionen wie Blogging, Landing-Pages, Suchmaschinenoptimierung (SEO), Team-E-Mail, Retargeting, Lead-Scoring, Bots, E-Mail-Planung, NPS-Umfragen, Calls-to-Action (CTAs), Wissensdatenbank und mehr wünschen. Auf unserer <a href=\"https://hubspot.de/pricing?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">Preisseite</a> erhältst du eine vollständige Übersicht über die Funktionen, die in den kostenlosen und kostenpflichtigen Produktstufen von HubSpot angeboten werden.</p>\n<p>Unser Plug-in „CRM für WordPress“ bietet den Zugriff auf HubSpots <a href=\"https://www.hubspot.de/products/crm\" rel=\"nofollow ugc\">kostenloses CRM</a>.</p>\n</p>\n<dt id=\'do%20i%20need%20to%20install%20a%20wordpress%20smtp%20plugin%20to%20use%20hubspot%27s%20email%20feature%3F\'>\nMuss ich ein WordPress-SMTP-Plug-in installieren, um die E-Mail-Funktion von HubSpot zu nutzen?\n</h4>\n<p>\n<p>Es besteht keine Notwendigkeit, ein zusätzliches Mail-SMTP-Plug-in zu installieren.</p>\n<p>Im Gegensatz zu anderen WordPress-Formular-Plug-ins und -E-Mail-Plug-ins, die Nachrichten mithilfe einer PHP-Mail-Funktion senden, ist HubSpot eine eigenständige E-Mail-Marketing-Software. Du kannst <a href=\"https://knowledge.hubspot.com/de/email-notifications/how-can-i-find-my-email-servers-imap-and-smtp-information\" rel=\"nofollow ugc\">deinen IMAP und SMTP</a> von deinem bestehenden Mail-Service (Gmail, Outlook, Yahoo) aus definieren und musst dir so keine Gedanken mehr über die E-Mail-Zustellbarkeit in WordPress machen.</p>\n</p>\n<dt id=\'what%20types%20of%20forms%20and%20popups%20can%20i%20build%20with%20hubspot%3F\'>\nWelche Typen von Formularen und Popups kann ich mit HubSpot erstellen?\n</h4>\n<p>\n<p>Hier sind einige Beispiele der Typen von Formularen und Popups, die du mit HubSpot erstellen kannst:</p>\n<p>– erweiterte Formulare<br />\n– Ankündigungs-Popup<br />\n– Terminformular<br />\n– Banner-Leiste<br />\n– Rechnerformular<br />\n– bedingtes Formular<br />\n– Formular mit bedingter Logik<br />\n– Kontakt-Button-Formular<br />\n– Kontaktformular-Popup<br />\n– Kontaktformulare<br />\n– Coupon-Popup<br />\n– benutzerdefiniertes Formular<br />\n– benutzerdefinierte Formulare<br />\n– benutzerdefiniertes Popup<br />\n– Spendenformular<br />\n– E-Mail-Formular<br />\n– E-Mail-Formulare<br />\n– E-Mail-Einsendeformular<br />\n– Event-Formular<br />\n– Exit Intent-Popup-Formulare<br />\n– Exit Intent-Popup<br />\n– Feedback-Formular<br />\n– Datei-Upload-Formular<br />\n– Floating-Bar-Popup<br />\n– Inline-Anmeldeformular<br />\n– Lightbox-Popup<br />\n– Popup für Mobilgeräte<br />\n– Mehrseitiges Formular<br />\n– Newsletter-Formular<br />\n– Newsletter-Popup<br />\n– Bestellformular<br />\n– Zahlungsformular<br />\n– PDF-Formular<br />\n– Popup-Formular<br />\n– Quiz-Formular<br />\n– Angebotsformular<br />\n– Formular zum Anfordern eines Angebots<br />\n– Registrierungs-Popup<br />\n– Scroll-gesteuertes Popup<br />\n– Formular zum Unterschreiben<br />\n– Anmeldeformular<br />\n– Slide-in-Popup<br />\n– Slide-in-Scroll-Popup<br />\n– Sternebewertungsformular<br />\n– Sticky Bar<br />\n– Sticky Popup<br />\n– Abo-Formular<br />\n– Umfrage-Popup<br />\n– zielgerichtetes Popup<br />\n– Popup für Zeit auf Website<br />\n– Upload-Formular<br />\n– Benutzerregistrierungsformular<br />\n– Webkontakt-Formular<br />\n– Web-Formular<br />\n– Welcome Mat-Popup<br />\n– WooCommerce-Popup</p>\n<p>Du möchtest lieber dein vertrautes Formular-Tool verwenden? HubSpot lässt sich mit den meisten WordPress-Formulardesignern und -Popup-Designern integrieren.</p>\n</p>\n<dt id=\'does%20hubspot%20support%20ecommerce%20stores%3F\'>\nUnterstützt HubSpot E-Commerce-Stores?\n</h4>\n<p>\n<p>Das WordPress-Plug-in von HubSpot eignet sich hervorragend für eine Vielzahl unterschiedlicher Typen von Geschäften einschließlich E-Commerce. Für WooCommerce-Shop-Betreiber bietet das <a href=\"https://wordpress.org/plugins/makewebbetter-hubspot-for-woocommerce/\">Plug-in „HubSpot for WooCommerce“</a> sogar noch weitere Shop-Funktionen.</p>\n</p>\n<dt id=\'my%20question%20is%20not%20listed.\'>\nMeine Frage ist nicht aufgeführt.\n</h4>\n<p>\n<p>In der <a href=\"https://community.hubspot.com/?utm_source=wordpress-plugin-listing&amp;utm_campaign=wordpress&amp;utm_medium=marketplaces\" rel=\"nofollow ugc\">HubSpot-Community</a> findest du ausführliche Dokumentationen und Support.</p>\n</p>\n\n\";s:9:\"changelog\";s:462:\"<p><a href=\"https://plugins.svn.wordpress.org/leadin/trunk/changelog.txt\" rel=\"nofollow ugc\">Full changelog here</a><br />\n&#8211; Current version: 8.4.628<br />\n&#8211; Version release date: 2022-01-31</p>\n<h4>8.4.598 (2022-01-25)</h4>\n<ul>\n<li>Add sandbox attribute to iframe</li>\n</ul>\n<h4>8.4.463 (2021-12-16)</h4>\n<ul>\n<li>Store activation time in the database. This will be needed to show contextual suggestions at the right time in the future.</li>\n</ul>\n\";s:11:\"screenshots\";s:2779:\"<ol><li><a href=\"https://ps.w.org/leadin/assets/screenshot-1.png?rev=2669768\"><img src=\"https://ps.w.org/leadin/assets/screenshot-1.png?rev=2669768\" alt=\"Messe den Impact mithilfe von Berichten.\"></a><p>Messe den Impact mithilfe von Berichten.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-2.png?rev=2669768\"><img src=\"https://ps.w.org/leadin/assets/screenshot-2.png?rev=2669768\" alt=\"Organisiere, tracke und pflege deine Leads in deinem kostenlosen HubSpot CRM.\"></a><p>Organisiere, tracke und pflege deine Leads in deinem kostenlosen HubSpot CRM.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-3.png?rev=2669768\"><img src=\"https://ps.w.org/leadin/assets/screenshot-3.png?rev=2669768\" alt=\"Die Formulare auf deiner Website werden automatisch mit deinem HubSpot CRM synchronisiert.\"></a><p>Die Formulare auf deiner Website werden automatisch mit deinem HubSpot CRM synchronisiert.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-4.png?rev=2669768\"><img src=\"https://ps.w.org/leadin/assets/screenshot-4.png?rev=2669768\" alt=\"Pflege und konvertiere Leads mithilfe von Listen und E-Mails.\"></a><p>Pflege und konvertiere Leads mithilfe von Listen und E-Mails.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-5.png?rev=2669768\"><img src=\"https://ps.w.org/leadin/assets/screenshot-5.png?rev=2669768\" alt=\"Sende deinen Kontakten eine ansprechende, effektive und personalisierte E-Mail.\"></a><p>Sende deinen Kontakten eine ansprechende, effektive und personalisierte E-Mail.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-6.png?rev=2669768\"><img src=\"https://ps.w.org/leadin/assets/screenshot-6.png?rev=2669768\" alt=\"Mit einem Live-Chat kommst du mit Besuchern deiner Website in Kontakt und kannst ihnen weiterhelfen.\"></a><p>Mit einem Live-Chat kommst du mit Besuchern deiner Website in Kontakt und kannst ihnen weiterhelfen.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-7.png?rev=2669768\"><img src=\"https://ps.w.org/leadin/assets/screenshot-7.png?rev=2669768\" alt=\"Füge deiner Website rund um die Uhr zur Verfügung stehende Chatbots hinzu, um das Erfassen von Leads und den Support zu automatisieren.\"></a><p>Füge deiner Website rund um die Uhr zur Verfügung stehende Chatbots hinzu, um das Erfassen von Leads und den Support zu automatisieren.</p></li><li><a href=\"https://ps.w.org/leadin/assets/screenshot-8.png?rev=2669768\"><img src=\"https://ps.w.org/leadin/assets/screenshot-8.png?rev=2669768\" alt=\"Erstelle mithilfe des intuitiven Drag-&amp;-Drop-Designers in Minutenschnelle ansprechende Formulare und Popups auf deiner Website.\"></a><p>Erstelle mithilfe des intuitiven Drag-&-Drop-Designers in Minutenschnelle ansprechende Formulare und Popups auf deiner Website.</p></li></ol>\";s:7:\"reviews\";s:15868:\"<div class=\"review\">\n       <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Serves its purpose &amp; great support!</h4>\n                               <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/jonaslagneryd/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/2d147005f9754e063ad6b6b2a3e81300?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/2d147005f9754e063ad6b6b2a3e81300?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/jonaslagneryd/\" class=\"reviewer-name\">Jonas <small>(JonasLagneryd)</small></a> am <span class=\"review-date\">Januar 31, 2022</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">As a startup company we use HubSpot since very recently and we are delighted with its features. It is making our soon to launch new Wordpress-Woocommerce website the HUB for communication and sales. And we appreciate very much their support!</div>\n</div>\n<div class=\"review\">\n    <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Don&#039;t waste your time with this BULLS*IT!</h4>\n                                <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/ablaye/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ab8caf4b968e933be601da20fb6e0500?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ab8caf4b968e933be601da20fb6e0500?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/ablaye/\" class=\"reviewer-name\">ablaye</a> am <span class=\"review-date\">Januar 18, 2022</span>                  </p>\n          </div>\n        </div>\n        <div class=\"review-body\">- Downloaded and installed the plugin,\n- Spent several minutes answering all kinds of questions, \n- finally was informed that I did not qualify for an account.\n\nIn short, I wasted about a half hour messing with this bulls*it\nThey just need to charge money for it instead of making us jump thru hoops just to find out in the end that it would cost a few $100\'s month to get any use out of this!!\nReally pis*sed off for wasting my time!!!</div>\n</div>\n<div class=\"review\">\n  <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">No WP user identification</h4>\n                             <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/extractlabs/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/80b44be0c13582d9b3049f7f1fd85d58?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/80b44be0c13582d9b3049f7f1fd85d58?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/extractlabs/\" class=\"reviewer-name\">extractlabs</a> am <span class=\"review-date\">Dezember 30, 2021</span>                 </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Doesn\'t identify logged in WP users by default in chat or analytics. You need a bunch of additional code to get this to work. This is a basic function that zendesk &amp; tawk.to do out of the box with their WP plugins. </div>\n</div>\n<div class=\"review\">\n <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Incredibly expensive TRAP</h4>\n                             <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/wackao/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a4b5e846ddcd37d450d7ff8dfa6b4a3a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a4b5e846ddcd37d450d7ff8dfa6b4a3a?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/wackao/\" class=\"reviewer-name\">wackao</a> am <span class=\"review-date\">Dezember 17, 2021</span>                        </p>\n          </div>\n        </div>\n        <div class=\"review-body\">To get any automations in the CRM you will have to shell out around $800/month. The rest of the application is not flexible and performs worse than Google spreadsheets. I accidentally fell into the trap and purchased their starter pack $50 per month, turns out you can not cancel their subscription in between. There is no help, no chat support as it is always busy. Only way to get rid of them is to get your card blocked, otherwise they\'ll keep on charging you. Oh, did I mention they clearly specify, \"NO REFUNDS\" once the charge is made. Good luck &amp; stay away.</div>\n</div>\n<div class=\"review\">\n  <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Supportive</h4>\n                            <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/scotttrsar/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a5a5e664c978fe2111840b0b1fddd31f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a5a5e664c978fe2111840b0b1fddd31f?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/scotttrsar/\" class=\"reviewer-name\">Scott Trsar <small>(scotttrsar)</small></a> am <span class=\"review-date\">Dezember 3, 2021</span>                        </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Prompt and tech savvy support! Always nice to know we’re speaking the same language instead of going through support tiers. Thanks again for the quick fix guys!</div>\n</div>\n<div class=\"review\">\n   <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Good plugin</h4>\n                           <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"3 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                                </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/sankethdh/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/c3e28a6e8ce203f34c1ea3b26ffcb4d3?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/c3e28a6e8ce203f34c1ea3b26ffcb4d3?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/sankethdh/\" class=\"reviewer-name\">Sanketh D Hegde <small>(sankethdh)</small></a> am <span class=\"review-date\">November 24, 2021</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Hubspot is one of the really professional services I have come across. This plugin is helpful in many ways. Thank you</div>\n</div>\n<div class=\"review\">\n        <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Too big, too slow, won&#039;t deactivate</h4>\n                              <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/xines/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/546056018a4d40f4c758755b3e42e399?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/546056018a4d40f4c758755b3e42e399?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/xines/\" class=\"reviewer-name\">xines</a> am <span class=\"review-date\">August 18, 2021</span>                     </p>\n          </div>\n        </div>\n        <div class=\"review-body\">I think the title says it all, not worth it.\n\nTried to deactivate on my site, got a popup asking \"why?\" and no matter what option I chose, the page refreshed and nothing happened. Tried to contact support and they told me to clear my cookies, which of course made me leave the live chat, then they refused to reconnect me, I got a message saying \"no one is in the office now\" like 2 minutes later at 2 in the afternoon. \n\nI just want this plugin off my site already! </div>\n</div>\n<div class=\"review\">\n  <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Delivers a 320kb payload but you can&#039;t disable different features</h4>\n                                <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/blazenweb/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9513915bfef2fca399eeec6a3b783de2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9513915bfef2fca399eeec6a3b783de2?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/blazenweb/\" class=\"reviewer-name\">BlazenWeb</a> am <span class=\"review-date\">Juli 12, 2021</span>                   </p>\n          </div>\n        </div>\n        <div class=\"review-body\">the plugin delivers a chunky 320kb payload via this file\nMeetingsPublic/static-1.20692/bundles/project.js\nwhich is not impressing Google.\nIt would be very helpful to be able to disable features that we\'re not using to reduce the filesize, and also would be good if the filesize could be reduced by developers.\n\nIt\'s a great plugin, but I don\'t understand how it\'s so well reviewed when it delivers such a payload size. Hopefully they can improve over time.</div>\n</div>\n<div class=\"review\">\n    <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Fresh Install: Unable to activate it.</h4>\n                         <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/jsoifer/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/bed877aa85106b2ebb175f1a0af38854?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/bed877aa85106b2ebb175f1a0af38854?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/jsoifer/\" class=\"reviewer-name\">jsoifer</a> am <span class=\"review-date\">Juli 10, 2021</span>                 </p>\n          </div>\n        </div>\n        <div class=\"review-body\">This is a fresh wordpress install, updated to the current latest version.\r\n\r\nThe theme being used is a child theme from twentytwentyone - the simplest theme existing. And it has zero customizations, we\'re just getting started.\r\n\r\nYet, the plugin won\'t activate. The settings page shows up as blank.\r\n\r\nThis is frustrating.</div>\n</div>\n<div class=\"review\">\n     <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Can not get it to show after activating - Nothing</h4>\n                             <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/siouxsie/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/de4421e1aadfdde475825e2afe07f75d?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/de4421e1aadfdde475825e2afe07f75d?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/siouxsie/\" class=\"reviewer-name\">Siouxsie</a> am <span class=\"review-date\">Juni 17, 2021</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Is this a conflict? Is there a list of known conflicts somewhere?\nI have never gotten this plugin to work.\nThe menu icon and link appear after installing and activating the plugin but when I get to the page it is blank, nothing.\n\n</div>\n</div>\n\";}s:13:\"download_link\";s:49:\"https://downloads.wordpress.org/plugin/leadin.zip\";s:11:\"screenshots\";a:8:{i:1;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-1.png?rev=2669768\";s:7:\"caption\";s:40:\"Messe den Impact mithilfe von Berichten.\";}i:2;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-2.png?rev=2669768\";s:7:\"caption\";s:77:\"Organisiere, tracke und pflege deine Leads in deinem kostenlosen HubSpot CRM.\";}i:3;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-3.png?rev=2669768\";s:7:\"caption\";s:90:\"Die Formulare auf deiner Website werden automatisch mit deinem HubSpot CRM synchronisiert.\";}i:4;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-4.png?rev=2669768\";s:7:\"caption\";s:61:\"Pflege und konvertiere Leads mithilfe von Listen und E-Mails.\";}i:5;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-5.png?rev=2669768\";s:7:\"caption\";s:79:\"Sende deinen Kontakten eine ansprechende, effektive und personalisierte E-Mail.\";}i:6;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-6.png?rev=2669768\";s:7:\"caption\";s:100:\"Mit einem Live-Chat kommst du mit Besuchern deiner Website in Kontakt und kannst ihnen weiterhelfen.\";}i:7;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-7.png?rev=2669768\";s:7:\"caption\";s:137:\"Füge deiner Website rund um die Uhr zur Verfügung stehende Chatbots hinzu, um das Erfassen von Leads und den Support zu automatisieren.\";}i:8;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/leadin/assets/screenshot-8.png?rev=2669768\";s:7:\"caption\";s:127:\"Erstelle mithilfe des intuitiven Drag-&-Drop-Designers in Minutenschnelle ansprechende Formulare und Popups auf deiner Website.\";}}s:4:\"tags\";a:5:{s:9:\"analytics\";s:9:\"analytics\";s:3:\"crm\";s:3:\"crm\";s:15:\"email-marketing\";s:15:\"Email Marketing\";s:5:\"forms\";s:5:\"forms\";s:9:\"live-chat\";s:9:\"live chat\";}s:8:\"versions\";a:0:{}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:61:\"https://ps.w.org/leadin/assets/banner-772x250.png?rev=2669768\";s:4:\"high\";s:62:\"https://ps.w.org/leadin/assets/banner-1544x500.png?rev=2669768\";}}s:7:\"bbpress\";a:25:{s:4:\"name\";s:7:\"bbPress\";s:4:\"slug\";s:7:\"bbpress\";s:7:\"version\";s:5:\"2.6.9\";s:6:\"author\";s:58:\"<a href=\"https://bbpress.org\">The bbPress Contributors</a>\";s:14:\"author_profile\";s:47:\"https://profiles.wordpress.org/johnjamesjacoby/\";s:12:\"contributors\";a:5:{s:4:\"matt\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/matt/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/767fc9c115a1b989744c755db47feb60?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Matt Mullenweg\";}s:15:\"johnjamesjacoby\";a:3:{s:7:\"profile\";s:47:\"https://profiles.wordpress.org/johnjamesjacoby/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7a2644fb53ae2f7bfd7143b504af396c?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:17:\"John James Jacoby\";}s:6:\"jmdodd\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/jmdodd/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/6a7c997edea340616bcc6d0fe03f65dd?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Jennifer M. Dodd\";}s:6:\"netweb\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/netweb/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/97e1620b501da675315ba7cfb740e80f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Stephen Edgar\";}s:14:\"sergeybiryukov\";a:3:{s:7:\"profile\";s:46:\"https://profiles.wordpress.org/sergeybiryukov/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/750b7b0fcd855389264c2b1294d61bd6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Sergey Biryukov\";}}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:6:\"5.6.20\";s:6:\"rating\";i:80;s:7:\"ratings\";a:5:{i:5;i:190;i:4;i:40;i:3;i:24;i:2;i:20;i:1;i:44;}s:11:\"num_ratings\";i:318;s:15:\"support_threads\";i:2;s:24:\"support_threads_resolved\";i:0;s:15:\"active_installs\";i:200000;s:12:\"last_updated\";s:21:\"2021-11-29 3:31pm GMT\";s:5:\"added\";s:10:\"2010-01-13\";s:8:\"homepage\";s:19:\"https://bbpress.org\";s:8:\"sections\";a:5:{s:11:\"description\";s:361:\"<p>Bist du auf der Suche nach einem zeitlosen, eleganten und übersichtlichen Diskussionsforum? bbPress ist einfach zu integrieren, einfach zu bedienen und skalierbar mit deiner wachsenden Community.</p>\n<p>bbPress ist eine bewusst einfache, aber unendlich leistungsstarke Forensoftware, die von Entwicklern und Mitwirkenden von WordPress entwickelt wurde.</p>\n\";s:12:\"installation\";s:1853:\"<h4>Vom WordPress-Dashboard</h4>\n<ol>\n<li>Gehe zu  „Plugins &gt; Hinzufügen“</li>\n<li>Suche nach „bbPress“</li>\n<li>Aktiviere bbPress von deiner Plugin Seite aus. (Du wirst mit einer Willkommens-Seite begrüßt.)</li>\n</ol>\n<h4>Von WordPress.org</h4>\n<ol>\n<li>Lade bbPress herunter.</li>\n<li>Lade das „bbPress“-Verzeichnis in das /wp-content/plugins/-Verzeichnis hoch; nutze dafür deine bevorzugte Methode via ftp, sftp, scp, etc&#8230;</li>\n<li>Aktiviere bbPress von deiner Plugin Seite aus. (Du wirst mit einer Willkommens-Seite begrüßt.)</li>\n</ol>\n<h4>Einmal aktiviert</h4>\n<ol>\n<li>Visit &#8218;Forums &gt; Add New&#8216; and create some forums. (You can always delete these later.)</li>\n<li>If you have pretty permalinks enabled, visit example.com/forums/, or if you do not have pretty permalinks enabled, visit example.com?post_type=forum</li>\n<li>Visit &#8218;Settings &gt; Forums&#8216; and configure the settings to best match the needs of your community.</li>\n<li>Visit &#8218;Tools &gt; Forums &gt; Import Forums&#8216; if you have an existing forum to convert to bbPress.</li>\n</ol>\n<h4>Einmal konfiguriert</h4>\n<ul>\n<li>bbPress comes with a robust theme-compatibility API that does its best to make bbPress look and feel right with just-about any WordPress theme. You may need to adjust some styling on your own to make everything look pristine.</li>\n<li>You may want to customize the register/activation/sign-in/lost-password flows, to better suit your site. bbPress comes with a bevy of shortcodes to make this possible, listed here: https://codex.bbpress.org/shortcodes/</li>\n<li>bbPress also comes with built-in support for Akismet and BuddyPress, two very popular and very powerful WordPress plugins. If you&#8217;re using either, visit your Forum Settings page and ensure that integration appears correct.</li>\n</ul>\n\";s:9:\"changelog\";s:104:\"<p>Check out the <a href=\"https://codex.bbpress.org/releases/\" rel=\"nofollow ugc\">releases page</a></p>\n\";s:11:\"screenshots\";s:1543:\"<ol><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-1.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-1.png?rev=872931\" alt=\"Forums - Admin Interface\"></a><p>Forums - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-2.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-2.png?rev=872931\" alt=\"Topics - Admin Interface\"></a><p>Topics - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-3.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-3.png?rev=872931\" alt=\"Replies - Admin Interface\"></a><p>Replies - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-4.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-4.png?rev=872931\" alt=\"Settings - Admin Interface\"></a><p>Settings - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-5.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-5.png?rev=872931\" alt=\"Settings 2 - Admin Interface\"></a><p>Settings 2 - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-6.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-6.png?rev=872931\" alt=\"Themes - Admin Interface\"></a><p>Themes - Admin Interface</p></li><li><a href=\"https://ps.w.org/bbpress/assets/screenshot-7.png?rev=872931\"><img src=\"https://ps.w.org/bbpress/assets/screenshot-7.png?rev=872931\" alt=\"Single Forum - Default Theme\"></a><p>Single Forum - Default Theme</p></li></ol>\";s:7:\"reviews\";s:16388:\"<div class=\"review\">\n <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Wrecks your roles; impossible to clean up after - AVOID THIS PLUGIN</h4>\n                           <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/ourroots/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9d9375220fce4a42e0252e5aa6988dd8?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9d9375220fce4a42e0252e5aa6988dd8?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/ourroots/\" class=\"reviewer-name\">ourroots</a> am <span class=\"review-date\">August 24, 2021</span>                    </p>\n          </div>\n        </div>\n        <div class=\"review-body\">We wanted to try BBPress but we discovered quickly that it caused way too many problems with roles &amp; permissions for the site. So we removed it. But it turns out that for at least 8 years bbPress has known the roles can\'t be removed cleanly and they just shrug and say \"not important.\" So, I recommend you NOT INSTALL THIS PLUGIN. It will leave ugly traces behind itself like a nasty WordPress slug and you\'ll waste hours googling it and trying to fix it to no avail. It\'s old, it\'s ugly, and it\'s a mess.</div>\n</div>\n<div class=\"review\">\n <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">It works, it&#039;s very basic, and clunky</h4>\n                            <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"3 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                                </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/llewen/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ee79e9411240a75f9349769770b52aa9?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ee79e9411240a75f9349769770b52aa9?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/llewen/\" class=\"reviewer-name\">Llewen <small>(llewen)</small></a> am <span class=\"review-date\">August 6, 2021</span>                   </p>\n          </div>\n        </div>\n        <div class=\"review-body\">If you\'ve ever used other forums software, or especially if you\'ve deployed other forums software, it becomes very clear after you install bbpress that this plugin is basic, and clunky.  An awful lot of what would be considered standard functionality in forums software simply isn\'t present, or if it is, is awkward and clunky to use.\n\nHaving said that, it is the best forums plugin I am aware of for WordPress, perhaps the only one, and it is FOSS, so hurrah for that, and it mostly does the job.  There are also plugins available for it that extend it\'s functionality and add features which almost put it on a par with other forums software, but even with those, not quite.</div>\n</div>\n<div class=\"review\">\n    <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Works well</h4>\n                            <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/lolafranklin0501/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/3beeec41f11f35baea3dae398e16e559?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/3beeec41f11f35baea3dae398e16e559?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/lolafranklin0501/\" class=\"reviewer-name\">lolafranklin0501</a> am <span class=\"review-date\">April 21, 2021</span>                     </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Helpful plugin, good functionality.</div>\n</div>\n<div class=\"review\">\n  <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">I love it!</h4>\n                            <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/alinaalinuta/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/692d4a10a219a53baedb776dad69e629?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/692d4a10a219a53baedb776dad69e629?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/alinaalinuta/\" class=\"reviewer-name\">alinaalinuta</a> am <span class=\"review-date\">Januar 20, 2021</span>                        </p>\n          </div>\n        </div>\n        <div class=\"review-body\">bbPress is powerfull and it integrates well with buddypress. I huge recommend it!\n </div>\n</div>\n<div class=\"review\">\n <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Very raw and has issues</h4>\n                               <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"2 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                         </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/rjrjrjrj/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/1e8155fdda0e0b75f488bea4fd130d8f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/1e8155fdda0e0b75f488bea4fd130d8f?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/rjrjrjrj/\" class=\"reviewer-name\">rjrjrjrj</a> am <span class=\"review-date\">Dezember 31, 2020</span>                  </p>\n          </div>\n        </div>\n        <div class=\"review-body\">OOB the forum looks very raw and absolutely DOES NOT follow the active theme. It also produced some artifacts that the dev refused to even look into.</div>\n</div>\n<div class=\"review\">\n        <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Dois-je rester en version 2.5 à vie ?</h4>\n                                <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"3 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                                </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/supermagicien/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a5a24531c14fc84cf105731125d52bc0?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a5a24531c14fc84cf105731125d52bc0?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/supermagicien/\" class=\"reviewer-name\">supermagicien</a> am <span class=\"review-date\">Dezember 14, 2020</span>                   </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Bonjour,\n\nBBpress est un chouette programme, le souci est que je suis obligé de revenir à la version 2.5.14 car dès que je passe à l\'une des versions récentes le forum rencontre de nombreux soucis, pb horodatage, sujets qui disparaissent, édition d\'un post impossible sans perdre le sujet complet, bref, compliqué !\n\nJe précise que j\'ai changé d\'hébergeur et de thème ces derniers mois... c\'est bien BBPRESS le souci...\n\nJ\'attends la version 2.6.7 avec espoir...</div>\n</div>\n<div class=\"review\">\n        <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Broke admin access. Goodbye</h4>\n                           <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/eaec/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d3d62c8b8631a8a1e96ee7a571d23b28?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d3d62c8b8631a8a1e96ee7a571d23b28?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/eaec/\" class=\"reviewer-name\">eaec</a> am <span class=\"review-date\">Oktober 28, 2020</span>                       </p>\n          </div>\n        </div>\n        <div class=\"review-body\">I had installed this to test it out and had deactivated it, and it broke admin access to my site, twice, overwriting permissions for my admin account.\n\nNEVER touching this plugin again, especially after reading that this has been an ongoing issue for years now. Cost me a lot of time and effort, not to mention IT fees in order to diagnose the issue so that I could access the admin tools to delete it.\n\nGoodbye! I will be sure to find your other plugins and avoid them as well.</div>\n</div>\n<div class=\"review\">\n   <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">This is classic</h4>\n                               <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/gcarlsen/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/3e41d6d7bf35ad17f0312cb210213900?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/3e41d6d7bf35ad17f0312cb210213900?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/gcarlsen/\" class=\"reviewer-name\">gcarlsen</a> am <span class=\"review-date\">Oktober 5, 2020</span>                    </p>\n          </div>\n        </div>\n        <div class=\"review-body\">This is really helpful plugins with classic functionality. So helpful and powerful addon. Thank you!</div>\n</div>\n<div class=\"review\">\n <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Sub-forums</h4>\n                            <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/nesdam1981/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/f50699db8a690b904215a0256ee6612b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/f50699db8a690b904215a0256ee6612b?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/nesdam1981/\" class=\"reviewer-name\">Nesdam1981</a> am <span class=\"review-date\">Oktober 4, 2020</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">It\'s great that it works natively with Wordpress but the lack of options and settings is a joke. I have a support forum with 50 sub-forums and counting, all of these sub-forums are shown on the main page and clutters the entire forum. Why there is no option yet as of 2020 to set a limit of sub-forums shown on main category is beyond me.\nSpontaneous feeling about bbPress is that it\'s a lazy take on trying to make a forum software that works with Wordpress. Sadly my theme requires bbPress to function properly, would exchange it in a heartbeat.</div>\n</div>\n<div class=\"review\">\n       <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Total Lack of Communication</h4>\n                           <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/lruzza/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/e6ea1440319737e40bd3369e6330d500?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/e6ea1440319737e40bd3369e6330d500?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/lruzza/\" class=\"reviewer-name\">laetee <small>(lruzza)</small></a> am <span class=\"review-date\">Oktober 1, 2020</span>                  </p>\n          </div>\n        </div>\n        <div class=\"review-body\">How do the developers expect users to continue using this plugin if none of them will answer troubleshooting questions? Not to mention there is no direct troubleshooting email to engage with.\n\nYour plugin comes with many issues, some that are years old, that need to be fixed. I’m thinking of changing to a completely new plugin because of the lack of communication from developers.\n\nIt\'s fine to have a support forum for users to help other users, but when your bugs are this abundant, clearly you need a better troubleshooting team that actually responds to inquiries.\n\nI’ve been developing websites with both paid AND free products and have never had any issues with receiving one to one responses with the free products. Ever. This plugin has been a first.\n\nDisappointed.</div>\n</div>\n\";}s:13:\"download_link\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.9.zip\";s:11:\"screenshots\";a:7:{i:1;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-1.png?rev=872931\";s:7:\"caption\";s:24:\"Forums - Admin Interface\";}i:2;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-2.png?rev=872931\";s:7:\"caption\";s:24:\"Topics - Admin Interface\";}i:3;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-3.png?rev=872931\";s:7:\"caption\";s:25:\"Replies - Admin Interface\";}i:4;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-4.png?rev=872931\";s:7:\"caption\";s:26:\"Settings - Admin Interface\";}i:5;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-5.png?rev=872931\";s:7:\"caption\";s:28:\"Settings 2 - Admin Interface\";}i:6;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-6.png?rev=872931\";s:7:\"caption\";s:24:\"Themes - Admin Interface\";}i:7;a:2:{s:3:\"src\";s:59:\"https://ps.w.org/bbpress/assets/screenshot-7.png?rev=872931\";s:7:\"caption\";s:28:\"Single Forum - Default Theme\";}}s:4:\"tags\";a:4:{s:10:\"discussion\";s:10:\"discussion\";s:5:\"forum\";s:5:\"forum\";s:6:\"forums\";s:6:\"forums\";s:7:\"support\";s:7:\"support\";}s:8:\"versions\";a:65:{s:3:\"2.0\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.0.zip\";s:10:\"2.0-beta-1\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.0-beta-1.zip\";s:11:\"2.0-beta-2b\";s:62:\"https://downloads.wordpress.org/plugin/bbpress.2.0-beta-2b.zip\";s:10:\"2.0-beta-3\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.0-beta-3.zip\";s:11:\"2.0-beta-3b\";s:62:\"https://downloads.wordpress.org/plugin/bbpress.2.0-beta-3b.zip\";s:8:\"2.0-rc-2\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.0-rc-2.zip\";s:8:\"2.0-rc-3\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.0-rc-3.zip\";s:8:\"2.0-rc-4\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.0-rc-4.zip\";s:8:\"2.0-rc-5\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.0-rc-5.zip\";s:5:\"2.0.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.0.1.zip\";s:5:\"2.0.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.0.2.zip\";s:5:\"2.0.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.0.3.zip\";s:3:\"2.1\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.1.zip\";s:10:\"2.1-beta-1\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.1-beta-1.zip\";s:7:\"2.1-rc1\";s:58:\"https://downloads.wordpress.org/plugin/bbpress.2.1-rc1.zip\";s:7:\"2.1-rc2\";s:58:\"https://downloads.wordpress.org/plugin/bbpress.2.1-rc2.zip\";s:7:\"2.1-rc3\";s:58:\"https://downloads.wordpress.org/plugin/bbpress.2.1-rc3.zip\";s:7:\"2.1-rc4\";s:58:\"https://downloads.wordpress.org/plugin/bbpress.2.1-rc4.zip\";s:5:\"2.1.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.1.1.zip\";s:5:\"2.1.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.1.2.zip\";s:5:\"2.1.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.1.3.zip\";s:3:\"2.2\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.2.zip\";s:5:\"2.2.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.2.1.zip\";s:5:\"2.2.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.2.2.zip\";s:5:\"2.2.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.2.3.zip\";s:5:\"2.2.4\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.2.4.zip\";s:3:\"2.3\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.3.zip\";s:9:\"2.3-beta1\";s:60:\"https://downloads.wordpress.org/plugin/bbpress.2.3-beta1.zip\";s:5:\"2.3.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.3.1.zip\";s:5:\"2.3.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.3.2.zip\";s:3:\"2.4\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.4.zip\";s:5:\"2.4.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.4.1.zip\";s:3:\"2.5\";s:54:\"https://downloads.wordpress.org/plugin/bbpress.2.5.zip\";s:5:\"2.5.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.1.zip\";s:6:\"2.5.10\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.10.zip\";s:6:\"2.5.11\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.11.zip\";s:6:\"2.5.12\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.12.zip\";s:6:\"2.5.13\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.13.zip\";s:6:\"2.5.14\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.14.zip\";s:5:\"2.5.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.2.zip\";s:5:\"2.5.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.3.zip\";s:5:\"2.5.4\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.4.zip\";s:5:\"2.5.5\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.5.zip\";s:5:\"2.5.6\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.6.zip\";s:5:\"2.5.7\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.7.zip\";s:5:\"2.5.8\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.8.zip\";s:5:\"2.5.9\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.9.zip\";s:10:\"2.6-beta-1\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.6-beta-1.zip\";s:10:\"2.6-beta-2\";s:61:\"https://downloads.wordpress.org/plugin/bbpress.2.6-beta-2.zip\";s:8:\"2.6-rc-1\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-1.zip\";s:8:\"2.6-rc-3\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-3.zip\";s:8:\"2.6-rc-5\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-5.zip\";s:8:\"2.6-rc-6\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-6.zip\";s:8:\"2.6-rc-7\";s:59:\"https://downloads.wordpress.org/plugin/bbpress.2.6-rc-7.zip\";s:5:\"2.6.0\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.0.zip\";s:5:\"2.6.1\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.1.zip\";s:5:\"2.6.2\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.2.zip\";s:5:\"2.6.3\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.3.zip\";s:5:\"2.6.4\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.4.zip\";s:5:\"2.6.5\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.5.zip\";s:5:\"2.6.6\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.6.zip\";s:5:\"2.6.7\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.7.zip\";s:5:\"2.6.8\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.8.zip\";s:5:\"2.6.9\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.6.9.zip\";s:5:\"trunk\";s:50:\"https://downloads.wordpress.org/plugin/bbpress.zip\";}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:61:\"https://ps.w.org/bbpress/assets/banner-772x250.png?rev=478663\";s:4:\"high\";s:62:\"https://ps.w.org/bbpress/assets/banner-1544x500.png?rev=567403\";}}s:14:\"contact-form-7\";a:25:{s:4:\"name\";s:14:\"Contact Form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:7:\"version\";s:5:\"5.5.4\";s:6:\"author\";s:62:\"<a href=\"https://ideasilo.wordpress.com/\">Takayuki Miyoshi</a>\";s:14:\"author_profile\";s:44:\"https://profiles.wordpress.org/takayukister/\";s:12:\"contributors\";a:1:{s:12:\"takayukister\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/takayukister/\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/bb7bc21850c77e9eb16b44102f4a539d?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Takayuki Miyoshi\";}}s:8:\"requires\";s:3:\"5.7\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";b:0;s:6:\"rating\";i:82;s:7:\"ratings\";a:5:{i:5;i:1337;i:4;i:134;i:3;i:61;i:2;i:50;i:1;i:348;}s:11:\"num_ratings\";i:1930;s:15:\"support_threads\";i:367;s:24:\"support_threads_resolved\";i:87;s:15:\"active_installs\";i:5000000;s:12:\"last_updated\";s:21:\"2022-01-20 6:49am GMT\";s:5:\"added\";s:10:\"2007-08-02\";s:8:\"homepage\";s:25:\"https://contactform7.com/\";s:8:\"sections\";a:6:{s:11:\"description\";s:3268:\"<p>Contact Form 7 kann zahlreiche Kontaktformulare verwalten und du kannst das Formular und E-Mail-Inhalte flexibel mit einfachem Markup anpassen. Das Formular erlaubt Ajax-unterstütztes Senden, CAPTCHA, Akismet Spam-Filterung und so weiter.</p>\n<h4>Doku und Support</h4>\n<p>Du findest eine <a href=\"https://contactform7.com/docs/\" rel=\"nofollow ugc\">Dokumentation (engl.)</a>, <a href=\"https://contactform7.com/faq/\" rel=\"nofollow ugc\">FAQ</a> und weitere detaillierte Informationen über Contact Form 7 auf <a href=\"https://contactform7.com/\" rel=\"nofollow ugc\">contactform7.com</a>. Wenn du in der Dokumentation oder den FAQ eine Antwort auf deine Frage vermisst, solltest du im <a href=\"https://wordpress.org/support/plugin/contact-form-7/\">Support-Forum</a> auf WordPress.org nachsehen. Wenn du keine Themen findest, die zu deiner bestimmten Frage passen, erstelle bitte dazu einen neuen Thread.</p>\n<h4>Contact Form 7 braucht deine Unterstützung</h4>\n<p>Es ist schwierig, die Entwicklung und den Support für dieses kostenlose Plugin ohne die Unterstützung von Benutzern wie dir fortzusetzen. Wenn dir die Verwendung von Contact Form 7 zusagt und Freude bereitet, denke bitte über eine <a href=\"https://contactform7.com/donate/\" rel=\"nofollow ugc\">Spende</a> nach. Deine Spende trägt zur fortlaufenden Entwicklung und einem besserem Support bei.</p>\n<h4>Datenschutzhinweise</h4>\n<p>Das Plugin tut in der Standardkonfiguration folgendes nicht:</p>\n<ul>\n<li>Benutzer heimlich verfolgen;</li>\n<li>alle persönlichen Benutzerdaten in die Datenbank schreiben;</li>\n<li>alle/beliebige Daten an externe Server senden;</li>\n<li>Cookies benutzen.</li>\n</ul>\n<p>Wenn du bestimmte Funktionen in diesem Plugin aktivierst, können die persönlichen Daten des Kontaktformulars, einschließlich der IP-Adresse, an den Dienstanbieter gesendet werden. Es wird daher empfohlen, die Datenschutzerklärung des Anbieters zu bestätigen. Zu diesen Funktionen gehören:</p>\n<ul>\n<li>reCAPTCHA (<a href=\"https://policies.google.com/?hl=de\" rel=\"nofollow ugc\">Google</a>)</li>\n<li>Akismet (<a href=\"https://automattic.com/privacy/\" rel=\"nofollow ugc\">Automattic</a>)</li>\n<li>Constant Contact (<a href=\"https://www.endurance.com/privacy\" rel=\"nofollow ugc\">Endurance International Group</a>)</li>\n<li><a href=\"https://de.sendinblue.com/legal/privacypolicy/\" rel=\"nofollow ugc\">Sendinblue</a></li>\n<li><a href=\"https://stripe.com/privacy\" rel=\"nofollow ugc\">Stripe</a></li>\n</ul>\n<h4>Empfohlene Plugins</h4>\n<p>Die folgenden Plugins werden Benutzern von Contact Form 7 empfohlen:</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/flamingo/\">Flamingo</a> by Takayuki Miyoshi &#8211; Mit Flamingo kannst du Nachrichten, welche über Kontaktformulare versendet wurden, in die Datenbank speichern.</li>\n<li><a href=\"https://wordpress.org/extend/plugins/bogo/\">Bogo</a> von Takayuki Miyoshi &#8211; Bogo ist ein einfaches Plugin für mehrsprachige Seiten, das keine Kopfschmerzen verursacht.</li>\n</ul>\n<h4>Übersetzungen</h4>\n<p>Du kannst <a href=\"https://contactform7.com/translating-contact-form-7/\" rel=\"nofollow ugc\">Contact Form 7 übersetzen</a> auf <a href=\"https://translate.wordpress.org/projects/wp-plugins/contact-form-7\" rel=\"nofollow ugc\">translate.wordpress.org</a>.</p>\n\";s:12:\"installation\";s:509:\"<ol>\n<li>Lade den kompletten <code>contact-form-7</code> Ordner in dein <code>/wp-content/plugins/</code> Verzeichnis.</li>\n<li>Aktiviere das Plugin über die <strong>Plugins</strong>-Seite (<strong>Plugins &gt; Installierte Plugins</strong>).</li>\n</ol>\n<p>Du findest das Menü <strong>Kontakt</strong> in deinem WordPress-Administrationsbereich.</p>\n<p>Informationen zur grundlegenden Handhabung findest du auch auf der <a href=\"https://contactform7.com/\" rel=\"nofollow ugc\">Plugin-Website (engl.)</a>.</p>\n\";s:3:\"faq\";s:503:\"<p>Hast du Fragen zu oder Schwierigkeiten mit Contact Form 7? Nutze entsprechend die folgenden Unterstützungs-Angebote.</p>\n<ol>\n<li><a href=\"https://contactform7.com/docs/\" rel=\"nofollow ugc\">Dokumentation (engl.)</a></li>\n<li><a href=\"https://contactform7.com/faq/\" rel=\"nofollow ugc\">FAQ (engl.)</a></li>\n<li><a href=\"https://wordpress.org/support/plugin/contact-form-7/\">Support Forum (engl.)</a></li>\n</ol>\n<p><a href=\"https://contactform7.com/support/\" rel=\"nofollow ugc\">Support (engl.)</a></p>\n\";s:9:\"changelog\";s:1386:\"<p>Weitere Informationen unter <a href=\"https://contactform7.com/category/releases/\" rel=\"nofollow ugc\">Releases (engl.)</a>.</p>\n<h4>5.5.4</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-554/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-554/</a></p>\n<h4>5.5.3</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-553/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-553/</a></p>\n<h4>5.5.2</h4>\n<ul>\n<li>REST API: Removes argument schema reference that causes error when the form has &#8218;id&#8216; field.</li>\n<li>Changes method names that are reserved in PHP 5.6.</li>\n</ul>\n<h4>5.5.1</h4>\n<ul>\n<li>Behoben: Reserviertes Schlüsselwort wurde in PHP-Klassenkonstantennamen verwendet.</li>\n<li>Behoben: Unerfasster TypeError bei <code>in_array()</code>-Aufruf.</li>\n</ul>\n<h4>5.5</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-55/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-55/</a></p>\n<h4>5.4.2</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-542/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-542/</a></p>\n<h4>5.4.1</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-541/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-541/</a></p>\n<h4>5.4</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-54/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-54/</a></p>\n\";s:11:\"screenshots\";s:225:\"<ol><li><a href=\"https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454\"><img src=\"https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454\" alt=\"screenshot-1.png\"></a><p>screenshot-1.png</p></li></ol>\";s:7:\"reviews\";s:14087:\"<div class=\"review\">\n    <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">No Support because of reCapctcha V3 ERROR grecaptcha is not defined</h4>\n                           <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/dbase66/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/0cd43209e7e9625aaa7a3cd491298356?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/0cd43209e7e9625aaa7a3cd491298356?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/dbase66/\" class=\"reviewer-name\">dbase66</a> am <span class=\"review-date\">Januar 17, 2022</span>                       </p>\n          </div>\n        </div>\n        <div class=\"review-body\">grecaptcha is not defined</div>\n</div>\n<div class=\"review\">\n    <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Nicht mal die Texte der Buttons sind zu verändern</h4>\n                            <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/andreawi48/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/06957b34c933df6f8db0f3142af020c1?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/06957b34c933df6f8db0f3142af020c1?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/andreawi48/\" class=\"reviewer-name\">andreawi48</a> am <span class=\"review-date\">Januar 16, 2022</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Es gibt nicht mal eine Möglichkeit, in den Einstellungen die Texte der Buttons / Feldbeschriftungen zu ändern - arm! Sofort wieder deinstalliert! </div>\n</div>\n<div class=\"review\">\n <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Great plugin</h4>\n                          <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/compupat/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/689419d3a647b9fa0b5d63cbea4cfa9a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/689419d3a647b9fa0b5d63cbea4cfa9a?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/compupat/\" class=\"reviewer-name\">compupat</a> am <span class=\"review-date\">Januar 9, 2022</span>                     </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Good plugin. Very helpfull</div>\n</div>\n<div class=\"review\">\n   <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Excellent</h4>\n                             <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/merlinimat/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/2909edee6d4464d40254a828f346181d?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/2909edee6d4464d40254a828f346181d?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/merlinimat/\" class=\"reviewer-name\">merlinimat</a> am <span class=\"review-date\">Januar 7, 2022</span>                       </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Excellent plugin, a bit tricky because of its wrappers</div>\n</div>\n<div class=\"review\">\n       <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Problème non résolu et aucune assistance</h4>\n                            <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/hakimgd/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/553e676efcc2cc07aadf14011bcc0ca9?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/553e676efcc2cc07aadf14011bcc0ca9?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/hakimgd/\" class=\"reviewer-name\">hakimgd</a> am <span class=\"review-date\">Januar 4, 2022</span>                        </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Installation en local, les mails ne s\'envoient pas sans savoir pour quel raisons, et aucune aide venant du support (ni par mail ni sur le forum)</div>\n</div>\n<div class=\"review\">\n    <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Great plugin, but poor support.</h4>\n                               <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"3 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                                </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/michaellanfield/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/3f7eaf5fd171674bcf39b4e1aeb6d205?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/3f7eaf5fd171674bcf39b4e1aeb6d205?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/michaellanfield/\" class=\"reviewer-name\">Michael Lanfield <small>(michaellanfield)</small></a> am <span class=\"review-date\">Januar 3, 2022</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">I love contact form 7 and have used it for many years without any problem. But recently after trying to get customer support for the product for a modification for another form on my website, the author just told me to fix the email settings which was not the issue. After replying back with more information, and even a second reply to him, there was no reply back or solution. Very disappointed. </div>\n</div>\n<div class=\"review\">\n       <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Version 5.5.3 is Messy</h4>\n                                <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"1 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>                          </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/mydecorative/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/1a27a7c4fa61271cefd2dc4191fe25fe?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/1a27a7c4fa61271cefd2dc4191fe25fe?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/mydecorative/\" class=\"reviewer-name\">Himanshu Shah <small>(mydecorative)</small></a> am <span class=\"review-date\">Dezember 29, 2021</span>                       </p>\n          </div>\n        </div>\n        <div class=\"review-body\">I\'ve updated Version 5.5.3, but I\'m getting unaligned messy emails; I would like to request that dear developers kindly check &amp; solve the issue ASAP.</div>\n</div>\n<div class=\"review\">\n  <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Super simples, funcional e eficiente</h4>\n                          <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/sandroacv/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/aca581624e47e23bc2ecd148b0dc81c0?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/aca581624e47e23bc2ecd148b0dc81c0?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/sandroacv/\" class=\"reviewer-name\">sandroacv</a> am <span class=\"review-date\">Dezember 15, 2021</span>                       </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Gosto desse plugin, gratuito, simples, funcional e eficiente. serve ao propósito qual foi concebido. Show!</div>\n</div>\n<div class=\"review\">\n  <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Perfect! The ONLY contact form!</h4>\n                               <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/xetouko/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ea2a15c4643a7ff5046d7d852459c809?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ea2a15c4643a7ff5046d7d852459c809?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/xetouko/\" class=\"reviewer-name\">xetouko</a> am <span class=\"review-date\">Dezember 2, 2021</span>                      </p>\n          </div>\n        </div>\n        <div class=\"review-body\">Amazing plugin! Works great! This is amazing! Truly one of the most powerful and useful plugins out there. Absolutely necessary for every website! Plenty of options.\nThanks so much for creating this!</div>\n</div>\n<div class=\"review\">\n     <div class=\"review-head\">\n           <div class=\"reviewer-info\">\n                 <div class=\"review-title-section\">\n                          <h4 class=\"review-title\">Need to integrate with payment gateway</h4>\n                                <div class=\"star-rating\">\n                           <div class=\"wporg-ratings\" aria-label=\"5 von 5 Sternen\" data-title-template=\"%s von 5 Sternen\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>                              </div>\n                        </div>\n                        <p class=\"reviewer\">\n                                Von <a href=\"https://profiles.wordpress.org/abhisekbose99/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/8c105782cb7db31b59207e112f3f2beb?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/8c105782cb7db31b59207e112f3f2beb?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\'/></a><a href=\"https://profiles.wordpress.org/abhisekbose99/\" class=\"reviewer-name\">abhisekbose99</a> am <span class=\"review-date\">November 23, 2021</span>                   </p>\n          </div>\n        </div>\n        <div class=\"review-body\">This plugin has made history in Wordpress age. Now if it brings any add-ons or scope to integrate with various payment gateway, it\'ll be very helpful for us.    </div>\n</div>\n\";}s:13:\"download_link\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.4.zip\";s:11:\"screenshots\";a:1:{i:1;a:2:{s:3:\"src\";s:67:\"https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454\";s:7:\"caption\";s:16:\"screenshot-1.png\";}}s:4:\"tags\";a:5:{s:7:\"contact\";s:7:\"contact\";s:12:\"contact-form\";s:12:\"contact form\";s:5:\"email\";s:5:\"email\";s:8:\"feedback\";s:8:\"feedback\";s:4:\"form\";s:4:\"form\";}s:8:\"versions\";a:156:{s:3:\"1.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.1.zip\";s:4:\"1.10\";s:62:\"https://downloads.wordpress.org/plugin/contact-form-7.1.10.zip\";s:8:\"1.10.0.1\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.1.10.0.1.zip\";s:6:\"1.10.1\";s:64:\"https://downloads.wordpress.org/plugin/contact-form-7.1.10.1.zip\";s:3:\"1.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.2.zip\";s:3:\"1.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.3.zip\";s:5:\"1.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.3.1.zip\";s:5:\"1.3.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.3.2.zip\";s:3:\"1.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.zip\";s:5:\"1.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.1.zip\";s:5:\"1.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.2.zip\";s:5:\"1.4.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.3.zip\";s:5:\"1.4.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.4.zip\";s:3:\"1.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.5.zip\";s:3:\"1.6\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.6.zip\";s:5:\"1.6.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.6.1.zip\";s:3:\"1.7\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.zip\";s:5:\"1.7.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.1.zip\";s:5:\"1.7.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.2.zip\";s:5:\"1.7.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.4.zip\";s:5:\"1.7.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.5.zip\";s:5:\"1.7.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.6.zip\";s:7:\"1.7.6.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.6.1.zip\";s:5:\"1.7.7\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.7.zip\";s:7:\"1.7.7.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.7.1.zip\";s:5:\"1.7.8\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.8.zip\";s:3:\"1.8\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.zip\";s:7:\"1.8.0.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.1.zip\";s:7:\"1.8.0.2\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.2.zip\";s:7:\"1.8.0.3\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.3.zip\";s:7:\"1.8.0.4\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.4.zip\";s:5:\"1.8.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.1.zip\";s:7:\"1.8.1.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.1.1.zip\";s:3:\"1.9\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.zip\";s:5:\"1.9.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.1.zip\";s:5:\"1.9.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.zip\";s:7:\"1.9.2.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.1.zip\";s:7:\"1.9.2.2\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.2.zip\";s:5:\"1.9.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.3.zip\";s:5:\"1.9.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.4.zip\";s:5:\"1.9.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.5.zip\";s:7:\"1.9.5.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.5.1.zip\";s:3:\"2.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.zip\";s:8:\"2.0-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0-beta.zip\";s:5:\"2.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.1.zip\";s:5:\"2.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.2.zip\";s:5:\"2.0.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.3.zip\";s:5:\"2.0.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.4.zip\";s:5:\"2.0.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.5.zip\";s:5:\"2.0.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.6.zip\";s:5:\"2.0.7\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.7.zip\";s:3:\"2.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.1.zip\";s:5:\"2.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.1.1.zip\";s:5:\"2.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.1.2.zip\";s:3:\"2.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.2.zip\";s:5:\"2.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.2.1.zip\";s:3:\"2.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.3.zip\";s:5:\"2.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.3.1.zip\";s:3:\"2.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.zip\";s:5:\"2.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.1.zip\";s:5:\"2.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.2.zip\";s:5:\"2.4.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.3.zip\";s:5:\"2.4.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.4.zip\";s:5:\"2.4.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.5.zip\";s:5:\"2.4.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.6.zip\";s:3:\"3.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.zip\";s:8:\"3.0-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0-beta.zip\";s:5:\"3.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.1.zip\";s:5:\"3.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.2.zip\";s:7:\"3.0.2.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.2.1.zip\";s:3:\"3.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.1.zip\";s:5:\"3.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.1.1.zip\";s:5:\"3.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.1.2.zip\";s:3:\"3.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.2.zip\";s:5:\"3.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.2.1.zip\";s:3:\"3.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.zip\";s:5:\"3.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.1.zip\";s:5:\"3.3.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.2.zip\";s:5:\"3.3.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.3.zip\";s:3:\"3.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.4.zip\";s:5:\"3.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.4.1.zip\";s:5:\"3.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.4.2.zip\";s:3:\"3.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.zip\";s:5:\"3.5.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.1.zip\";s:5:\"3.5.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.2.zip\";s:5:\"3.5.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.3.zip\";s:5:\"3.5.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.4.zip\";s:3:\"3.6\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.6.zip\";s:3:\"3.7\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.7.zip\";s:5:\"3.7.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.7.1.zip\";s:5:\"3.7.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.7.2.zip\";s:3:\"3.8\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.8.zip\";s:5:\"3.8.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.8.1.zip\";s:3:\"3.9\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.zip\";s:8:\"3.9-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9-beta.zip\";s:5:\"3.9.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.1.zip\";s:5:\"3.9.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.2.zip\";s:5:\"3.9.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.3.zip\";s:3:\"4.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.zip\";s:5:\"4.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.1.zip\";s:5:\"4.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.2.zip\";s:5:\"4.0.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.3.zip\";s:3:\"4.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1.zip\";s:8:\"4.1-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1-beta.zip\";s:5:\"4.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1.1.zip\";s:5:\"4.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1.2.zip\";s:3:\"4.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2.zip\";s:8:\"4.2-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2-beta.zip\";s:5:\"4.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2.1.zip\";s:5:\"4.2.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2.2.zip\";s:3:\"4.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.3.zip\";s:5:\"4.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.3.1.zip\";s:3:\"4.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.4.zip\";s:5:\"4.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.4.1.zip\";s:5:\"4.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.4.2.zip\";s:3:\"4.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.5.zip\";s:5:\"4.5.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.5.1.zip\";s:3:\"4.6\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.6.zip\";s:5:\"4.6.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.6.1.zip\";s:3:\"4.7\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.7.zip\";s:3:\"4.8\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.8.zip\";s:5:\"4.8.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.8.1.zip\";s:3:\"4.9\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.9.zip\";s:5:\"4.9.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.9.1.zip\";s:5:\"4.9.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.9.2.zip\";s:3:\"5.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.zip\";s:5:\"5.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.1.zip\";s:5:\"5.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.2.zip\";s:5:\"5.0.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.3.zip\";s:5:\"5.0.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.4.zip\";s:5:\"5.0.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.5.zip\";s:3:\"5.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.zip\";s:5:\"5.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.1.zip\";s:5:\"5.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.2.zip\";s:5:\"5.1.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.3.zip\";s:5:\"5.1.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.4.zip\";s:5:\"5.1.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.5.zip\";s:5:\"5.1.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.6.zip\";s:5:\"5.1.7\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.7.zip\";s:5:\"5.1.8\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.8.zip\";s:5:\"5.1.9\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.9.zip\";s:3:\"5.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.2.zip\";s:5:\"5.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.2.1.zip\";s:5:\"5.2.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.2.2.zip\";s:3:\"5.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.3.zip\";s:5:\"5.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.3.1.zip\";s:5:\"5.3.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.3.2.zip\";s:3:\"5.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.4.zip\";s:5:\"5.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.4.1.zip\";s:5:\"5.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.4.2.zip\";s:3:\"5.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.zip\";s:5:\"5.5.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.1.zip\";s:5:\"5.5.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.2.zip\";s:5:\"5.5.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.3.zip\";s:5:\"5.5.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.4.zip\";s:5:\"trunk\";s:57:\"https://downloads.wordpress.org/plugin/contact-form-7.zip\";}s:11:\"donate_link\";s:32:\"https://contactform7.com/donate/\";s:7:\"banners\";a:2:{s:3:\"low\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";s:4:\"high\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";}}}','no'),(320,'_site_transient_avada_addons_json','{\"418947\":{\"post_title\":\"Custom Search Element\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2021\\/04\\/custom_search_880_660.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2021\\/04\\/imgpsh_fullsize_anim.jpeg\",\"plugin_name\":\"Custom Search Element\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/custom-search-element-for-avada-builder\\/31213422?ref=ThemeFusion\",\"new\":false,\"date\":1618918239},\"416560\":{\"post_title\":\"Custom Field Element\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2018\\/08\\/custom_fields_element.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2018\\/08\\/custom_fields_element.jpg\",\"plugin_name\":\"Custom Field Element\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/custom-field-element-for-fusion-builder\\/22247344?ref=ThemeFusion\",\"new\":false,\"date\":1533635113},\"416071\":{\"post_title\":\"Elegant Elements\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2017\\/12\\/elegant_elements.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2017\\/12\\/elegant_elements.jpg\",\"plugin_name\":\"Elegant Elements\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/elegant-elements-for-fusion-builder\\/21113424?ref=ThemeFusion\",\"new\":false,\"date\":1513943064},\"416177\":{\"post_title\":\"Horizontal & Vertical Duo Button\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2018\\/03\\/duo_button.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2018\\/03\\/duo_button.jpg\",\"plugin_name\":\"Fusion Builder Horizontal & Vertical Duo Button\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/horizontal-vertical-duo-button-element-for-avada-v5-fusion\\/21602449?ref=ThemeFusion\",\"new\":false,\"date\":1522053820},\"415163\":{\"post_title\":\"Element Bundle\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2017\\/02\\/arcticlune_element_bundle.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2017\\/02\\/arcticlune_element_bundle.jpg\",\"plugin_name\":null,\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/element-bundle-addon-for-avada-v5-fusion-builder\\/19451303?ref=ThemeFusion\",\"new\":false,\"date\":1487277411},\"415144\":{\"post_title\":\"Notification & Pop-Up\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2017\\/02\\/arcticlune_notification.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2017\\/02\\/arcticlune_notification.jpg\",\"plugin_name\":\"Fusion Builder Notification & Pop-up Element\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/notification-popup-element-for-avada-v5-fusion-builder\\/19406447?ref=ThemeFusion\",\"new\":false,\"date\":1486391212},\"415084\":{\"post_title\":\"Reviews and Testimonials\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/12\\/arcticlune_reviews.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/12\\/arcticlune_reviews.jpg\",\"plugin_name\":\"Fusion Builder Reviews and Testimonials Element\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/reviews-and-testimonials-element-for-avada-v5-fusion-builder\\/19105069?ref=ThemeFusion\",\"new\":false,\"date\":1481829163},\"415029\":{\"post_title\":\"Custom Post Types and Taxonomies\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/11\\/35815191-ee7402b4-0a65-11e8-8c17-78079117d5b4.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/11\\/35815191-ee7402b4-0a65-11e8-8c17-78079117d5b4.jpg\",\"plugin_name\":\"Fusion Builder Custom Post Types and Taxonomies\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/custom-post-types-and-taxonomies-for-fusion-builder\\/15572585?ref=ThemeFusion\",\"new\":false,\"date\":1479378733},\"415031\":{\"post_title\":\"Elegant Tabs\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/11\\/elegant_tabs.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/11\\/elegant_tabs.jpg\",\"plugin_name\":\"Elegant Tabs for Fusion Builder\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/elegant-tabs-for-fusion-builder\\/18795917?ref=ThemeFusion\",\"new\":false,\"date\":1479292408},\"415121\":{\"post_title\":\"Mobile Layout Creator\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/11\\/wpsqr_mobile_layout_creator.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/11\\/wpsqr_mobile_layout_creator.jpg\",\"plugin_name\":\"Fusion Builder Mobile Layout Creator\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/fusion-builder-mobile-layout-creator\\/19125174?ref=ThemeFusion\",\"new\":false,\"date\":1479235517},\"415444\":{\"post_title\":\"Membership\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2017\\/06\\/wpsqr_membership.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2017\\/06\\/wpsqr_membership.jpg\",\"plugin_name\":\"Fusion Builder Membership\",\"description\":\"\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/fusion-builder-membership\\/20027621?ref=ThemeFusion\",\"new\":true,\"date\":1496726434},\"415041\":{\"post_title\":\"Coming Soon\",\"thumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/10\\/coming_soon.jpg\",\"retinaThumbnail\":\"https:\\/\\/updates.theme-fusion.com\\/wp-content\\/uploads\\/2016\\/10\\/coming_soon.jpg\",\"plugin_name\":null,\"description\":\"\",\"url\":\"https:\\/\\/themeforest.net\\/item\\/avada-responsive-multipurpose-theme\\/2833226?ref=ThemeFusion\",\"new\":false,\"date\":1475330672}}','no'),(330,'fusion_options','a:970:{s:8:\"last_tab\";s:0:\"\";s:6:\"layout\";s:4:\"wide\";s:10:\"site_width\";s:6:\"1200px\";s:13:\"margin_offset\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:13:\"scroll_offset\";s:4:\"full\";s:18:\"boxed_modal_shadow\";s:0:\"\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"60px\";}s:16:\"hundredp_padding\";s:4:\"30px\";s:13:\"sidebar_width\";s:3:\"24%\";s:14:\"sidebar_gutter\";s:2:\"6%\";s:17:\"sidebar_2_1_width\";s:3:\"20%\";s:17:\"sidebar_2_2_width\";s:3:\"20%\";s:19:\"dual_sidebar_gutter\";s:2:\"4%\";s:10:\"responsive\";s:1:\"1\";s:21:\"grid_main_break_point\";s:4:\"1000\";s:23:\"side_header_break_point\";s:3:\"800\";s:19:\"content_break_point\";s:3:\"800\";s:19:\"sidebar_break_point\";s:3:\"800\";s:11:\"mobile_zoom\";s:1:\"1\";s:16:\"visibility_small\";s:3:\"640\";s:17:\"visibility_medium\";s:4:\"1024\";s:22:\"typography_sensitivity\";s:4:\"0.00\";s:17:\"typography_factor\";s:4:\"1.50\";s:13:\"color_palette\";a:9:{s:6:\"color1\";a:2:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"label\";s:7:\"Color 1\";}s:6:\"color2\";a:2:{s:5:\"color\";s:7:\"#f9f9fb\";s:5:\"label\";s:7:\"Color 2\";}s:6:\"color3\";a:2:{s:5:\"color\";s:7:\"#f2f3f5\";s:5:\"label\";s:7:\"Color 3\";}s:6:\"color4\";a:2:{s:5:\"color\";s:7:\"#e6294c\";s:5:\"label\";s:7:\"Color 4\";}s:6:\"color5\";a:2:{s:5:\"color\";s:7:\"#198fd9\";s:5:\"label\";s:7:\"Color 5\";}s:6:\"color6\";a:2:{s:5:\"color\";s:7:\"#434549\";s:5:\"label\";s:7:\"Color 6\";}s:6:\"color7\";a:2:{s:5:\"color\";s:7:\"#212326\";s:5:\"label\";s:7:\"Color 7\";}s:6:\"color8\";a:2:{s:5:\"color\";s:7:\"#404040\";s:5:\"label\";s:7:\"Color 8\";}s:14:\"custom_color_1\";a:2:{s:5:\"color\";s:7:\"#404040\";s:5:\"label\";s:9:\"New Color\";}}s:13:\"primary_color\";s:17:\"var(--awb-color4)\";s:15:\"header_position\";s:3:\"top\";s:13:\"header_layout\";s:2:\"v6\";s:15:\"slider_position\";s:5:\"below\";s:19:\"header_left_content\";s:11:\"leave_empty\";s:20:\"header_right_content\";s:11:\"leave_empty\";s:17:\"header_v4_content\";s:18:\"tagline_and_search\";s:13:\"header_number\";s:0:\"\";s:12:\"header_email\";s:0:\"\";s:14:\"header_tagline\";s:19:\"Insert Tagline Here\";s:18:\"header_banner_code\";s:0:\"\";s:15:\"header_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"header_bg_full\";s:1:\"0\";s:18:\"header_bg_parallax\";s:1:\"1\";s:16:\"header_bg_repeat\";s:9:\"no-repeat\";s:17:\"side_header_width\";s:3:\"280\";s:14:\"header_padding\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:4:\"50px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:5:\"140px\";}s:13:\"header_shadow\";s:1:\"0\";s:16:\"header_100_width\";s:1:\"1\";s:15:\"header_bg_color\";s:17:\"var(--awb-color1)\";s:23:\"archive_header_bg_color\";s:17:\"var(--awb-color1)\";s:19:\"header_border_color\";s:19:\"rgba(226,226,226,0)\";s:19:\"header_top_bg_color\";s:7:\"#ffffff\";s:17:\"tagline_font_size\";s:4:\"16px\";s:18:\"tagline_font_color\";s:17:\"var(--awb-color8)\";s:13:\"header_sticky\";s:1:\"1\";s:20:\"header_sticky_tablet\";s:1:\"0\";s:20:\"header_sticky_mobile\";s:1:\"0\";s:23:\"header_sticky_shrinkage\";s:1:\"0\";s:26:\"header_sticky_type2_layout\";s:9:\"menu_only\";s:20:\"header_sticky_shadow\";s:1:\"1\";s:22:\"header_sticky_bg_color\";s:17:\"var(--awb-color1)\";s:24:\"header_sticky_menu_color\";s:17:\"var(--awb-color8)\";s:25:\"header_sticky_nav_padding\";s:2:\"60\";s:27:\"header_sticky_nav_font_size\";s:4:\"20px\";s:10:\"nav_height\";s:3:\"150\";s:20:\"menu_highlight_style\";s:9:\"textcolor\";s:25:\"menu_highlight_background\";s:17:\"var(--awb-color4)\";s:15:\"menu_arrow_size\";a:2:{s:5:\"width\";s:4:\"23px\";s:6:\"height\";s:4:\"12px\";}s:20:\"nav_highlight_border\";s:1:\"2\";s:11:\"nav_padding\";s:2:\"70\";s:18:\"mobile_nav_padding\";s:2:\"50\";s:15:\"megamenu_shadow\";s:1:\"1\";s:28:\"main_menu_sub_menu_animation\";s:4:\"fade\";s:29:\"dropdown_menu_top_border_size\";s:1:\"3\";s:19:\"dropdown_menu_width\";s:3:\"200\";s:34:\"mainmenu_dropdown_vertical_padding\";s:2:\"12\";s:33:\"mainmenu_dropdown_display_divider\";s:1:\"0\";s:31:\"menu_display_dropdown_indicator\";s:4:\"none\";s:20:\"main_nav_search_icon\";s:1:\"1\";s:22:\"main_nav_search_layout\";s:7:\"overlay\";s:20:\"main_nav_icon_circle\";s:1:\"0\";s:25:\"main_nav_highlight_radius\";s:3:\"2px\";s:17:\"menu_sub_bg_color\";s:17:\"var(--awb-color1)\";s:19:\"menu_bg_hover_color\";s:17:\"var(--awb-color3)\";s:18:\"menu_sub_sep_color\";s:17:\"var(--awb-color3)\";s:17:\"menu_h45_bg_color\";s:17:\"var(--awb-color1)\";s:14:\"nav_typography\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography3)\";s:9:\"font-size\";s:4:\"24px\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:15:\"menu_text_align\";s:6:\"center\";s:22:\"menu_hover_first_color\";s:17:\"var(--awb-color4)\";s:14:\"menu_sub_color\";s:17:\"var(--awb-color4)\";s:22:\"nav_dropdown_font_size\";s:4:\"14px\";s:18:\"side_nav_font_size\";s:4:\"16px\";s:26:\"flyout_menu_icon_font_size\";s:4:\"20px\";s:24:\"flyout_nav_icons_padding\";s:2:\"32\";s:22:\"flyout_menu_icon_color\";s:17:\"var(--awb-color8)\";s:28:\"flyout_menu_icon_hover_color\";s:17:\"var(--awb-color4)\";s:28:\"flyout_menu_background_color\";s:96:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 6%))\";s:21:\"flyout_menu_direction\";s:4:\"fade\";s:24:\"flyout_menu_item_padding\";s:2:\"32\";s:23:\"topmenu_dropwdown_width\";s:3:\"200\";s:29:\"header_top_first_border_color\";s:17:\"var(--awb-color6)\";s:23:\"header_top_sub_bg_color\";s:17:\"var(--awb-color1)\";s:30:\"header_top_menu_bg_hover_color\";s:17:\"var(--awb-color2)\";s:29:\"header_top_menu_sub_sep_color\";s:17:\"var(--awb-color3)\";s:14:\"snav_font_size\";s:4:\"12px\";s:11:\"sec_menu_lh\";s:4:\"48px\";s:10:\"snav_color\";s:17:\"var(--awb-color1)\";s:25:\"header_top_menu_sub_color\";s:17:\"var(--awb-color8)\";s:31:\"header_top_menu_sub_hover_color\";s:17:\"var(--awb-color4)\";s:18:\"mobile_menu_design\";s:7:\"classic\";s:28:\"mobile_menu_icons_top_margin\";s:1:\"2\";s:22:\"mobile_menu_nav_height\";s:2:\"42\";s:27:\"mobile_nav_submenu_slideout\";s:1:\"1\";s:18:\"mobile_menu_search\";s:1:\"1\";s:29:\"mobile_menu_submenu_indicator\";s:1:\"1\";s:22:\"mobile_header_bg_color\";s:17:\"var(--awb-color1)\";s:30:\"mobile_archive_header_bg_color\";s:17:\"var(--awb-color1)\";s:28:\"mobile_menu_background_color\";s:17:\"var(--awb-color1)\";s:23:\"mobile_menu_hover_color\";s:17:\"var(--awb-color1)\";s:24:\"mobile_menu_border_color\";s:17:\"var(--awb-color3)\";s:24:\"mobile_menu_toggle_color\";s:17:\"var(--awb-color6)\";s:22:\"mobile_menu_typography\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:11:\"font-backup\";s:1:\"1\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography3)\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:11:\"line-height\";s:34:\"var(--awb-typography3-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:28:\"mobile_menu_font_hover_color\";s:17:\"var(--awb-color8)\";s:22:\"mobile_menu_text_align\";s:4:\"left\";s:14:\"megamenu_width\";s:10:\"site_width\";s:18:\"megamenu_max_width\";s:4:\"1200\";s:31:\"megamenu_interior_content_width\";s:14:\"viewport_width\";s:19:\"megamenu_title_size\";s:4:\"18px\";s:30:\"megamenu_item_vertical_padding\";s:1:\"7\";s:29:\"megamenu_item_display_divider\";s:1:\"0\";s:18:\"menu_icon_position\";s:4:\"left\";s:14:\"menu_icon_size\";s:2:\"14\";s:15:\"menu_icon_color\";s:17:\"var(--awb-color6)\";s:21:\"menu_icon_hover_color\";s:17:\"var(--awb-color4)\";s:19:\"menu_thumbnail_size\";a:2:{s:5:\"width\";s:4:\"26px\";s:6:\"height\";s:4:\"10px\";}s:14:\"logo_alignment\";s:6:\"center\";s:11:\"logo_margin\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"10px\";s:4:\"left\";s:3:\"0px\";}s:15:\"logo_background\";s:1:\"0\";s:21:\"logo_background_color\";s:17:\"var(--awb-color4)\";s:16:\"logo_custom_link\";s:0:\"\";s:4:\"logo\";a:5:{s:3:\"url\";s:77:\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Logo_DE.png\";s:2:\"id\";s:3:\"312\";s:6:\"height\";s:3:\"350\";s:5:\"width\";s:3:\"385\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"logo_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"sticky_header_logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:25:\"sticky_header_logo_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"mobile_logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"mobile_logo_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:7:\"favicon\";a:5:{s:3:\"url\";s:78:\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Wir-Noi-Favicon.jpg\";s:2:\"id\";s:2:\"74\";s:6:\"height\";s:3:\"322\";s:5:\"width\";s:3:\"322\";s:9:\"thumbnail\";s:86:\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Wir-Noi-Favicon-150x150.jpg\";}s:11:\"iphone_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"iphone_icon_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:9:\"ipad_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"ipad_icon_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"page_title_bar\";s:4:\"hide\";s:17:\"page_title_bar_bs\";s:4:\"none\";s:19:\"page_title_bar_text\";s:1:\"0\";s:20:\"page_title_100_width\";s:1:\"0\";s:17:\"page_title_height\";s:3:\"0px\";s:24:\"page_title_mobile_height\";s:3:\"0px\";s:19:\"page_title_bg_color\";s:17:\"var(--awb-color2)\";s:23:\"page_title_border_color\";s:19:\"rgba(226,226,226,0)\";s:20:\"page_title_font_size\";s:4:\"10px\";s:22:\"page_title_line_height\";s:0:\"\";s:16:\"page_title_color\";s:17:\"var(--awb-color8)\";s:30:\"page_title_subheader_font_size\";s:4:\"10px\";s:26:\"page_title_subheader_color\";s:17:\"var(--awb-color8)\";s:20:\"page_title_alignment\";s:6:\"center\";s:13:\"page_title_bg\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"page_title_bg_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"page_title_bg_full\";s:1:\"0\";s:22:\"page_title_bg_parallax\";s:1:\"0\";s:17:\"page_title_fading\";s:1:\"0\";s:17:\"breadcrumb_mobile\";s:1:\"0\";s:16:\"breacrumb_prefix\";s:0:\"\";s:20:\"breadcrumb_separator\";s:1:\"/\";s:21:\"breadcrumbs_font_size\";s:4:\"14px\";s:22:\"breadcrumbs_text_color\";s:17:\"var(--awb-color8)\";s:28:\"breadcrumbs_text_hover_color\";s:17:\"var(--awb-color4)\";s:26:\"breadcrumb_show_categories\";s:1:\"1\";s:33:\"breadcrumb_show_post_type_archive\";s:1:\"0\";s:18:\"slidingbar_widgets\";s:1:\"0\";s:25:\"mobile_slidingbar_widgets\";s:1:\"0\";s:23:\"slidingbar_open_on_load\";s:1:\"0\";s:19:\"slidingbar_position\";s:3:\"top\";s:16:\"slidingbar_width\";s:5:\"300px\";s:17:\"slidingbar_sticky\";s:1:\"1\";s:26:\"slidingbar_widgets_columns\";s:1:\"2\";s:27:\"slidingbar_column_alignment\";s:7:\"stacked\";s:26:\"slidingbar_content_padding\";a:4:{s:3:\"top\";s:4:\"60px\";s:5:\"right\";s:4:\"30px\";s:6:\"bottom\";s:4:\"60px\";s:4:\"left\";s:4:\"30px\";}s:24:\"slidingbar_content_align\";s:4:\"left\";s:23:\"slidingbar_toggle_style\";s:6:\"circle\";s:19:\"slidingbar_bg_color\";s:17:\"var(--awb-color7)\";s:24:\"slidingbar_divider_color\";s:17:\"var(--awb-color6)\";s:28:\"slidingbar_toggle_icon_color\";s:17:\"var(--awb-color1)\";s:20:\"slidingbar_font_size\";s:4:\"14px\";s:25:\"slidingbar_headings_color\";s:17:\"var(--awb-color1)\";s:21:\"slidingbar_text_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 40%))\";s:21:\"slidingbar_link_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 14%))\";s:27:\"slidingbar_link_color_hover\";s:17:\"var(--awb-color1)\";s:17:\"slidingbar_border\";s:1:\"0\";s:14:\"footer_widgets\";s:1:\"0\";s:22:\"footer_widgets_columns\";s:1:\"4\";s:29:\"footer_widgets_center_content\";s:1:\"0\";s:22:\"footer_special_effects\";s:4:\"none\";s:16:\"footer_copyright\";s:1:\"1\";s:31:\"footer_copyright_center_content\";s:1:\"1\";s:11:\"footer_text\";s:157:\"Sozialunion WIR-NOI Associazione Sociale Copyright 2022 | \r\n<a href=\"/impressum\">Impressum</a> | \r\n<a href=\"/datenschutzerklaerung\">Datenschutzerklärung</a>\";s:16:\"footerw_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"footerw_bg_full\";s:1:\"0\";s:17:\"footerw_bg_repeat\";s:9:\"no-repeat\";s:14:\"footerw_bg_pos\";s:13:\"center center\";s:16:\"footer_100_width\";s:1:\"0\";s:19:\"footer_area_padding\";a:4:{s:3:\"top\";s:4:\"60px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"64px\";s:4:\"left\";s:3:\"0px\";}s:15:\"footer_bg_color\";s:17:\"var(--awb-color7)\";s:18:\"footer_border_size\";s:1:\"0\";s:19:\"footer_border_color\";s:17:\"var(--awb-color3)\";s:19:\"footer_divider_line\";s:1:\"0\";s:24:\"footer_divider_line_size\";s:1:\"1\";s:25:\"footer_divider_line_style\";s:5:\"solid\";s:20:\"footer_divider_color\";s:17:\"var(--awb-color6)\";s:22:\"footer_widgets_padding\";s:4:\"16px\";s:17:\"copyright_padding\";a:2:{s:3:\"top\";s:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";}s:18:\"copyright_bg_color\";s:17:\"var(--awb-color8)\";s:21:\"copyright_border_size\";s:1:\"0\";s:22:\"copyright_border_color\";s:17:\"var(--awb-color8)\";s:26:\"footer_headings_typography\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography2-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"600\";s:9:\"font-size\";s:32:\"var(--awb-typography2-font-size)\";s:11:\"line-height\";s:34:\"var(--awb-typography2-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography2-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color1)\";}s:17:\"footer_text_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 40%))\";s:17:\"footer_link_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:23:\"footer_link_color_hover\";s:17:\"var(--awb-color4)\";s:20:\"copyright_text_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 60%))\";s:20:\"copyright_link_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:26:\"copyright_link_color_hover\";s:17:\"var(--awb-color4)\";s:19:\"copyright_font_size\";s:4:\"13px\";s:24:\"responsive_sidebar_order\";s:25:\"content,sidebar,sidebar-2\";s:14:\"sidebar_sticky\";s:4:\"none\";s:15:\"sidebar_padding\";s:3:\"0px\";s:16:\"sidebar_bg_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"sidebar_widget_bg_color\";s:19:\"rgba(255,255,255,0)\";s:15:\"sidew_font_size\";s:4:\"18px\";s:21:\"sidebar_heading_color\";s:17:\"var(--awb-color8)\";s:13:\"pages_sidebar\";s:4:\"None\";s:15:\"pages_sidebar_2\";s:4:\"None\";s:20:\"pages_global_sidebar\";s:1:\"0\";s:19:\"default_sidebar_pos\";s:5:\"Right\";s:17:\"portfolio_sidebar\";s:4:\"None\";s:19:\"portfolio_sidebar_2\";s:4:\"None\";s:24:\"portfolio_global_sidebar\";s:1:\"0\";s:26:\"portfolio_sidebar_position\";s:5:\"Right\";s:25:\"portfolio_archive_sidebar\";s:4:\"None\";s:27:\"portfolio_archive_sidebar_2\";s:4:\"None\";s:13:\"posts_sidebar\";s:4:\"None\";s:15:\"posts_sidebar_2\";s:4:\"None\";s:20:\"posts_global_sidebar\";s:1:\"0\";s:21:\"blog_sidebar_position\";s:5:\"Right\";s:20:\"blog_archive_sidebar\";s:4:\"None\";s:22:\"blog_archive_sidebar_2\";s:4:\"None\";s:14:\"search_sidebar\";s:12:\"Blog Sidebar\";s:16:\"search_sidebar_2\";s:4:\"None\";s:23:\"search_sidebar_position\";s:5:\"Right\";s:8:\"bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:7:\"bg_full\";s:1:\"0\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:8:\"bg_color\";s:17:\"var(--awb-color3)\";s:17:\"bg_pattern_option\";s:1:\"0\";s:10:\"bg_pattern\";s:8:\"pattern1\";s:16:\"content_bg_color\";s:17:\"var(--awb-color1)\";s:16:\"content_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"content_bg_full\";s:1:\"0\";s:17:\"content_bg_repeat\";s:9:\"no-repeat\";s:15:\"typography_sets\";a:5:{s:11:\"typography1\";a:8:{s:5:\"label\";s:8:\"Headings\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"600\";s:9:\"font-size\";s:4:\"46px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:4:\"none\";}s:11:\"typography2\";a:8:{s:5:\"label\";s:11:\"Subheadings\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"600\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.1\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";}s:11:\"typography3\";a:8:{s:5:\"label\";s:4:\"Lead\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"500\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";}s:11:\"typography4\";a:8:{s:5:\"label\";s:4:\"Body\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"400\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"1.72\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";}s:11:\"typography5\";a:8:{s:5:\"label\";s:5:\"Small\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"400\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"1.72\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";}}s:15:\"body_typography\";a:8:{s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:11:\"line-height\";s:34:\"var(--awb-typography4-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography4-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:10:\"link_color\";s:17:\"var(--awb-color8)\";s:13:\"h1_typography\";a:10:{s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"64px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:5:\"0.1em\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:13:\"h2_typography\";a:10:{s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"48px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:13:\"h3_typography\";a:10:{s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"36px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:5:\"0.1em\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:13:\"h4_typography\";a:10:{s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:13:\"h5_typography\";a:10:{s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:13:\"h6_typography\";a:10:{s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:21:\"post_title_typography\";a:8:{s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"48px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:29:\"post_titles_extras_typography\";a:8:{s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:12:\"custom_fonts\";a:7:{s:25:\"fusionredux_repeater_data\";a:1:{i:0;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"name\";a:1:{i:0;s:0:\"\";}s:5:\"woff2\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:4:\"woff\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"ttf\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"eot\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"svg\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:19:\"blog_page_title_bar\";s:15:\"bar_and_content\";s:24:\"blog_show_page_title_bar\";s:15:\"bar_and_content\";s:10:\"blog_title\";s:4:\"Blog\";s:13:\"blog_subtitle\";s:0:\"\";s:11:\"blog_layout\";s:5:\"large\";s:19:\"blog_archive_layout\";s:5:\"large\";s:20:\"blog_pagination_type\";s:10:\"pagination\";s:36:\"blog_load_more_posts_button_bg_color\";s:17:\"var(--awb-color7)\";s:38:\"blog_load_more_posts_button_text_color\";s:17:\"var(--awb-color1)\";s:42:\"blog_load_more_posts_hover_button_bg_color\";s:17:\"var(--awb-color5)\";s:44:\"blog_load_more_posts_hover_button_text_color\";s:17:\"var(--awb-color1)\";s:25:\"blog_archive_grid_columns\";s:1:\"3\";s:32:\"blog_archive_grid_column_spacing\";s:2:\"40\";s:18:\"blog_equal_heights\";s:1:\"0\";s:25:\"blog_archive_grid_padding\";a:4:{s:3:\"top\";s:4:\"30px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"25px\";}s:21:\"blog_layout_alignment\";s:0:\"\";s:14:\"content_length\";s:7:\"excerpt\";s:19:\"excerpt_length_blog\";s:2:\"10\";s:18:\"strip_html_excerpt\";s:1:\"1\";s:15:\"featured_images\";s:1:\"1\";s:15:\"dates_box_color\";s:17:\"var(--awb-color2)\";s:32:\"alternate_date_format_month_year\";s:4:\"m, Y\";s:25:\"alternate_date_format_day\";s:1:\"j\";s:20:\"timeline_date_format\";s:3:\"F Y\";s:14:\"blog_width_100\";s:1:\"0\";s:22:\"featured_images_single\";s:1:\"1\";s:11:\"blog_pn_nav\";s:1:\"1\";s:15:\"blog_post_title\";s:5:\"below\";s:23:\"blog_post_meta_position\";s:13:\"below_article\";s:18:\"social_sharing_box\";s:1:\"1\";s:11:\"author_info\";s:1:\"1\";s:13:\"related_posts\";s:1:\"1\";s:13:\"blog_comments\";s:1:\"1\";s:9:\"post_meta\";s:1:\"1\";s:16:\"post_meta_author\";s:1:\"1\";s:14:\"post_meta_date\";s:1:\"1\";s:14:\"post_meta_cats\";s:1:\"1\";s:18:\"post_meta_comments\";s:1:\"1\";s:14:\"post_meta_read\";s:1:\"1\";s:14:\"post_meta_tags\";s:1:\"0\";s:14:\"meta_font_size\";s:4:\"13px\";s:11:\"date_format\";s:0:\"\";s:24:\"portfolio_archive_layout\";s:4:\"grid\";s:37:\"portfolio_archive_featured_image_size\";s:4:\"full\";s:25:\"portfolio_archive_columns\";s:1:\"1\";s:32:\"portfolio_archive_column_spacing\";s:2:\"20\";s:23:\"portfolio_equal_heights\";s:1:\"0\";s:42:\"portfolio_archive_one_column_text_position\";s:5:\"below\";s:23:\"portfolio_archive_items\";s:2:\"10\";s:29:\"portfolio_archive_text_layout\";s:7:\"no_text\";s:32:\"portfolio_archive_content_length\";s:7:\"excerpt\";s:32:\"portfolio_archive_excerpt_length\";s:2:\"10\";s:36:\"portfolio_archive_strip_html_excerpt\";s:1:\"1\";s:31:\"portfolio_archive_title_display\";s:3:\"all\";s:32:\"portfolio_archive_text_alignment\";s:4:\"left\";s:32:\"portfolio_archive_layout_padding\";a:4:{s:3:\"top\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";}s:33:\"portfolio_archive_pagination_type\";s:10:\"pagination\";s:49:\"portfolio_archive_load_more_posts_button_bg_color\";s:17:\"var(--awb-color7)\";s:51:\"portfolio_archive_load_more_posts_button_text_color\";s:17:\"var(--awb-color1)\";s:55:\"portfolio_archive_load_more_posts_hover_button_bg_color\";s:17:\"var(--awb-color5)\";s:57:\"portfolio_archive_load_more_posts_hover_button_text_color\";s:17:\"var(--awb-color1)\";s:14:\"portfolio_slug\";s:15:\"portfolio-items\";s:24:\"portfolio_meta_font_size\";s:4:\"13px\";s:16:\"portfolio_pn_nav\";s:1:\"1\";s:19:\"portfolio_width_100\";s:1:\"0\";s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:25:\"portfolio_featured_images\";s:1:\"1\";s:25:\"show_first_featured_image\";s:1:\"1\";s:28:\"portfolio_project_desc_title\";s:1:\"1\";s:25:\"portfolio_project_details\";s:1:\"1\";s:26:\"portfolio_link_icon_target\";s:1:\"0\";s:16:\"portfolio_author\";s:1:\"0\";s:28:\"portfolio_social_sharing_box\";s:1:\"1\";s:23:\"portfolio_related_posts\";s:1:\"1\";s:18:\"portfolio_comments\";s:1:\"0\";s:18:\"social_media_icons\";a:6:{s:25:\"fusionredux_repeater_data\";a:4:{i:0;a:1:{s:5:\"title\";s:0:\"\";}i:1;a:1:{s:5:\"title\";s:0:\"\";}i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"icon\";a:4:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:9:\"pinterest\";}s:9:\"icon_mark\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:3:\"url\";a:4:{i:0;s:1:\"#\";i:1;s:1:\"#\";i:2;s:1:\"#\";i:3;s:1:\"#\";}s:12:\"custom_title\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:13:\"custom_source\";a:4:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:1;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:2;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:3;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:29:\"header_social_links_font_size\";s:4:\"16px\";s:30:\"header_social_links_color_type\";s:6:\"custom\";s:30:\"header_social_links_icon_color\";s:17:\"var(--awb-color1)\";s:25:\"header_social_links_boxed\";s:1:\"0\";s:29:\"header_social_links_box_color\";s:17:\"var(--awb-color1)\";s:32:\"header_social_links_boxed_radius\";s:3:\"4px\";s:33:\"header_social_links_boxed_padding\";s:3:\"8px\";s:12:\"icons_footer\";s:1:\"0\";s:29:\"footer_social_links_font_size\";s:4:\"16px\";s:30:\"footer_social_links_color_type\";s:6:\"custom\";s:30:\"footer_social_links_icon_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:25:\"footer_social_links_boxed\";s:1:\"0\";s:29:\"footer_social_links_box_color\";s:17:\"var(--awb-color8)\";s:32:\"footer_social_links_boxed_radius\";s:3:\"4px\";s:33:\"footer_social_links_boxed_padding\";s:3:\"8px\";s:22:\"sharing_social_tagline\";s:39:\"Share This Story, Choose Your Platform!\";s:30:\"sharing_box_tagline_text_color\";s:17:\"var(--awb-color8)\";s:15:\"social_bg_color\";s:17:\"var(--awb-color2)\";s:14:\"social_sharing\";a:11:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:6:\"reddit\";i:3;s:8:\"linkedin\";i:4;s:8:\"whatsapp\";i:5;s:8:\"telegram\";i:6;s:6:\"tumblr\";i:7;s:9:\"pinterest\";i:8;s:2:\"vk\";i:9;s:4:\"xing\";i:10;s:5:\"email\";}s:30:\"sharing_social_links_font_size\";s:4:\"16px\";s:31:\"sharing_social_links_color_type\";s:6:\"custom\";s:31:\"sharing_social_links_icon_color\";s:17:\"var(--awb-color8)\";s:26:\"sharing_social_links_boxed\";s:1:\"0\";s:30:\"sharing_social_links_box_color\";s:17:\"var(--awb-color3)\";s:33:\"sharing_social_links_boxed_radius\";s:3:\"4px\";s:34:\"sharing_social_links_boxed_padding\";s:3:\"8px\";s:22:\"posts_slideshow_number\";s:1:\"5\";s:18:\"slideshow_autoplay\";s:1:\"1\";s:23:\"slideshow_smooth_height\";s:1:\"0\";s:15:\"slideshow_speed\";s:4:\"7000\";s:22:\"pagination_video_slide\";s:1:\"0\";s:25:\"slider_nav_box_dimensions\";a:2:{s:5:\"width\";s:4:\"30px\";s:6:\"height\";s:4:\"30px\";}s:17:\"slider_arrow_size\";s:4:\"14px\";s:15:\"tfes_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"400px\";}s:14:\"tfes_animation\";s:5:\"sides\";s:13:\"tfes_autoplay\";s:1:\"1\";s:13:\"tfes_interval\";s:4:\"3000\";s:10:\"tfes_speed\";s:3:\"800\";s:10:\"tfes_width\";s:3:\"150\";s:18:\"es_title_font_size\";s:4:\"42px\";s:20:\"es_caption_font_size\";s:4:\"20px\";s:14:\"es_title_color\";s:17:\"var(--awb-color8)\";s:16:\"es_caption_color\";s:17:\"var(--awb-color8)\";s:15:\"status_lightbox\";s:1:\"1\";s:22:\"status_lightbox_single\";s:1:\"1\";s:17:\"lightbox_behavior\";s:3:\"all\";s:13:\"lightbox_skin\";s:11:\"metro-white\";s:13:\"lightbox_path\";s:8:\"vertical\";s:24:\"lightbox_animation_speed\";s:6:\"normal\";s:15:\"lightbox_arrows\";s:1:\"1\";s:16:\"lightbox_gallery\";s:1:\"1\";s:17:\"lightbox_autoplay\";s:1:\"0\";s:24:\"lightbox_slideshow_speed\";s:4:\"5000\";s:16:\"lightbox_opacity\";s:3:\"0.9\";s:14:\"lightbox_title\";s:1:\"1\";s:13:\"lightbox_desc\";s:1:\"1\";s:15:\"lightbox_social\";s:1:\"1\";s:20:\"lightbox_deeplinking\";s:1:\"1\";s:20:\"lightbox_post_images\";s:1:\"1\";s:25:\"lightbox_video_dimensions\";a:2:{s:5:\"width\";s:6:\"1280px\";s:6:\"height\";s:5:\"720px\";}s:17:\"form_input_height\";s:4:\"50px\";s:14:\"form_text_size\";s:4:\"16px\";s:13:\"form_bg_color\";s:17:\"var(--awb-color1)\";s:15:\"form_text_color\";s:17:\"var(--awb-color8)\";s:17:\"form_border_width\";a:4:{s:3:\"top\";s:3:\"1px\";s:5:\"right\";s:3:\"1px\";s:6:\"bottom\";s:3:\"1px\";s:4:\"left\";s:3:\"1px\";}s:17:\"form_border_color\";s:17:\"var(--awb-color3)\";s:23:\"form_focus_border_color\";s:17:\"var(--awb-color4)\";s:18:\"form_border_radius\";s:1:\"6\";s:19:\"form_views_counting\";s:3:\"all\";s:17:\"recaptcha_version\";s:2:\"v3\";s:16:\"recaptcha_public\";s:0:\"\";s:17:\"recaptcha_private\";s:0:\"\";s:22:\"recaptcha_color_scheme\";s:5:\"light\";s:15:\"recaptcha_score\";s:3:\"0.5\";s:24:\"recaptcha_badge_position\";s:6:\"inline\";s:20:\"recaptcha_login_form\";s:1:\"0\";s:11:\"hubspot_api\";s:3:\"off\";s:11:\"hubspot_key\";s:0:\"\";s:13:\"mailchimp_api\";s:3:\"off\";s:13:\"mailchimp_key\";s:0:\"\";s:13:\"email_address\";s:0:\"\";s:24:\"contact_comment_position\";s:5:\"below\";s:29:\"contact_form_privacy_checkbox\";s:1:\"0\";s:26:\"contact_form_privacy_label\";s:152:\"By checking this box, you confirm that you have read and are agreeing to our terms of use regarding the storage of the data submitted through this form.\";s:8:\"gmap_api\";s:0:\"\";s:13:\"gmap_api_type\";s:2:\"js\";s:18:\"gmap_embed_address\";s:0:\"\";s:19:\"gmap_embed_map_type\";s:7:\"roadmap\";s:12:\"gmap_address\";s:49:\"775 New York Ave, Brooklyn, Kings, New York 11203\";s:9:\"gmap_type\";s:7:\"roadmap\";s:15:\"gmap_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"415px\";}s:14:\"gmap_topmargin\";s:4:\"55px\";s:14:\"map_zoom_level\";s:1:\"8\";s:7:\"map_pin\";s:1:\"1\";s:18:\"gmap_pin_animation\";s:1:\"1\";s:9:\"map_popup\";s:1:\"0\";s:15:\"map_scrollwheel\";s:1:\"1\";s:9:\"map_scale\";s:1:\"1\";s:15:\"map_zoomcontrol\";s:1:\"1\";s:11:\"map_styling\";s:7:\"default\";s:17:\"map_overlay_color\";s:17:\"var(--awb-color4)\";s:19:\"map_infobox_styling\";s:7:\"default\";s:19:\"map_infobox_content\";s:0:\"\";s:20:\"map_infobox_bg_color\";s:17:\"var(--awb-color5)\";s:22:\"map_infobox_text_color\";s:17:\"var(--awb-color1)\";s:22:\"map_custom_marker_icon\";s:0:\"\";s:21:\"search_filter_results\";s:1:\"0\";s:14:\"search_content\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";}s:27:\"search_limit_to_post_titles\";s:1:\"0\";s:18:\"search_form_design\";s:5:\"clean\";s:11:\"live_search\";s:1:\"0\";s:26:\"live_search_min_char_count\";s:1:\"4\";s:28:\"live_search_results_per_page\";s:3:\"100\";s:26:\"live_search_results_height\";s:3:\"250\";s:34:\"live_search_display_featured_image\";s:1:\"1\";s:29:\"live_search_display_post_type\";s:1:\"1\";s:13:\"search_layout\";s:4:\"grid\";s:23:\"search_results_per_page\";s:2:\"10\";s:22:\"search_pagination_type\";s:10:\"pagination\";s:19:\"search_grid_columns\";s:1:\"3\";s:26:\"search_grid_column_spacing\";s:2:\"40\";s:21:\"search_content_length\";s:7:\"excerpt\";s:21:\"search_excerpt_length\";s:2:\"10\";s:25:\"search_strip_html_excerpt\";s:1:\"1\";s:22:\"search_featured_images\";s:1:\"1\";s:11:\"search_meta\";a:5:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";i:4;s:9:\"read_more\";}s:26:\"search_new_search_position\";s:3:\"top\";s:18:\"gfonts_load_method\";s:3:\"cdn\";s:14:\"privacy_embeds\";s:1:\"0\";s:14:\"privacy_expiry\";s:2:\"30\";s:19:\"privacy_embed_types\";a:8:{i:0;s:7:\"youtube\";i:1;s:5:\"vimeo\";i:2;s:10:\"soundcloud\";i:3;s:8:\"facebook\";i:4;s:6:\"flickr\";i:5;s:7:\"twitter\";i:6;s:5:\"gmaps\";i:7;s:8:\"tracking\";}s:22:\"privacy_embed_defaults\";a:0:{}s:16:\"privacy_bg_color\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\";s:13:\"privacy_color\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\";s:11:\"privacy_bar\";s:1:\"0\";s:19:\"privacy_bar_padding\";a:4:{s:3:\"top\";s:4:\"15px\";s:5:\"right\";s:4:\"30px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:4:\"30px\";}s:20:\"privacy_bar_bg_color\";s:17:\"var(--awb-color8)\";s:21:\"privacy_bar_font_size\";s:4:\"13px\";s:17:\"privacy_bar_color\";s:17:\"var(--awb-color6)\";s:22:\"privacy_bar_link_color\";s:17:\"var(--awb-color2)\";s:28:\"privacy_bar_link_hover_color\";s:17:\"var(--awb-color4)\";s:16:\"privacy_bar_text\";s:51:\"This website uses cookies and third party services.\";s:23:\"privacy_bar_button_text\";s:2:\"OK\";s:23:\"privacy_bar_button_save\";s:1:\"0\";s:16:\"privacy_bar_more\";s:1:\"0\";s:21:\"privacy_bar_more_text\";s:8:\"Settings\";s:23:\"privacy_bar_update_text\";s:15:\"Update Settings\";s:30:\"privacy_bar_headings_font_size\";s:4:\"13px\";s:26:\"privacy_bar_headings_color\";s:17:\"var(--awb-color1)\";s:19:\"privacy_bar_content\";a:4:{s:25:\"fusionredux_repeater_data\";a:1:{i:0;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"type\";a:1:{i:0;s:0:\"\";}s:5:\"title\";a:1:{i:0;s:0:\"\";}s:11:\"description\";a:1:{i:0;s:0:\"\";}}s:16:\"sidenav_behavior\";s:5:\"hover\";s:26:\"featured_image_placeholder\";s:1:\"1\";s:12:\"excerpt_base\";s:5:\"words\";s:16:\"disable_excerpts\";s:1:\"1\";s:24:\"excerpt_read_more_symbol\";s:5:\"[...]\";s:14:\"link_read_more\";s:1:\"0\";s:12:\"avatar_shape\";s:6:\"circle\";s:14:\"comments_pages\";s:1:\"0\";s:21:\"featured_images_pages\";s:1:\"1\";s:21:\"nofollow_social_links\";s:1:\"0\";s:16:\"social_icons_new\";s:1:\"1\";s:14:\"totop_position\";s:5:\"right\";s:19:\"totop_border_radius\";s:1:\"6\";s:22:\"totop_scroll_down_only\";s:1:\"1\";s:16:\"custom_scrollbar\";s:1:\"0\";s:20:\"scrollbar_background\";s:17:\"var(--awb-color2)\";s:16:\"scrollbar_handle\";s:17:\"var(--awb-color4)\";s:8:\"faq_slug\";s:9:\"faq-items\";s:20:\"related_posts_layout\";s:17:\"title_on_rollover\";s:20:\"number_related_posts\";s:1:\"4\";s:21:\"related_posts_columns\";s:1:\"4\";s:28:\"related_posts_column_spacing\";s:2:\"48\";s:24:\"related_posts_image_size\";s:7:\"cropped\";s:22:\"related_posts_autoplay\";s:1:\"0\";s:19:\"related_posts_speed\";s:4:\"2500\";s:24:\"related_posts_navigation\";s:1:\"1\";s:19:\"related_posts_swipe\";s:1:\"0\";s:25:\"related_posts_swipe_items\";s:1:\"0\";s:14:\"image_rollover\";s:1:\"1\";s:24:\"image_rollover_direction\";s:4:\"left\";s:24:\"image_rollover_icon_size\";s:4:\"15px\";s:20:\"image_rollover_icons\";s:8:\"linkzoom\";s:20:\"title_image_rollover\";s:1:\"1\";s:19:\"cats_image_rollover\";s:1:\"1\";s:26:\"icon_circle_image_rollover\";s:1:\"1\";s:24:\"image_gradient_top_color\";s:97:\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 20%))\";s:27:\"image_gradient_bottom_color\";s:17:\"var(--awb-color4)\";s:25:\"image_rollover_text_color\";s:17:\"var(--awb-color8)\";s:25:\"image_rollover_icon_color\";s:17:\"var(--awb-color1)\";s:17:\"pagination_sizing\";s:12:\"width_height\";s:23:\"pagination_width_height\";s:2:\"30\";s:22:\"pagination_box_padding\";a:2:{s:5:\"width\";s:3:\"6px\";s:6:\"height\";s:3:\"2px\";}s:23:\"pagination_border_width\";s:1:\"1\";s:24:\"pagination_border_radius\";s:1:\"0\";s:23:\"pagination_text_display\";s:1:\"1\";s:20:\"pagination_font_size\";s:4:\"13px\";s:16:\"pagination_range\";s:1:\"1\";s:26:\"pagination_start_end_range\";s:1:\"0\";s:17:\"timeline_bg_color\";s:19:\"rgba(255,255,255,0)\";s:14:\"timeline_color\";s:17:\"var(--awb-color2)\";s:25:\"grid_separator_style_type\";s:12:\"double|solid\";s:20:\"grid_separator_color\";s:17:\"var(--awb-color3)\";s:18:\"masonry_grid_ratio\";s:3:\"1.5\";s:20:\"masonry_width_double\";s:4:\"2000\";s:23:\"enable_language_updates\";s:1:\"1\";s:19:\"dependencies_status\";s:1:\"1\";s:27:\"disable_code_block_encoding\";s:1:\"1\";s:16:\"disable_megamenu\";s:1:\"1\";s:19:\"status_avada_studio\";s:1:\"1\";s:16:\"avada_rev_styles\";s:1:\"1\";s:22:\"avada_styles_dropdowns\";s:1:\"1\";s:27:\"disable_mobile_image_hovers\";s:1:\"1\";s:9:\"status_yt\";s:1:\"1\";s:12:\"status_vimeo\";s:1:\"1\";s:11:\"status_gmap\";s:1:\"1\";s:12:\"status_totop\";s:7:\"desktop\";s:18:\"status_fontawesome\";a:3:{i:0;s:3:\"fab\";i:1;s:3:\"far\";i:2;s:3:\"fas\";}s:28:\"fontawesome_v4_compatibility\";s:1:\"0\";s:22:\"status_fontawesome_pro\";s:1:\"0\";s:14:\"status_outline\";s:1:\"0\";s:16:\"status_opengraph\";s:1:\"1\";s:31:\"disable_date_rich_snippet_pages\";s:1:\"1\";s:26:\"disable_rich_snippet_title\";s:1:\"1\";s:27:\"disable_rich_snippet_author\";s:1:\"1\";s:25:\"disable_rich_snippet_date\";s:1:\"1\";s:24:\"disable_rich_snippet_faq\";s:1:\"1\";s:34:\"enable_block_editor_backend_styles\";s:1:\"1\";s:17:\"load_block_styles\";s:2:\"on\";s:16:\"google_analytics\";s:0:\"\";s:10:\"space_head\";s:0:\"\";s:10:\"space_body\";s:0:\"\";s:20:\"status_fusion_slider\";s:1:\"1\";s:14:\"status_eslider\";s:1:\"0\";s:19:\"status_fusion_forms\";s:1:\"1\";s:21:\"status_awb_Off_Canvas\";s:1:\"1\";s:23:\"status_fusion_portfolio\";s:1:\"1\";s:18:\"status_fusion_faqs\";s:1:\"1\";s:15:\"pw_jpeg_quality\";s:2:\"82\";s:27:\"wp_big_image_size_threshold\";s:4:\"2560\";s:9:\"lazy_load\";s:4:\"none\";s:17:\"lazy_load_iframes\";s:4:\"none\";s:17:\"font_face_display\";s:5:\"block\";s:13:\"preload_fonts\";s:10:\"icon_fonts\";s:22:\"preload_fonts_variants\";a:1:{i:0;s:3:\"400\";}s:21:\"preload_fonts_subsets\";a:1:{i:0;s:5:\"latin\";}s:15:\"emojis_disabled\";s:7:\"enabled\";s:23:\"jquery_migrate_disabled\";s:7:\"enabled\";s:12:\"defer_jquery\";s:1:\"0\";s:12:\"defer_styles\";s:1:\"0\";s:11:\"gzip_status\";s:1:\"0\";s:12:\"video_facade\";s:3:\"off\";s:16:\"css_cache_method\";s:4:\"file\";s:30:\"css_combine_third_party_assets\";s:1:\"0\";s:19:\"media_queries_async\";s:1:\"0\";s:12:\"critical_css\";s:1:\"0\";s:15:\"cache_server_ip\";s:0:\"\";s:11:\"js_compiler\";s:1:\"1\";s:10:\"custom_css\";s:612:\".fusion-header .fusion-logo {\r\n  margin-left: auto;\r\n  margin-right: auto;\r\n}\r\n\r\n.fusion-logo img {\r\n    padding-top: 10px;\r\n    padding-bottom: 10px;\r\n    width: 250px;\r\n}\r\n\r\n.fusion-is-sticky .fusion-logo img {\r\n    padding-top: 0px;\r\n    padding-bottom: 0px;\r\n    width: 200px;\r\n}\r\n\r\n.fusion-is-sticky .fusion-header-sticky-height {\r\n    height: 200px !important;\r\n}\r\n\r\n#main.width-100 {\r\n  padding-top: 10px !important;\r\n}\r\n\r\n.fusion-body .fusion-is-sticky.fusion-header-wrapper .fusion-header, .fusion-body .fusion-is-sticky.fusion-header-wrapper .fusion-secondary-main-menu {\r\n  height: auto !important;\r\n}\";s:13:\"info_bg_color\";s:17:\"var(--awb-color1)\";s:17:\"info_accent_color\";s:17:\"var(--awb-color8)\";s:15:\"danger_bg_color\";s:20:\"rgba(219,75,104,0.1)\";s:19:\"danger_accent_color\";s:7:\"#db4b68\";s:16:\"success_bg_color\";s:20:\"rgba(18,184,120,0.1)\";s:20:\"success_accent_color\";s:7:\"#12b878\";s:16:\"warning_bg_color\";s:20:\"rgba(241,174,42,0.1)\";s:20:\"warning_accent_color\";s:7:\"#f1ae2a\";s:20:\"alert_box_text_align\";s:6:\"center\";s:24:\"alert_box_text_transform\";s:6:\"normal\";s:21:\"alert_box_dismissable\";s:3:\"yes\";s:16:\"alert_box_shadow\";s:2:\"no\";s:17:\"alert_border_size\";s:1:\"1\";s:16:\"animation_offset\";s:13:\"top-into-view\";s:21:\"status_css_animations\";s:7:\"desktop\";s:15:\"audio_max_width\";s:4:\"100%\";s:22:\"audio_background_color\";s:17:\"var(--awb-color8)\";s:23:\"audio_progressbar_color\";s:17:\"var(--awb-color1)\";s:27:\"audio_controls_color_scheme\";s:5:\"light\";s:17:\"audio_border_size\";s:1:\"0\";s:18:\"audio_border_color\";s:17:\"var(--awb-color1)\";s:19:\"audio_border_radius\";a:4:{s:8:\"top_left\";s:3:\"0px\";s:9:\"top_right\";s:3:\"0px\";s:12:\"bottom_right\";s:3:\"0px\";s:11:\"bottom_left\";s:3:\"0px\";}s:17:\"blog_grid_columns\";s:1:\"3\";s:24:\"blog_grid_column_spacing\";s:2:\"40\";s:17:\"blog_grid_padding\";a:4:{s:3:\"top\";s:4:\"30px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";}s:12:\"blog_excerpt\";s:3:\"yes\";s:19:\"blog_excerpt_length\";s:2:\"10\";s:44:\"blog_element_load_more_posts_button_bg_color\";s:17:\"var(--awb-color7)\";s:46:\"blog_element_load_more_posts_button_text_color\";s:17:\"var(--awb-color1)\";s:50:\"blog_element_load_more_posts_hover_button_bg_color\";s:17:\"var(--awb-color5)\";s:52:\"blog_element_load_more_posts_hover_button_text_color\";s:17:\"var(--awb-color1)\";s:14:\"button_padding\";a:4:{s:3:\"top\";s:4:\"13px\";s:5:\"right\";s:4:\"29px\";s:6:\"bottom\";s:4:\"13px\";s:4:\"left\";s:4:\"29px\";}s:11:\"button_span\";s:2:\"no\";s:11:\"button_type\";s:4:\"Flat\";s:17:\"button_typography\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:11:\"font-backup\";s:4:\"true\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"600\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:11:\"line-height\";s:34:\"var(--awb-typography3-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:14:\"text-transform\";s:37:\"var(--awb-typography3-text-transform)\";}s:25:\"button_gradient_top_color\";s:17:\"var(--awb-color4)\";s:28:\"button_gradient_bottom_color\";s:17:\"var(--awb-color4)\";s:31:\"button_gradient_top_color_hover\";s:108:\"hsla(var(--awb-color4-h),calc(var(--awb-color4-s) - 5%),calc(var(--awb-color4-l) - 10%),var(--awb-color4-a))\";s:34:\"button_gradient_bottom_color_hover\";s:108:\"hsla(var(--awb-color4-h),calc(var(--awb-color4-s) - 5%),calc(var(--awb-color4-l) - 10%),var(--awb-color4-a))\";s:21:\"button_gradient_start\";s:1:\"0\";s:19:\"button_gradient_end\";s:3:\"100\";s:20:\"button_gradient_type\";s:6:\"linear\";s:21:\"button_gradient_angle\";s:3:\"180\";s:23:\"button_radial_direction\";s:13:\"center center\";s:19:\"button_accent_color\";s:17:\"var(--awb-color1)\";s:25:\"button_accent_hover_color\";s:17:\"var(--awb-color1)\";s:18:\"button_bevel_color\";s:108:\"hsla(var(--awb-color4-h),calc(var(--awb-color4-s) - 5%),calc(var(--awb-color4-l) - 10%),var(--awb-color4-a))\";s:24:\"button_bevel_color_hover\";s:108:\"hsla(var(--awb-color4-h),calc(var(--awb-color4-s) - 5%),calc(var(--awb-color4-l) - 10%),var(--awb-color4-a))\";s:19:\"button_border_width\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:20:\"button_border_radius\";a:4:{s:8:\"top_left\";s:3:\"4px\";s:9:\"top_right\";s:3:\"4px\";s:12:\"bottom_right\";s:3:\"4px\";s:11:\"bottom_left\";s:3:\"4px\";}s:19:\"button_border_color\";s:17:\"var(--awb-color1)\";s:25:\"button_border_hover_color\";s:17:\"var(--awb-color1)\";s:14:\"button_presets\";s:1:\"0\";s:18:\"carousel_nav_color\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 30%))\";s:20:\"carousel_hover_color\";s:97:\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 20%))\";s:14:\"carousel_speed\";s:4:\"2500\";s:21:\"chart_legend_position\";s:3:\"top\";s:19:\"chart_show_tooltips\";s:3:\"yes\";s:14:\"chart_bg_color\";s:19:\"rgba(255,255,255,0)\";s:21:\"chart_axis_text_color\";s:17:\"var(--awb-color8)\";s:20:\"chart_gridline_color\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\";s:21:\"checklist_icons_color\";s:17:\"var(--awb-color1)\";s:16:\"checklist_circle\";s:1:\"1\";s:22:\"checklist_circle_color\";s:17:\"var(--awb-color4)\";s:20:\"checklist_text_color\";s:17:\"var(--awb-color8)\";s:19:\"checklist_item_size\";s:4:\"16px\";s:22:\"checklist_item_padding\";a:4:{s:3:\"top\";s:6:\"0.35em\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:6:\"0.35em\";s:4:\"left\";s:1:\"0\";}s:17:\"checklist_divider\";s:2:\"no\";s:23:\"checklist_divider_color\";s:17:\"var(--awb-color3)\";s:25:\"checklist_odd_row_bgcolor\";s:19:\"rgba(255,255,255,0)\";s:26:\"checklist_even_row_bgcolor\";s:19:\"rgba(255,255,255,0)\";s:10:\"col_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:11:\"col_spacing\";s:2:\"4%\";s:16:\"col_width_medium\";s:18:\"inherit_from_large\";s:15:\"col_width_small\";s:3:\"1_1\";s:25:\"container_padding_default\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:21:\"container_padding_100\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:4:\"30px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:4:\"30px\";}s:19:\"full_width_bg_color\";s:19:\"rgba(255,255,255,0)\";s:31:\"full_width_gradient_start_color\";s:19:\"rgba(255,255,255,0)\";s:29:\"full_width_gradient_end_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"full_width_border_sizes\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:23:\"full_width_border_color\";s:17:\"var(--awb-color3)\";s:29:\"container_scroll_nav_bg_color\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 80%))\";s:33:\"container_scroll_nav_bullet_color\";s:17:\"var(--awb-color3)\";s:44:\"container_hundred_percent_scroll_sensitivity\";s:3:\"450\";s:39:\"container_hundred_percent_height_mobile\";s:1:\"0\";s:24:\"container_legacy_support\";s:1:\"0\";s:20:\"content_box_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"content_box_title_size\";s:2:\"24\";s:23:\"content_box_title_color\";s:17:\"var(--awb-color8)\";s:22:\"content_box_body_color\";s:17:\"var(--awb-color8)\";s:21:\"content_box_icon_size\";s:2:\"20\";s:22:\"content_box_icon_color\";s:17:\"var(--awb-color1)\";s:23:\"content_box_icon_circle\";s:3:\"yes\";s:30:\"content_box_icon_circle_radius\";s:3:\"50%\";s:25:\"content_box_icon_bg_color\";s:17:\"var(--awb-color7)\";s:38:\"content_box_icon_bg_inner_border_color\";s:17:\"var(--awb-color8)\";s:37:\"content_box_icon_bg_inner_border_size\";s:1:\"1\";s:38:\"content_box_icon_bg_outer_border_color\";s:19:\"rgba(255,255,255,0)\";s:37:\"content_box_icon_bg_outer_border_size\";s:1:\"1\";s:27:\"content_box_icon_hover_type\";s:4:\"fade\";s:40:\"content_box_hover_animation_accent_color\";s:17:\"var(--awb-color4)\";s:21:\"content_box_link_type\";s:4:\"text\";s:23:\"content_box_button_span\";s:2:\"no\";s:21:\"content_box_link_area\";s:9:\"link-icon\";s:23:\"content_box_link_target\";s:5:\"_self\";s:18:\"content_box_margin\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:18:\"countdown_timezone\";s:9:\"site_time\";s:16:\"countdown_layout\";s:7:\"floated\";s:20:\"countdown_show_weeks\";s:2:\"no\";s:24:\"countdown_label_position\";s:9:\"text_flow\";s:26:\"countdown_background_color\";s:17:\"var(--awb-color5)\";s:26:\"countdown_background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:27:\"countdown_background_repeat\";s:9:\"no-repeat\";s:29:\"countdown_background_position\";s:13:\"center center\";s:29:\"countdown_counter_box_spacing\";s:4:\"10px\";s:27:\"countdown_counter_box_color\";s:17:\"var(--awb-color7)\";s:25:\"countdown_counter_padding\";a:4:{s:3:\"top\";s:5:\"0.6em\";s:5:\"right\";s:5:\"1.1em\";s:6:\"bottom\";s:5:\"0.6em\";s:4:\"left\";s:5:\"1.1em\";}s:29:\"countdown_counter_border_size\";s:1:\"0\";s:30:\"countdown_counter_border_color\";s:17:\"var(--awb-color7)\";s:31:\"countdown_counter_border_radius\";s:3:\"4px\";s:27:\"countdown_counter_font_size\";s:4:\"18px\";s:28:\"countdown_counter_text_color\";s:17:\"var(--awb-color1)\";s:25:\"countdown_label_font_size\";s:4:\"18px\";s:21:\"countdown_label_color\";s:17:\"var(--awb-color1)\";s:27:\"countdown_heading_font_size\";s:4:\"18px\";s:28:\"countdown_heading_text_color\";s:17:\"var(--awb-color1)\";s:30:\"countdown_subheading_font_size\";s:4:\"14px\";s:31:\"countdown_subheading_text_color\";s:17:\"var(--awb-color1)\";s:25:\"countdown_link_text_color\";s:17:\"var(--awb-color1)\";s:21:\"countdown_link_target\";s:5:\"_self\";s:17:\"counter_box_speed\";s:4:\"1000\";s:17:\"counter_box_color\";s:17:\"var(--awb-color5)\";s:22:\"counter_box_title_size\";s:2:\"50\";s:21:\"counter_box_icon_size\";s:2:\"50\";s:22:\"counter_box_body_color\";s:17:\"var(--awb-color8)\";s:21:\"counter_box_body_size\";s:2:\"14\";s:24:\"counter_box_border_color\";s:17:\"var(--awb-color3)\";s:20:\"counter_box_icon_top\";s:2:\"no\";s:20:\"counter_filled_color\";s:17:\"var(--awb-color5)\";s:22:\"counter_unfilled_color\";s:17:\"var(--awb-color2)\";s:13:\"dropcap_color\";s:17:\"var(--awb-color5)\";s:18:\"dropcap_text_color\";s:17:\"var(--awb-color1)\";s:18:\"faq_featured_image\";s:1:\"0\";s:11:\"faq_filters\";s:3:\"yes\";s:18:\"faq_accordion_type\";s:10:\"accordions\";s:24:\"faq_accordion_boxed_mode\";s:1:\"0\";s:25:\"faq_accordion_border_size\";s:1:\"1\";s:26:\"faq_accordian_border_color\";s:17:\"var(--awb-color3)\";s:30:\"faq_accordian_background_color\";s:17:\"var(--awb-color1)\";s:25:\"faq_accordian_hover_color\";s:17:\"var(--awb-color2)\";s:26:\"faq_accordion_divider_line\";s:1:\"1\";s:29:\"faq_accordion_title_font_size\";s:4:\"24px\";s:23:\"faq_accordion_icon_size\";s:2:\"16\";s:24:\"faq_accordian_icon_color\";s:17:\"var(--awb-color1)\";s:24:\"faq_accordion_icon_boxed\";s:1:\"1\";s:28:\"faq_accordian_inactive_color\";s:17:\"var(--awb-color7)\";s:24:\"faq_accordion_icon_align\";s:4:\"left\";s:26:\"faq_accordian_active_color\";s:17:\"var(--awb-color4)\";s:22:\"flip_boxes_flip_effect\";s:7:\"classic\";s:25:\"flip_boxes_flip_direction\";s:5:\"right\";s:24:\"flip_boxes_flip_duration\";s:3:\"0.8\";s:24:\"flip_boxes_equal_heights\";s:2:\"no\";s:19:\"flip_boxes_front_bg\";s:17:\"var(--awb-color7)\";s:24:\"flip_boxes_front_heading\";s:17:\"var(--awb-color2)\";s:21:\"flip_boxes_front_text\";s:17:\"var(--awb-color8)\";s:18:\"flip_boxes_back_bg\";s:17:\"var(--awb-color5)\";s:23:\"flip_boxes_back_heading\";s:17:\"var(--awb-color1)\";s:20:\"flip_boxes_back_text\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:22:\"flip_boxes_border_size\";s:1:\"1\";s:23:\"flip_boxes_border_color\";s:13:\"rgba(0,0,0,0)\";s:24:\"flip_boxes_border_radius\";s:3:\"6px\";s:20:\"gallery_picture_size\";s:4:\"auto\";s:14:\"gallery_layout\";s:4:\"grid\";s:15:\"gallery_columns\";s:1:\"3\";s:22:\"gallery_column_spacing\";s:2:\"10\";s:18:\"gallery_hover_type\";s:4:\"none\";s:24:\"gallery_lightbox_content\";s:4:\"none\";s:19:\"gallery_border_size\";s:1:\"0\";s:20:\"gallery_border_color\";s:17:\"var(--awb-color3)\";s:21:\"gallery_border_radius\";s:3:\"0px\";s:19:\"google_map_api_type\";s:2:\"js\";s:9:\"icon_size\";s:2:\"32\";s:10:\"icon_color\";s:17:\"var(--awb-color1)\";s:16:\"icon_color_hover\";s:17:\"var(--awb-color1)\";s:11:\"icon_circle\";s:3:\"yes\";s:17:\"icon_circle_color\";s:17:\"var(--awb-color5)\";s:23:\"icon_circle_color_hover\";s:17:\"var(--awb-color4)\";s:16:\"icon_border_size\";s:1:\"1\";s:17:\"icon_border_color\";s:17:\"var(--awb-color8)\";s:23:\"icon_border_color_hover\";s:17:\"var(--awb-color4)\";s:18:\"icon_border_radius\";a:4:{s:8:\"top_left\";s:3:\"50%\";s:9:\"top_right\";s:3:\"50%\";s:12:\"bottom_right\";s:3:\"50%\";s:11:\"bottom_left\";s:3:\"50%\";}s:15:\"icon_hover_type\";s:4:\"fade\";s:17:\"before_after_type\";s:12:\"before_after\";s:22:\"before_after_font_size\";s:2:\"14\";s:25:\"before_after_accent_color\";s:17:\"var(--awb-color1)\";s:28:\"before_after_label_placement\";s:14:\"image-centered\";s:24:\"before_after_handle_type\";s:7:\"default\";s:25:\"before_after_handle_color\";s:17:\"var(--awb-color1)\";s:22:\"before_after_handle_bg\";s:19:\"rgba(255,255,255,0)\";s:19:\"before_after_offset\";s:2:\"50\";s:24:\"before_after_orientation\";s:10:\"horizontal\";s:28:\"before_after_handle_movement\";s:10:\"drag_click\";s:28:\"before_after_transition_time\";s:3:\"0.5\";s:24:\"before_after_border_size\";s:1:\"0\";s:25:\"before_after_border_color\";s:17:\"var(--awb-color3)\";s:26:\"before_after_border_radius\";s:3:\"0px\";s:21:\"imageframe_style_type\";s:4:\"none\";s:15:\"imageframe_blur\";s:1:\"3\";s:20:\"imgframe_style_color\";s:17:\"var(--awb-color7)\";s:22:\"imageframe_border_size\";s:1:\"0\";s:21:\"imgframe_border_color\";s:17:\"var(--awb-color3)\";s:24:\"imageframe_border_radius\";s:3:\"0px\";s:14:\"modal_bg_color\";s:17:\"var(--awb-color1)\";s:18:\"modal_border_color\";s:17:\"var(--awb-color3)\";s:13:\"person_margin\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:23:\"person_background_color\";s:17:\"var(--awb-color8)\";s:16:\"person_pic_style\";s:4:\"none\";s:21:\"person_pic_style_blur\";s:1:\"3\";s:18:\"person_style_color\";s:17:\"var(--awb-color8)\";s:19:\"person_border_color\";s:17:\"var(--awb-color3)\";s:18:\"person_border_size\";s:1:\"0\";s:20:\"person_border_radius\";s:3:\"0px\";s:16:\"person_alignment\";s:4:\"Left\";s:20:\"person_icon_position\";s:3:\"Top\";s:24:\"popover_heading_bg_color\";s:17:\"var(--awb-color2)\";s:24:\"popover_content_bg_color\";s:17:\"var(--awb-color1)\";s:20:\"popover_border_color\";s:17:\"var(--awb-color3)\";s:18:\"popover_text_color\";s:17:\"var(--awb-color8)\";s:17:\"popover_placement\";s:3:\"Top\";s:29:\"portfolio_featured_image_size\";s:4:\"full\";s:17:\"portfolio_columns\";s:1:\"3\";s:24:\"portfolio_column_spacing\";s:2:\"30\";s:15:\"portfolio_items\";s:2:\"10\";s:21:\"portfolio_text_layout\";s:7:\"unboxed\";s:24:\"portfolio_content_length\";s:7:\"excerpt\";s:24:\"portfolio_excerpt_length\";s:2:\"10\";s:28:\"portfolio_strip_html_excerpt\";s:1:\"1\";s:23:\"portfolio_title_display\";s:3:\"all\";s:24:\"portfolio_text_alignment\";s:4:\"left\";s:24:\"portfolio_layout_padding\";a:4:{s:3:\"top\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";}s:25:\"portfolio_pagination_type\";s:10:\"pagination\";s:49:\"portfolio_element_load_more_posts_button_bg_color\";s:17:\"var(--awb-color7)\";s:51:\"portfolio_element_load_more_posts_button_text_color\";s:17:\"var(--awb-color1)\";s:55:\"portfolio_element_load_more_posts_hover_button_bg_color\";s:17:\"var(--awb-color5)\";s:57:\"portfolio_element_load_more_posts_hover_button_text_color\";s:17:\"var(--awb-color1)\";s:36:\"full_boxed_pricing_box_heading_color\";s:17:\"var(--awb-color8)\";s:29:\"sep_pricing_box_heading_color\";s:17:\"var(--awb-color8)\";s:17:\"pricing_box_color\";s:17:\"var(--awb-color4)\";s:16:\"pricing_bg_color\";s:17:\"var(--awb-color1)\";s:30:\"pricing_background_color_hover\";s:17:\"var(--awb-color2)\";s:20:\"pricing_border_color\";s:17:\"var(--awb-color2)\";s:21:\"pricing_divider_color\";s:17:\"var(--awb-color3)\";s:25:\"progressbar_text_position\";s:6:\"on_bar\";s:22:\"progressbar_text_color\";s:17:\"var(--awb-color1)\";s:18:\"progressbar_height\";s:4:\"48px\";s:24:\"progressbar_filled_color\";s:17:\"var(--awb-color5)\";s:26:\"progressbar_unfilled_color\";s:17:\"var(--awb-color2)\";s:30:\"progressbar_filled_border_size\";s:1:\"0\";s:31:\"progressbar_filled_border_color\";s:17:\"var(--awb-color1)\";s:24:\"scroll_progress_position\";s:4:\"flow\";s:22:\"scroll_progress_height\";s:4:\"10px\";s:32:\"scroll_progress_background_color\";s:17:\"var(--awb-color2)\";s:30:\"scroll_progress_progress_color\";s:17:\"var(--awb-color4)\";s:27:\"scroll_progress_border_size\";s:1:\"0\";s:28:\"scroll_progress_border_color\";s:17:\"var(--awb-color1)\";s:29:\"scroll_progress_border_radius\";a:4:{s:8:\"top_left\";s:3:\"0px\";s:9:\"top_right\";s:3:\"0px\";s:12:\"bottom_right\";s:3:\"0px\";s:11:\"bottom_left\";s:3:\"0px\";}s:23:\"section_sep_border_size\";s:1:\"1\";s:14:\"section_sep_bg\";s:17:\"var(--awb-color2)\";s:24:\"section_sep_border_color\";s:17:\"var(--awb-color3)\";s:20:\"separator_style_type\";s:6:\"double\";s:9:\"sep_color\";s:17:\"var(--awb-color3)\";s:21:\"separator_border_size\";s:1:\"1\";s:19:\"separator_icon_size\";s:2:\"16\";s:20:\"separator_icon_color\";s:17:\"var(--awb-color3)\";s:16:\"separator_circle\";s:1:\"1\";s:25:\"separator_circle_bg_color\";s:19:\"rgba(255,255,255,0)\";s:19:\"social_links_margin\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:30:\"social_links_tooltip_placement\";s:3:\"Top\";s:22:\"social_links_font_size\";s:4:\"16px\";s:23:\"social_links_color_type\";s:6:\"custom\";s:23:\"social_links_icon_color\";s:17:\"var(--awb-color6)\";s:29:\"social_links_icon_color_hover\";s:17:\"var(--awb-color4)\";s:18:\"social_links_boxed\";s:1:\"0\";s:26:\"social_links_boxed_padding\";s:3:\"8px\";s:22:\"social_links_box_color\";s:17:\"var(--awb-color2)\";s:28:\"social_links_box_color_hover\";s:17:\"var(--awb-color1)\";s:19:\"social_links_border\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:25:\"social_links_boxed_radius\";s:3:\"4px\";s:25:\"social_links_border_color\";s:17:\"var(--awb-color3)\";s:31:\"social_links_border_color_hover\";s:17:\"var(--awb-color4)\";s:24:\"syntax_highlighter_theme\";s:7:\"default\";s:31:\"syntax_highlighter_line_numbers\";s:3:\"yes\";s:47:\"syntax_highlighter_line_number_background_color\";s:17:\"var(--awb-color2)\";s:41:\"syntax_highlighter_line_number_text_color\";s:17:\"var(--awb-color8)\";s:32:\"syntax_highlighter_line_wrapping\";s:6:\"scroll\";s:36:\"syntax_highlighter_copy_to_clipboard\";s:3:\"yes\";s:41:\"syntax_highlighter_copy_to_clipboard_text\";s:17:\"Copy to Clipboard\";s:28:\"syntax_highlighter_font_size\";s:2:\"14\";s:35:\"syntax_highlighter_background_color\";s:17:\"var(--awb-color1)\";s:30:\"syntax_highlighter_border_size\";s:1:\"1\";s:31:\"syntax_highlighter_border_color\";s:17:\"var(--awb-color3)\";s:31:\"syntax_highlighter_border_style\";s:5:\"solid\";s:25:\"syntax_highlighter_margin\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:13:\"tabs_bg_color\";s:17:\"var(--awb-color1)\";s:19:\"tabs_inactive_color\";s:17:\"var(--awb-color2)\";s:17:\"tabs_border_color\";s:17:\"var(--awb-color3)\";s:18:\"tabs_icon_position\";s:4:\"left\";s:14:\"tabs_icon_size\";s:2:\"16\";s:11:\"tagcloud_bg\";s:19:\"rgba(255,255,255,0)\";s:17:\"tagcloud_bg_hover\";s:17:\"var(--awb-color4)\";s:14:\"tagcloud_color\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:20:\"tagcloud_color_hover\";s:17:\"var(--awb-color1)\";s:21:\"tagcloud_border_color\";s:17:\"var(--awb-color8)\";s:27:\"tagcloud_border_color_hover\";s:17:\"var(--awb-color4)\";s:10:\"tagline_bg\";s:17:\"var(--awb-color2)\";s:20:\"tagline_border_color\";s:19:\"rgba(226,226,226,0)\";s:14:\"tagline_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:20:\"testimonial_bg_color\";s:17:\"var(--awb-color2)\";s:22:\"testimonial_text_color\";s:17:\"var(--awb-color8)\";s:18:\"testimonials_speed\";s:4:\"4000\";s:19:\"testimonials_random\";s:1:\"0\";s:12:\"text_columns\";s:1:\"1\";s:21:\"text_column_min_width\";s:5:\"100px\";s:19:\"text_column_spacing\";s:3:\"2em\";s:15:\"text_rule_style\";s:4:\"none\";s:14:\"text_rule_size\";s:1:\"1\";s:15:\"text_rule_color\";s:17:\"var(--awb-color3)\";s:20:\"title_text_transform\";s:4:\"none\";s:16:\"title_style_type\";s:4:\"none\";s:18:\"title_border_color\";s:17:\"var(--awb-color3)\";s:12:\"title_margin\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:3:\"0px\";}s:19:\"title_margin_mobile\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"10px\";s:4:\"left\";s:3:\"0px\";}s:14:\"accordion_type\";s:10:\"accordions\";s:20:\"accordion_boxed_mode\";s:1:\"0\";s:21:\"accordion_border_size\";s:1:\"1\";s:22:\"accordian_border_color\";s:17:\"var(--awb-color3)\";s:26:\"accordian_background_color\";s:17:\"var(--awb-color1)\";s:21:\"accordian_hover_color\";s:17:\"var(--awb-color2)\";s:22:\"accordion_divider_line\";s:1:\"1\";s:23:\"accordion_divider_color\";s:17:\"var(--awb-color3)\";s:29:\"accordion_divider_hover_color\";s:17:\"var(--awb-color3)\";s:26:\"accordion_title_typography\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:4:\"true\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:32:\"var(--awb-typography1-font-size)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:19:\"accordion_icon_size\";s:2:\"16\";s:20:\"accordian_icon_color\";s:17:\"var(--awb-color1)\";s:20:\"accordion_icon_boxed\";s:1:\"1\";s:24:\"accordian_inactive_color\";s:17:\"var(--awb-color8)\";s:28:\"accordion_content_typography\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-backup\";s:4:\"true\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:22:\"accordian_active_color\";s:17:\"var(--awb-color5)\";s:29:\"accordian_active_accent_color\";s:0:\"\";s:20:\"accordion_icon_align\";s:4:\"left\";s:21:\"user_login_text_align\";s:6:\"center\";s:28:\"user_login_form_field_layout\";s:7:\"stacked\";s:27:\"user_login_form_show_labels\";s:2:\"no\";s:33:\"user_login_form_show_placeholders\";s:3:\"yes\";s:32:\"user_login_form_show_remember_me\";s:2:\"no\";s:32:\"user_login_form_background_color\";s:17:\"var(--awb-color2)\";s:15:\"video_max_width\";s:4:\"100%\";s:14:\"video_controls\";s:3:\"yes\";s:13:\"video_preload\";s:4:\"auto\";s:22:\"widget_area_title_size\";s:4:\"24px\";s:23:\"widget_area_title_color\";s:17:\"var(--awb-color8)\";}','yes'),(331,'fusion_options-transients','a:3:{s:14:\"changed_values\";a:0:{}s:9:\"last_save\";i:1645108036;s:11:\"last_import\";i:1645085517;}','yes'),(367,'fusion_applied_patches','a:3:{i:0;i:420132;i:1;i:420157;i:2;i:420143;}','no'),(385,'recently_activated','a:0:{}','yes'),(453,'theme_mods_twentytwenty','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1643962666;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(467,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:43:\"material-design-for-contact-form-7/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.1\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1645019699;s:11:\"plugin_path\";s:58:\"material-design-for-contact-form-7/cf7-material-design.php\";}}s:7:\"abspath\";s:42:\"/media/dragon/www/unternehmen.wir-noi.org/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:58:\"material-design-for-contact-form-7/cf7-material-design.php\";s:8:\"sdk_path\";s:43:\"material-design-for-contact-form-7/freemius\";s:7:\"version\";s:5:\"2.4.1\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1645019699;}}','yes'),(468,'fs_debug_mode','','yes'),(469,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:771;a:3:{s:4:\"slug\";s:34:\"material-design-for-contact-form-7\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:58:\"material-design-for-contact-form-7/cf7-material-design.php\";}}s:11:\"plugin_data\";a:1:{s:34:\"material-design-for-contact-form-7\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:58:\"material-design-for-contact-form-7/cf7-material-design.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1645019699;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.1\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:5:\"2.6.4\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:23:\"unternehmen.wir-noi.org\";s:9:\"server_ip\";s:12:\"80.151.90.23\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1645085404;s:7:\"version\";s:5:\"2.6.4\";}s:15:\"prev_is_premium\";b:0;s:18:\"sticky_optin_added\";b:1;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1645266166;s:7:\"version\";s:5:\"2.6.4\";}}}s:13:\"file_slug_map\";a:1:{s:58:\"material-design-for-contact-form-7/cf7-material-design.php\";s:34:\"material-design-for-contact-form-7\";}s:7:\"plugins\";a:1:{s:34:\"material-design-for-contact-form-7\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:34:\"Material Design for Contact Form 7\";s:4:\"slug\";s:34:\"material-design-for-contact-form-7\";s:12:\"premium_slug\";s:42:\"material-design-for-contact-form-7-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";s:3:\"all\";s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:58:\"material-design-for-contact-form-7/cf7-material-design.php\";s:7:\"version\";s:5:\"2.6.4\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_cd33f9241475d1c70aadf00a1710b\";s:10:\"secret_key\";N;s:2:\"id\";s:3:\"771\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"28448ba38e974872a7ff6d1b3b4d4002\";s:13:\"admin_notices\";a:1:{s:34:\"material-design-for-contact-form-7\";a:0:{}}}','yes'),(470,'fs_gdpr','a:2:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}s:2:\"u0\";a:1:{s:8:\"required\";b:0;}}','yes'),(471,'fs_api_cache','a:0:{}','no'),(474,'cf7md_options[plugin_ver]','2.6.4','yes'),(475,'cf7md_options[plugin_update_message]','1','yes'),(476,'cfdb7_view_install_date','2022-02-04 8:17:36','yes'),(477,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.5.5\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1643962658;s:7:\"version\";s:5:\"5.5.4\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(479,'fusion_supported_plugins_active','a:1:{i:0;s:5:\"WPCF7\";}','yes'),(499,'gutenberg_version_migration','9.8.0','yes'),(526,'wp_calendar_block_has_published_posts','1','yes'),(557,'avada_disable_encoding','1','yes'),(706,'widget_recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(707,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(712,'_transient_timeout_fusion_dynamic_css_31480ceef030877a64342cae37a53b99','1643975417','no'),(716,'cf7md_options[available_fonts]','a:2:{i:0;s:10:\"Montserrat\";i:1;s:14:\"\\\"Montserrat\\\"\";}','yes'),(723,'_transient_timeout_fusion_dynamic_css_8c00de5f71e8a832083a57468a2f69d1','1643975522','no'),(869,'_transient_timeout_fusion_dynamic_css_71029762f5a90d6647cc71dd54ce033e','1643984272','no'),(876,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),(1253,'auto_update_plugins','a:0:{}','no'),(1254,'updraftplus_tour_cancelled_on','intro','yes'),(1347,'updraftplus_version','1.22.1','yes'),(1348,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-de492d3eae3fd07e7b6a594ec600e257\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),(1349,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-71c00ff599899dcb2dc20208cbf4bb35\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:0:\"\";}}}','yes'),(1350,'updraft_s3','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-df51b8f48fab1d0d6bb3ebe41a5c4346\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(1351,'updraft_cloudfiles','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-dc1afd061615f0337fd6c1d21eabab03\";a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(1352,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-f0717d2a3a9ce20ad867aa5c91d8b505\";a:4:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";s:6:\"folder\";s:11:\"UpdraftPlus\";}}}','yes'),(1353,'updraft_onedrive','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(1354,'updraft_ftp','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-878a3dcde7398e2c39f9d3fe4d830f41\";a:6:{s:4:\"host\";s:19:\"sky.infeos.de:20122\";s:4:\"user\";s:9:\"wpbackup2\";s:4:\"pass\";s:13:\"!Sicher1Nicht\";s:4:\"path\";s:31:\"/home/wpbackup/jail/data/wirnoi\";s:7:\"passive\";s:1:\"1\";s:16:\"instance_enabled\";i:1;}}}','yes'),(1355,'updraft_azure','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(1356,'updraft_sftp','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(1357,'updraft_googlecloud','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(1358,'updraft_backblaze','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(1359,'updraft_webdav','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(1360,'updraft_s3generic','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-9711391f3ff08d9d76204d01461081f7\";a:5:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";s:19:\"bucket_access_style\";s:10:\"path_style\";}}}','yes'),(1361,'updraft_openstack','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-c18e8d1763e6a3867ecea8e55aad31eb\";a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(1362,'updraft_dreamobjects','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-0311da18f40edfb856f0e120124648d4\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:26:\"objects-us-east-1.dream.io\";}}}','yes'),(1363,'updraftplus-addons_siteid','e2fce0455bc1ccb5b0fa9b578038b9e4','no'),(1364,'updraft_retain_extrarules','a:0:{}','yes'),(1365,'updraft_email','','yes'),(1366,'updraft_report_warningsonly','a:0:{}','yes'),(1367,'updraft_report_wholebackup','a:0:{}','yes'),(1368,'updraft_extradbs','a:0:{}','yes'),(1369,'updraft_include_more_path','a:0:{}','yes'),(1370,'updraft_interval','manual','yes'),(1371,'updraft_retain','2','yes'),(1372,'updraft_interval_database','manual','yes'),(1373,'updraft_retain_db','2','yes'),(1374,'updraft_service','ftp','yes'),(1375,'updraft_include_plugins','1','yes'),(1376,'updraft_include_themes','1','yes'),(1377,'updraft_include_uploads','1','yes'),(1378,'updraft_include_uploads_exclude','backup*,*backups,backwpup*,wp-clone,snapshots','yes'),(1379,'updraft_include_others','1','yes'),(1380,'updraft_include_others_exclude','upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log','yes'),(1381,'updraft_split_every','400','yes'),(1382,'updraft_delete_local','1','yes'),(1383,'updraft_dir','updraft','yes'),(1384,'updraft_debug_mode','0','yes'),(1385,'updraft_ssl_useservercerts','0','yes'),(1386,'updraft_ssl_disableverify','0','yes'),(1387,'updraft_ssl_nossl','0','yes'),(1388,'updraft_lastmessage','Die Sicherung war anscheinend erfolgreich und ist nun vollständig (Feb 16 13:18:50)','yes'),(1389,'updraftplus_unlocked_fd','1','no'),(1390,'updraftplus_last_lock_time_fd','2022-02-16 12:17:48','no'),(1391,'updraftplus_semaphore_fd','0','no'),(1392,'updraft_last_scheduled_fd','1645013868','yes'),(1394,'updraft_backup_history','a:2:{i:1645013868;a:19:{s:7:\"plugins\";a:1:{i:0;s:57:\"backup_2022-02-16-1317_RegWirNoi_a8bd4d99a7a7-plugins.zip\";}s:12:\"plugins-size\";i:27573852;s:6:\"themes\";a:1:{i:0;s:56:\"backup_2022-02-16-1317_RegWirNoi_a8bd4d99a7a7-themes.zip\";}s:11:\"themes-size\";i:16471937;s:7:\"uploads\";a:1:{i:0;s:57:\"backup_2022-02-16-1317_RegWirNoi_a8bd4d99a7a7-uploads.zip\";}s:12:\"uploads-size\";i:2248564;s:6:\"others\";a:1:{i:0;s:56:\"backup_2022-02-16-1317_RegWirNoi_a8bd4d99a7a7-others.zip\";}s:11:\"others-size\";i:1520322;s:2:\"db\";s:51:\"backup_2022-02-16-1317_RegWirNoi_a8bd4d99a7a7-db.gz\";s:7:\"db-size\";i:808943;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"ffa0dcde9a9b21c0c26dc340e4308541dbda313b\";s:7:\"themes0\";s:40:\"7873d4669bdbf47f4b29c96ab7dad4f7a10b08dc\";s:8:\"uploads0\";s:40:\"22ab0c2707d3bb7b636d8f8a7b3da1d5e966705f\";s:7:\"others0\";s:40:\"5dd1a00798ef4d1f91165d3d7553a10f984bb937\";s:3:\"db0\";s:40:\"9445bdfb3723a345a065537d48c74ae67851e377\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"d4635e91eca4f9e76ba99a65ddae8df0b843fea71cd386c7dd44f49f5ac998d3\";s:7:\"themes0\";s:64:\"30599dd47f10a8d4249085da2f2e976601cfadd17d9befc1d5529a12ed9f1167\";s:8:\"uploads0\";s:64:\"4e2da2cf44739f3e3c90bf95b14fdcb5ec2f9ff7907698c3a248ee56cddd51f9\";s:7:\"others0\";s:64:\"1bf5cc979bb7074403ea1cd9b661dbe06c6227873ce9764b8b230754c43b6b65\";s:3:\"db0\";s:64:\"6f9529cf7f14dcb069dca37b3d3a7a455d817ba210d255b46c31a4ef976594ad\";}}s:5:\"nonce\";s:12:\"a8bd4d99a7a7\";s:7:\"service\";a:1:{i:0;s:3:\"ftp\";}s:20:\"service_instance_ids\";a:1:{s:3:\"ftp\";a:1:{i:0;s:34:\"s-878a3dcde7398e2c39f9d3fe4d830f41\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1645013869;s:6:\"themes\";i:1645013906;s:7:\"uploads\";i:1645013920;s:6:\"others\";i:1645013921;}s:18:\"created_by_version\";s:6:\"1.22.1\";s:21:\"last_saved_by_version\";s:6:\"1.22.1\";s:12:\"is_multisite\";b:0;}i:1644159124;a:19:{s:7:\"plugins\";a:1:{i:0;s:57:\"backup_2022-02-06-1552_RegWirNoi_be3dcb8ac446-plugins.zip\";}s:12:\"plugins-size\";i:14057776;s:6:\"themes\";a:1:{i:0;s:56:\"backup_2022-02-06-1552_RegWirNoi_be3dcb8ac446-themes.zip\";}s:11:\"themes-size\";i:16471964;s:7:\"uploads\";a:1:{i:0;s:57:\"backup_2022-02-06-1552_RegWirNoi_be3dcb8ac446-uploads.zip\";}s:12:\"uploads-size\";i:5632718;s:6:\"others\";a:1:{i:0;s:56:\"backup_2022-02-06-1552_RegWirNoi_be3dcb8ac446-others.zip\";}s:11:\"others-size\";i:1408063;s:2:\"db\";s:51:\"backup_2022-02-06-1552_RegWirNoi_be3dcb8ac446-db.gz\";s:7:\"db-size\";i:448653;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"d39a8eaa5438100e9795c50847d109d56a09373a\";s:7:\"themes0\";s:40:\"1f7880f8b8985956212b1c3af4fce739243cd6c8\";s:8:\"uploads0\";s:40:\"913957a86b8a0e0baa8bfc611c198b33f642229f\";s:7:\"others0\";s:40:\"a256a97de34288daf652e901464830de7226c07b\";s:3:\"db0\";s:40:\"4dd26ec33285a9516ef7b8c5c4802d04a82c74fd\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"11b5823750a7e8d230ee6adc2280d5b5d247479b048ccdd476e4ab09815468fd\";s:7:\"themes0\";s:64:\"d5279c461e4f8f8995db43b390398eed9b936923fd7cbcfb48e876fe3960bdb8\";s:8:\"uploads0\";s:64:\"90051d391b094c6c6d42d3e595c702aa491fbb953ae5e961df247e1b8c8ab244\";s:7:\"others0\";s:64:\"1b2bbf7aa5c38fea08da037642a434a479a6e0544f738efce21d9a8ecd67f360\";s:3:\"db0\";s:64:\"fdb921252d5888dc46736e9b08641260654b6f33ced575e38feb3b820308b55d\";}}s:5:\"nonce\";s:12:\"be3dcb8ac446\";s:7:\"service\";a:1:{i:0;s:3:\"ftp\";}s:20:\"service_instance_ids\";a:1:{s:3:\"ftp\";a:1:{i:0;s:34:\"s-878a3dcde7398e2c39f9d3fe4d830f41\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1644159125;s:6:\"themes\";i:1644159137;s:7:\"uploads\";i:1644159147;s:6:\"others\";i:1644159148;}s:18:\"created_by_version\";s:6:\"1.22.1\";s:21:\"last_saved_by_version\";s:6:\"1.22.1\";s:12:\"is_multisite\";b:0;}}','no'),(1395,'updraft_last_backup','a:6:{s:26:\"nonincremental_backup_time\";i:1645013868;s:11:\"backup_time\";i:1645013868;s:12:\"backup_array\";a:11:{s:7:\"plugins\";a:1:{i:0;s:57:\"backup_2022-02-16-1317_RegWirNoi_a8bd4d99a7a7-plugins.zip\";}s:12:\"plugins-size\";i:27573852;s:6:\"themes\";a:1:{i:0;s:56:\"backup_2022-02-16-1317_RegWirNoi_a8bd4d99a7a7-themes.zip\";}s:11:\"themes-size\";i:16471937;s:7:\"uploads\";a:1:{i:0;s:57:\"backup_2022-02-16-1317_RegWirNoi_a8bd4d99a7a7-uploads.zip\";}s:12:\"uploads-size\";i:2248564;s:6:\"others\";a:1:{i:0;s:56:\"backup_2022-02-16-1317_RegWirNoi_a8bd4d99a7a7-others.zip\";}s:11:\"others-size\";i:1520322;s:2:\"db\";s:51:\"backup_2022-02-16-1317_RegWirNoi_a8bd4d99a7a7-db.gz\";s:7:\"db-size\";i:808943;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"ffa0dcde9a9b21c0c26dc340e4308541dbda313b\";s:7:\"themes0\";s:40:\"7873d4669bdbf47f4b29c96ab7dad4f7a10b08dc\";s:8:\"uploads0\";s:40:\"22ab0c2707d3bb7b636d8f8a7b3da1d5e966705f\";s:7:\"others0\";s:40:\"5dd1a00798ef4d1f91165d3d7553a10f984bb937\";s:3:\"db0\";s:40:\"9445bdfb3723a345a065537d48c74ae67851e377\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"d4635e91eca4f9e76ba99a65ddae8df0b843fea71cd386c7dd44f49f5ac998d3\";s:7:\"themes0\";s:64:\"30599dd47f10a8d4249085da2f2e976601cfadd17d9befc1d5529a12ed9f1167\";s:8:\"uploads0\";s:64:\"4e2da2cf44739f3e3c90bf95b14fdcb5ec2f9ff7907698c3a248ee56cddd51f9\";s:7:\"others0\";s:64:\"1bf5cc979bb7074403ea1cd9b661dbe06c6227873ce9764b8b230754c43b6b65\";s:3:\"db0\";s:64:\"6f9529cf7f14dcb069dca37b3d3a7a455d817ba210d255b46c31a4ef976594ad\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"a8bd4d99a7a7\";}','yes'),(1411,'_transient_timeout_avada_ri_Fusion CorekVnYiBJdVRNp5udNcnsRR7RZQHMmjGGi','1644160357','no'),(1413,'_transient_timeout_avada_remote_installer_package_Fusion Core','1644160057','no'),(1415,'_transient_timeout_avada_ri_Fusion BuilderkVnYiBJdVRNp5udNcnsRR7RZQHMmjGGi','1644160357','no'),(1417,'_transient_timeout_avada_remote_installer_package_Fusion Builder','1644160057','no'),(1419,'_transient_timeout_avada_ri_Fusion White Label BrandingkVnYiBJdVRNp5udNcnsRR7RZQHMmjGGi','1644160357','no'),(1421,'_transient_timeout_avada_remote_installer_package_Fusion White Label Branding','1644160057','no'),(1423,'_transient_timeout_avada_ri_Slider RevolutionkVnYiBJdVRNp5udNcnsRR7RZQHMmjGGi','1644160358','no'),(1425,'_transient_timeout_avada_remote_installer_package_Slider Revolution','1644160058','no'),(1427,'_transient_timeout_avada_ri_LayerSlider WPkVnYiBJdVRNp5udNcnsRR7RZQHMmjGGi','1644160358','no'),(1429,'_transient_timeout_avada_remote_installer_package_LayerSlider WP','1644160058','no'),(1431,'_transient_timeout_avada_ri_Advanced Custom Fields PROkVnYiBJdVRNp5udNcnsRR7RZQHMmjGGi','1644160358','no'),(1433,'_transient_timeout_avada_remote_installer_package_Advanced Custom Fields PRO','1644160058','no'),(1435,'_transient_timeout_avada_ri_Convert PluskVnYiBJdVRNp5udNcnsRR7RZQHMmjGGi','1644160359','no'),(1437,'_transient_timeout_avada_remote_installer_package_Convert Plus','1644160059','no'),(1439,'_transient_timeout_avada_ri_FileBirdkVnYiBJdVRNp5udNcnsRR7RZQHMmjGGi','1644160359','no'),(1441,'_transient_timeout_avada_remote_installer_package_FileBird','1644160059','no'),(1636,'secret_key','r{^,#4B-s}rj 9L-Gwmn%`97dbtxnsPeb~K:-<G+LngbTmHx5(9~[$|[XAup jsn','no'),(1655,'recovery_keys','a:0:{}','yes'),(1662,'https_detection_errors','a:0:{}','yes'),(1665,'finished_updating_comment_type','1','yes'),(1666,'_transient_health-check-site-status-result','{\"good\":16,\"recommended\":3,\"critical\":0}','yes'),(2099,'f12-cf7-doubleoptinLastCheck','20220218','no'),(2118,'action_scheduler_hybrid_store_demarkation','166','yes'),(2119,'schema-ActionScheduler_StoreSchema','6.0.1645126738','yes'),(2120,'schema-ActionScheduler_LoggerSchema','3.0.1645126739','yes'),(2121,'wp_mail_smtp_initial_version','3.2.1','no'),(2122,'wp_mail_smtp_version','3.2.1','no'),(2123,'wp_mail_smtp','a:10:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:23:\"unternehmen@wir-noi.org\";s:9:\"from_name\";s:7:\"Wir-Noi\";s:6:\"mailer\";s:4:\"smtp\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:1;s:15:\"from_name_force\";b:0;}s:4:\"smtp\";a:7:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;s:4:\"host\";s:13:\"smtp.ionos.de\";s:10:\"encryption\";s:3:\"tls\";s:4:\"port\";i:587;s:4:\"user\";s:18:\"software@infeos.de\";s:4:\"pass\";s:68:\"lN+j1QDd3uDBQaTwoM26qnGJqw2/d2GgGk7GxrgNNEcVm0kLBx2Zwdw7pY5o66NyoOpq\";}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:0;}s:7:\"smtpcom\";a:2:{s:7:\"api_key\";s:0:\"\";s:7:\"channel\";s:0:\"\";}s:10:\"sendinblue\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:5:\"gmail\";a:2:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"postmark\";a:2:{s:16:\"server_api_token\";s:0:\"\";s:14:\"message_stream\";s:0:\"\";}s:8:\"sendgrid\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:9:\"sparkpost\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"region\";s:2:\"US\";}}','no'),(2124,'wp_mail_smtp_activated_time','1644335818','no'),(2125,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1644335818;}','yes'),(2128,'action_scheduler_lock_async-request-runner','1645733963','yes'),(2131,'wp_mail_smtp_migration_version','4','yes'),(2132,'wp_mail_smtp_debug_events_db_version','1','yes'),(2133,'wp_mail_smtp_activation_prevent_redirect','1','yes'),(2134,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1644335831;s:9:\"dismissed\";b:0;}','yes'),(2135,'wp_mail_smtp_debug','a:0:{}','no'),(2136,'wp_mail_smtp_mail_key','cd/w/w2eZrICEtxMgpIp3JckzByrg0ngJ35YV6fFtAQ=','yes'),(2137,'wp_mail_smtp_lite_sent_email_counter','673','yes'),(2138,'wp_mail_smtp_lite_weekly_sent_email_counter','a:3:{s:2:\"06\";i:25;s:2:\"07\";i:168;s:2:\"08\";i:480;}','yes'),(2268,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1645718704;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(2527,'fusion_core_version','5.6.1','yes'),(2528,'widget_ad_125_125-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2529,'widget_fusion_author-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2530,'widget_contact_info-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2531,'widget_pyre_tabs-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2532,'widget_recent_works-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2533,'widget_tweets-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2534,'widget_flickr-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2535,'widget_social_links-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2536,'widget_facebook-like-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2537,'widget_menu-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2538,'widget_avada-vertical-menu-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2539,'widget_form-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2559,'fusion_builder_version','3.6.1','yes'),(2563,'fusion_form_cleanup_datetime','1645791032','yes'),(2595,'fusion_core_flush_permalinks','1','yes'),(2734,'avada_builder_frontend_loaded','1','yes'),(3522,'fusion_patch_contents_420143','W10=','yes'),(4224,'_transient_timeout_avada-builder-demo-theme-options','1645175626','no'),(6407,'_transient_fusion_fontawesome_en','.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}@font-face{font-family:\"Font Awesome 5 Brands\";font-style:normal;font-weight:normal;src:url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.eot);src:url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.eot?#iefix) format(\"embedded-opentype\"),url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.woff2) format(\"woff2\"),url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.woff) format(\"woff\"),url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.ttf) format(\"truetype\"),url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.svg#fontawesome) format(\"svg\");font-display: block;}.fab{font-family:\"Font Awesome 5 Brands\"}@font-face{font-family:\"Font Awesome 5 Free\";font-style:normal;font-weight:400;src:url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.eot);src:url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.eot?#iefix) format(\"embedded-opentype\"),url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.woff2) format(\"woff2\"),url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.woff) format(\"woff\"),url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.ttf) format(\"truetype\"),url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.svg#fontawesome) format(\"svg\");font-display: block;}.far{font-family:\"Font Awesome 5 Free\";font-weight:400;}@font-face{font-family:\"Font Awesome 5 Free\";font-style:normal;font-weight:900;src:url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.eot);src:url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.eot?#iefix) format(\"embedded-opentype\"),url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff2) format(\"woff2\"),url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff) format(\"woff\"),url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.ttf) format(\"truetype\"),url(//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.svg#fontawesome) format(\"svg\");font-display: block;}.fa,.fas{font-family:\"Font Awesome 5 Free\";font-weight:900}.fa-500px:before{content:\"\\f26e\"}.fa-accessible-icon:before{content:\"\\f368\"}.fa-accusoft:before{content:\"\\f369\"}.fa-acquisitions-incorporated:before{content:\"\\f6af\"}.fa-ad:before{content:\"\\f641\"}.fa-address-book:before{content:\"\\f2b9\"}.fa-address-card:before{content:\"\\f2bb\"}.fa-adjust:before{content:\"\\f042\"}.fa-adn:before{content:\"\\f170\"}.fa-adversal:before{content:\"\\f36a\"}.fa-affiliatetheme:before{content:\"\\f36b\"}.fa-air-freshener:before{content:\"\\f5d0\"}.fa-airbnb:before{content:\"\\f834\"}.fa-algolia:before{content:\"\\f36c\"}.fa-align-center:before{content:\"\\f037\"}.fa-align-justify:before{content:\"\\f039\"}.fa-align-left:before{content:\"\\f036\"}.fa-align-right:before{content:\"\\f038\"}.fa-alipay:before{content:\"\\f642\"}.fa-allergies:before{content:\"\\f461\"}.fa-amazon:before{content:\"\\f270\"}.fa-amazon-pay:before{content:\"\\f42c\"}.fa-ambulance:before{content:\"\\f0f9\"}.fa-american-sign-language-interpreting:before{content:\"\\f2a3\"}.fa-amilia:before{content:\"\\f36d\"}.fa-anchor:before{content:\"\\f13d\"}.fa-android:before{content:\"\\f17b\"}.fa-angellist:before{content:\"\\f209\"}.fa-angle-double-down:before{content:\"\\f103\"}.fa-angle-double-left:before{content:\"\\f100\"}.fa-angle-double-right:before{content:\"\\f101\"}.fa-angle-double-up:before{content:\"\\f102\"}.fa-angle-down:before{content:\"\\f107\"}.fa-angle-left:before{content:\"\\f104\"}.fa-angle-right:before{content:\"\\f105\"}.fa-angle-up:before{content:\"\\f106\"}.fa-angry:before{content:\"\\f556\"}.fa-angrycreative:before{content:\"\\f36e\"}.fa-angular:before{content:\"\\f420\"}.fa-ankh:before{content:\"\\f644\"}.fa-app-store:before{content:\"\\f36f\"}.fa-app-store-ios:before{content:\"\\f370\"}.fa-apper:before{content:\"\\f371\"}.fa-apple:before{content:\"\\f179\"}.fa-apple-alt:before{content:\"\\f5d1\"}.fa-apple-pay:before{content:\"\\f415\"}.fa-archive:before{content:\"\\f187\"}.fa-archway:before{content:\"\\f557\"}.fa-arrow-alt-circle-down:before{content:\"\\f358\"}.fa-arrow-alt-circle-left:before{content:\"\\f359\"}.fa-arrow-alt-circle-right:before{content:\"\\f35a\"}.fa-arrow-alt-circle-up:before{content:\"\\f35b\"}.fa-arrow-circle-down:before{content:\"\\f0ab\"}.fa-arrow-circle-left:before{content:\"\\f0a8\"}.fa-arrow-circle-right:before{content:\"\\f0a9\"}.fa-arrow-circle-up:before{content:\"\\f0aa\"}.fa-arrow-down:before{content:\"\\f063\"}.fa-arrow-left:before{content:\"\\f060\"}.fa-arrow-right:before{content:\"\\f061\"}.fa-arrow-up:before{content:\"\\f062\"}.fa-arrows-alt:before{content:\"\\f0b2\"}.fa-arrows-alt-h:before{content:\"\\f337\"}.fa-arrows-alt-v:before{content:\"\\f338\"}.fa-artstation:before{content:\"\\f77a\"}.fa-assistive-listening-systems:before{content:\"\\f2a2\"}.fa-asterisk:before{content:\"\\f069\"}.fa-asymmetrik:before{content:\"\\f372\"}.fa-at:before{content:\"\\f1fa\"}.fa-atlas:before{content:\"\\f558\"}.fa-atlassian:before{content:\"\\f77b\"}.fa-atom:before{content:\"\\f5d2\"}.fa-audible:before{content:\"\\f373\"}.fa-audio-description:before{content:\"\\f29e\"}.fa-autoprefixer:before{content:\"\\f41c\"}.fa-avianex:before{content:\"\\f374\"}.fa-aviato:before{content:\"\\f421\"}.fa-award:before{content:\"\\f559\"}.fa-aws:before{content:\"\\f375\"}.fa-baby:before{content:\"\\f77c\"}.fa-baby-carriage:before{content:\"\\f77d\"}.fa-backspace:before{content:\"\\f55a\"}.fa-backward:before{content:\"\\f04a\"}.fa-bacon:before{content:\"\\f7e5\"}.fa-bacteria:before{content:\"\\e059\"}.fa-bacterium:before{content:\"\\e05a\"}.fa-bahai:before{content:\"\\f666\"}.fa-balance-scale:before{content:\"\\f24e\"}.fa-balance-scale-left:before{content:\"\\f515\"}.fa-balance-scale-right:before{content:\"\\f516\"}.fa-ban:before{content:\"\\f05e\"}.fa-band-aid:before{content:\"\\f462\"}.fa-bandcamp:before{content:\"\\f2d5\"}.fa-barcode:before{content:\"\\f02a\"}.fa-bars:before{content:\"\\f0c9\"}.fa-baseball-ball:before{content:\"\\f433\"}.fa-basketball-ball:before{content:\"\\f434\"}.fa-bath:before{content:\"\\f2cd\"}.fa-battery-empty:before{content:\"\\f244\"}.fa-battery-full:before{content:\"\\f240\"}.fa-battery-half:before{content:\"\\f242\"}.fa-battery-quarter:before{content:\"\\f243\"}.fa-battery-three-quarters:before{content:\"\\f241\"}.fa-battle-net:before{content:\"\\f835\"}.fa-bed:before{content:\"\\f236\"}.fa-beer:before{content:\"\\f0fc\"}.fa-behance:before{content:\"\\f1b4\"}.fa-behance-square:before{content:\"\\f1b5\"}.fa-bell:before{content:\"\\f0f3\"}.fa-bell-slash:before{content:\"\\f1f6\"}.fa-bezier-curve:before{content:\"\\f55b\"}.fa-bible:before{content:\"\\f647\"}.fa-bicycle:before{content:\"\\f206\"}.fa-biking:before{content:\"\\f84a\"}.fa-bimobject:before{content:\"\\f378\"}.fa-binoculars:before{content:\"\\f1e5\"}.fa-biohazard:before{content:\"\\f780\"}.fa-birthday-cake:before{content:\"\\f1fd\"}.fa-bitbucket:before{content:\"\\f171\"}.fa-bitcoin:before{content:\"\\f379\"}.fa-bity:before{content:\"\\f37a\"}.fa-black-tie:before{content:\"\\f27e\"}.fa-blackberry:before{content:\"\\f37b\"}.fa-blender:before{content:\"\\f517\"}.fa-blender-phone:before{content:\"\\f6b6\"}.fa-blind:before{content:\"\\f29d\"}.fa-blog:before{content:\"\\f781\"}.fa-blogger:before{content:\"\\f37c\"}.fa-blogger-b:before{content:\"\\f37d\"}.fa-bluetooth:before{content:\"\\f293\"}.fa-bluetooth-b:before{content:\"\\f294\"}.fa-bold:before{content:\"\\f032\"}.fa-bolt:before{content:\"\\f0e7\"}.fa-bomb:before{content:\"\\f1e2\"}.fa-bone:before{content:\"\\f5d7\"}.fa-bong:before{content:\"\\f55c\"}.fa-book:before{content:\"\\f02d\"}.fa-book-dead:before{content:\"\\f6b7\"}.fa-book-medical:before{content:\"\\f7e6\"}.fa-book-open:before{content:\"\\f518\"}.fa-book-reader:before{content:\"\\f5da\"}.fa-bookmark:before{content:\"\\f02e\"}.fa-bootstrap:before{content:\"\\f836\"}.fa-border-all:before{content:\"\\f84c\"}.fa-border-none:before{content:\"\\f850\"}.fa-border-style:before{content:\"\\f853\"}.fa-bowling-ball:before{content:\"\\f436\"}.fa-box:before{content:\"\\f466\"}.fa-box-open:before{content:\"\\f49e\"}.fa-box-tissue:before{content:\"\\e05b\"}.fa-boxes:before{content:\"\\f468\"}.fa-braille:before{content:\"\\f2a1\"}.fa-brain:before{content:\"\\f5dc\"}.fa-bread-slice:before{content:\"\\f7ec\"}.fa-briefcase:before{content:\"\\f0b1\"}.fa-briefcase-medical:before{content:\"\\f469\"}.fa-broadcast-tower:before{content:\"\\f519\"}.fa-broom:before{content:\"\\f51a\"}.fa-brush:before{content:\"\\f55d\"}.fa-btc:before{content:\"\\f15a\"}.fa-buffer:before{content:\"\\f837\"}.fa-bug:before{content:\"\\f188\"}.fa-building:before{content:\"\\f1ad\"}.fa-bullhorn:before{content:\"\\f0a1\"}.fa-bullseye:before{content:\"\\f140\"}.fa-burn:before{content:\"\\f46a\"}.fa-buromobelexperte:before{content:\"\\f37f\"}.fa-bus:before{content:\"\\f207\"}.fa-bus-alt:before{content:\"\\f55e\"}.fa-business-time:before{content:\"\\f64a\"}.fa-buy-n-large:before{content:\"\\f8a6\"}.fa-buysellads:before{content:\"\\f20d\"}.fa-calculator:before{content:\"\\f1ec\"}.fa-calendar:before{content:\"\\f133\"}.fa-calendar-alt:before{content:\"\\f073\"}.fa-calendar-check:before{content:\"\\f274\"}.fa-calendar-day:before{content:\"\\f783\"}.fa-calendar-minus:before{content:\"\\f272\"}.fa-calendar-plus:before{content:\"\\f271\"}.fa-calendar-times:before{content:\"\\f273\"}.fa-calendar-week:before{content:\"\\f784\"}.fa-camera:before{content:\"\\f030\"}.fa-camera-retro:before{content:\"\\f083\"}.fa-campground:before{content:\"\\f6bb\"}.fa-canadian-maple-leaf:before{content:\"\\f785\"}.fa-candy-cane:before{content:\"\\f786\"}.fa-cannabis:before{content:\"\\f55f\"}.fa-capsules:before{content:\"\\f46b\"}.fa-car:before{content:\"\\f1b9\"}.fa-car-alt:before{content:\"\\f5de\"}.fa-car-battery:before{content:\"\\f5df\"}.fa-car-crash:before{content:\"\\f5e1\"}.fa-car-side:before{content:\"\\f5e4\"}.fa-caravan:before{content:\"\\f8ff\"}.fa-caret-down:before{content:\"\\f0d7\"}.fa-caret-left:before{content:\"\\f0d9\"}.fa-caret-right:before{content:\"\\f0da\"}.fa-caret-square-down:before{content:\"\\f150\"}.fa-caret-square-left:before{content:\"\\f191\"}.fa-caret-square-right:before{content:\"\\f152\"}.fa-caret-square-up:before{content:\"\\f151\"}.fa-caret-up:before{content:\"\\f0d8\"}.fa-carrot:before{content:\"\\f787\"}.fa-cart-arrow-down:before{content:\"\\f218\"}.fa-cart-plus:before{content:\"\\f217\"}.fa-cash-register:before{content:\"\\f788\"}.fa-cat:before{content:\"\\f6be\"}.fa-cc-amazon-pay:before{content:\"\\f42d\"}.fa-cc-amex:before{content:\"\\f1f3\"}.fa-cc-apple-pay:before{content:\"\\f416\"}.fa-cc-diners-club:before{content:\"\\f24c\"}.fa-cc-discover:before{content:\"\\f1f2\"}.fa-cc-jcb:before{content:\"\\f24b\"}.fa-cc-mastercard:before{content:\"\\f1f1\"}.fa-cc-paypal:before{content:\"\\f1f4\"}.fa-cc-stripe:before{content:\"\\f1f5\"}.fa-cc-visa:before{content:\"\\f1f0\"}.fa-centercode:before{content:\"\\f380\"}.fa-centos:before{content:\"\\f789\"}.fa-certificate:before{content:\"\\f0a3\"}.fa-chair:before{content:\"\\f6c0\"}.fa-chalkboard:before{content:\"\\f51b\"}.fa-chalkboard-teacher:before{content:\"\\f51c\"}.fa-charging-station:before{content:\"\\f5e7\"}.fa-chart-area:before{content:\"\\f1fe\"}.fa-chart-bar:before{content:\"\\f080\"}.fa-chart-line:before{content:\"\\f201\"}.fa-chart-pie:before{content:\"\\f200\"}.fa-check:before{content:\"\\f00c\"}.fa-check-circle:before{content:\"\\f058\"}.fa-check-double:before{content:\"\\f560\"}.fa-check-square:before{content:\"\\f14a\"}.fa-cheese:before{content:\"\\f7ef\"}.fa-chess:before{content:\"\\f439\"}.fa-chess-bishop:before{content:\"\\f43a\"}.fa-chess-board:before{content:\"\\f43c\"}.fa-chess-king:before{content:\"\\f43f\"}.fa-chess-knight:before{content:\"\\f441\"}.fa-chess-pawn:before{content:\"\\f443\"}.fa-chess-queen:before{content:\"\\f445\"}.fa-chess-rook:before{content:\"\\f447\"}.fa-chevron-circle-down:before{content:\"\\f13a\"}.fa-chevron-circle-left:before{content:\"\\f137\"}.fa-chevron-circle-right:before{content:\"\\f138\"}.fa-chevron-circle-up:before{content:\"\\f139\"}.fa-chevron-down:before{content:\"\\f078\"}.fa-chevron-left:before{content:\"\\f053\"}.fa-chevron-right:before{content:\"\\f054\"}.fa-chevron-up:before{content:\"\\f077\"}.fa-child:before{content:\"\\f1ae\"}.fa-chrome:before{content:\"\\f268\"}.fa-chromecast:before{content:\"\\f838\"}.fa-church:before{content:\"\\f51d\"}.fa-circle:before{content:\"\\f111\"}.fa-circle-notch:before{content:\"\\f1ce\"}.fa-city:before{content:\"\\f64f\"}.fa-clinic-medical:before{content:\"\\f7f2\"}.fa-clipboard:before{content:\"\\f328\"}.fa-clipboard-check:before{content:\"\\f46c\"}.fa-clipboard-list:before{content:\"\\f46d\"}.fa-clock:before{content:\"\\f017\"}.fa-clone:before{content:\"\\f24d\"}.fa-closed-captioning:before{content:\"\\f20a\"}.fa-cloud:before{content:\"\\f0c2\"}.fa-cloud-download-alt:before{content:\"\\f381\"}.fa-cloud-meatball:before{content:\"\\f73b\"}.fa-cloud-moon:before{content:\"\\f6c3\"}.fa-cloud-moon-rain:before{content:\"\\f73c\"}.fa-cloud-rain:before{content:\"\\f73d\"}.fa-cloud-showers-heavy:before{content:\"\\f740\"}.fa-cloud-sun:before{content:\"\\f6c4\"}.fa-cloud-sun-rain:before{content:\"\\f743\"}.fa-cloud-upload-alt:before{content:\"\\f382\"}.fa-cloudflare:before{content:\"\\e07d\"}.fa-cloudscale:before{content:\"\\f383\"}.fa-cloudsmith:before{content:\"\\f384\"}.fa-cloudversify:before{content:\"\\f385\"}.fa-cocktail:before{content:\"\\f561\"}.fa-code:before{content:\"\\f121\"}.fa-code-branch:before{content:\"\\f126\"}.fa-codepen:before{content:\"\\f1cb\"}.fa-codiepie:before{content:\"\\f284\"}.fa-coffee:before{content:\"\\f0f4\"}.fa-cog:before{content:\"\\f013\"}.fa-cogs:before{content:\"\\f085\"}.fa-coins:before{content:\"\\f51e\"}.fa-columns:before{content:\"\\f0db\"}.fa-comment:before{content:\"\\f075\"}.fa-comment-alt:before{content:\"\\f27a\"}.fa-comment-dollar:before{content:\"\\f651\"}.fa-comment-dots:before{content:\"\\f4ad\"}.fa-comment-medical:before{content:\"\\f7f5\"}.fa-comment-slash:before{content:\"\\f4b3\"}.fa-comments:before{content:\"\\f086\"}.fa-comments-dollar:before{content:\"\\f653\"}.fa-compact-disc:before{content:\"\\f51f\"}.fa-compass:before{content:\"\\f14e\"}.fa-compress:before{content:\"\\f066\"}.fa-compress-alt:before{content:\"\\f422\"}.fa-compress-arrows-alt:before{content:\"\\f78c\"}.fa-concierge-bell:before{content:\"\\f562\"}.fa-confluence:before{content:\"\\f78d\"}.fa-connectdevelop:before{content:\"\\f20e\"}.fa-contao:before{content:\"\\f26d\"}.fa-cookie:before{content:\"\\f563\"}.fa-cookie-bite:before{content:\"\\f564\"}.fa-copy:before{content:\"\\f0c5\"}.fa-copyright:before{content:\"\\f1f9\"}.fa-cotton-bureau:before{content:\"\\f89e\"}.fa-couch:before{content:\"\\f4b8\"}.fa-cpanel:before{content:\"\\f388\"}.fa-creative-commons:before{content:\"\\f25e\"}.fa-creative-commons-by:before{content:\"\\f4e7\"}.fa-creative-commons-nc:before{content:\"\\f4e8\"}.fa-creative-commons-nc-eu:before{content:\"\\f4e9\"}.fa-creative-commons-nc-jp:before{content:\"\\f4ea\"}.fa-creative-commons-nd:before{content:\"\\f4eb\"}.fa-creative-commons-pd:before{content:\"\\f4ec\"}.fa-creative-commons-pd-alt:before{content:\"\\f4ed\"}.fa-creative-commons-remix:before{content:\"\\f4ee\"}.fa-creative-commons-sa:before{content:\"\\f4ef\"}.fa-creative-commons-sampling:before{content:\"\\f4f0\"}.fa-creative-commons-sampling-plus:before{content:\"\\f4f1\"}.fa-creative-commons-share:before{content:\"\\f4f2\"}.fa-creative-commons-zero:before{content:\"\\f4f3\"}.fa-credit-card:before{content:\"\\f09d\"}.fa-critical-role:before{content:\"\\f6c9\"}.fa-crop:before{content:\"\\f125\"}.fa-crop-alt:before{content:\"\\f565\"}.fa-cross:before{content:\"\\f654\"}.fa-crosshairs:before{content:\"\\f05b\"}.fa-crow:before{content:\"\\f520\"}.fa-crown:before{content:\"\\f521\"}.fa-crutch:before{content:\"\\f7f7\"}.fa-css3:before{content:\"\\f13c\"}.fa-css3-alt:before{content:\"\\f38b\"}.fa-cube:before{content:\"\\f1b2\"}.fa-cubes:before{content:\"\\f1b3\"}.fa-cut:before{content:\"\\f0c4\"}.fa-cuttlefish:before{content:\"\\f38c\"}.fa-d-and-d:before{content:\"\\f38d\"}.fa-d-and-d-beyond:before{content:\"\\f6ca\"}.fa-dailymotion:before{content:\"\\e052\"}.fa-dashcube:before{content:\"\\f210\"}.fa-database:before{content:\"\\f1c0\"}.fa-deaf:before{content:\"\\f2a4\"}.fa-deezer:before{content:\"\\e077\"}.fa-delicious:before{content:\"\\f1a5\"}.fa-democrat:before{content:\"\\f747\"}.fa-deploydog:before{content:\"\\f38e\"}.fa-deskpro:before{content:\"\\f38f\"}.fa-desktop:before{content:\"\\f108\"}.fa-dev:before{content:\"\\f6cc\"}.fa-deviantart:before{content:\"\\f1bd\"}.fa-dharmachakra:before{content:\"\\f655\"}.fa-dhl:before{content:\"\\f790\"}.fa-diagnoses:before{content:\"\\f470\"}.fa-diaspora:before{content:\"\\f791\"}.fa-dice:before{content:\"\\f522\"}.fa-dice-d20:before{content:\"\\f6cf\"}.fa-dice-d6:before{content:\"\\f6d1\"}.fa-dice-five:before{content:\"\\f523\"}.fa-dice-four:before{content:\"\\f524\"}.fa-dice-one:before{content:\"\\f525\"}.fa-dice-six:before{content:\"\\f526\"}.fa-dice-three:before{content:\"\\f527\"}.fa-dice-two:before{content:\"\\f528\"}.fa-digg:before{content:\"\\f1a6\"}.fa-digital-ocean:before{content:\"\\f391\"}.fa-digital-tachograph:before{content:\"\\f566\"}.fa-directions:before{content:\"\\f5eb\"}.fa-discord:before{content:\"\\f392\"}.fa-discourse:before{content:\"\\f393\"}.fa-disease:before{content:\"\\f7fa\"}.fa-divide:before{content:\"\\f529\"}.fa-dizzy:before{content:\"\\f567\"}.fa-dna:before{content:\"\\f471\"}.fa-dochub:before{content:\"\\f394\"}.fa-docker:before{content:\"\\f395\"}.fa-dog:before{content:\"\\f6d3\"}.fa-dollar-sign:before{content:\"\\f155\"}.fa-dolly:before{content:\"\\f472\"}.fa-dolly-flatbed:before{content:\"\\f474\"}.fa-donate:before{content:\"\\f4b9\"}.fa-door-closed:before{content:\"\\f52a\"}.fa-door-open:before{content:\"\\f52b\"}.fa-dot-circle:before{content:\"\\f192\"}.fa-dove:before{content:\"\\f4ba\"}.fa-download:before{content:\"\\f019\"}.fa-draft2digital:before{content:\"\\f396\"}.fa-drafting-compass:before{content:\"\\f568\"}.fa-dragon:before{content:\"\\f6d5\"}.fa-draw-polygon:before{content:\"\\f5ee\"}.fa-dribbble:before{content:\"\\f17d\"}.fa-dribbble-square:before{content:\"\\f397\"}.fa-dropbox:before{content:\"\\f16b\"}.fa-drum:before{content:\"\\f569\"}.fa-drum-steelpan:before{content:\"\\f56a\"}.fa-drumstick-bite:before{content:\"\\f6d7\"}.fa-drupal:before{content:\"\\f1a9\"}.fa-dumbbell:before{content:\"\\f44b\"}.fa-dumpster:before{content:\"\\f793\"}.fa-dumpster-fire:before{content:\"\\f794\"}.fa-dungeon:before{content:\"\\f6d9\"}.fa-dyalog:before{content:\"\\f399\"}.fa-earlybirds:before{content:\"\\f39a\"}.fa-ebay:before{content:\"\\f4f4\"}.fa-edge:before{content:\"\\f282\"}.fa-edge-legacy:before{content:\"\\e078\"}.fa-edit:before{content:\"\\f044\"}.fa-egg:before{content:\"\\f7fb\"}.fa-eject:before{content:\"\\f052\"}.fa-elementor:before{content:\"\\f430\"}.fa-ellipsis-h:before{content:\"\\f141\"}.fa-ellipsis-v:before{content:\"\\f142\"}.fa-ello:before{content:\"\\f5f1\"}.fa-ember:before{content:\"\\f423\"}.fa-empire:before{content:\"\\f1d1\"}.fa-envelope:before{content:\"\\f0e0\"}.fa-envelope-open:before{content:\"\\f2b6\"}.fa-envelope-open-text:before{content:\"\\f658\"}.fa-envelope-square:before{content:\"\\f199\"}.fa-envira:before{content:\"\\f299\"}.fa-equals:before{content:\"\\f52c\"}.fa-eraser:before{content:\"\\f12d\"}.fa-erlang:before{content:\"\\f39d\"}.fa-ethereum:before{content:\"\\f42e\"}.fa-ethernet:before{content:\"\\f796\"}.fa-etsy:before{content:\"\\f2d7\"}.fa-euro-sign:before{content:\"\\f153\"}.fa-evernote:before{content:\"\\f839\"}.fa-exchange-alt:before{content:\"\\f362\"}.fa-exclamation:before{content:\"\\f12a\"}.fa-exclamation-circle:before{content:\"\\f06a\"}.fa-exclamation-triangle:before{content:\"\\f071\"}.fa-expand:before{content:\"\\f065\"}.fa-expand-alt:before{content:\"\\f424\"}.fa-expand-arrows-alt:before{content:\"\\f31e\"}.fa-expeditedssl:before{content:\"\\f23e\"}.fa-external-link-alt:before{content:\"\\f35d\"}.fa-external-link-square-alt:before{content:\"\\f360\"}.fa-eye:before{content:\"\\f06e\"}.fa-eye-dropper:before{content:\"\\f1fb\"}.fa-eye-slash:before{content:\"\\f070\"}.fa-facebook:before{content:\"\\f09a\"}.fa-facebook-f:before{content:\"\\f39e\"}.fa-facebook-messenger:before{content:\"\\f39f\"}.fa-facebook-square:before{content:\"\\f082\"}.fa-fan:before{content:\"\\f863\"}.fa-fantasy-flight-games:before{content:\"\\f6dc\"}.fa-fast-backward:before{content:\"\\f049\"}.fa-fast-forward:before{content:\"\\f050\"}.fa-faucet:before{content:\"\\e005\"}.fa-fax:before{content:\"\\f1ac\"}.fa-feather:before{content:\"\\f52d\"}.fa-feather-alt:before{content:\"\\f56b\"}.fa-fedex:before{content:\"\\f797\"}.fa-fedora:before{content:\"\\f798\"}.fa-female:before{content:\"\\f182\"}.fa-fighter-jet:before{content:\"\\f0fb\"}.fa-figma:before{content:\"\\f799\"}.fa-file:before{content:\"\\f15b\"}.fa-file-alt:before{content:\"\\f15c\"}.fa-file-archive:before{content:\"\\f1c6\"}.fa-file-audio:before{content:\"\\f1c7\"}.fa-file-code:before{content:\"\\f1c9\"}.fa-file-contract:before{content:\"\\f56c\"}.fa-file-csv:before{content:\"\\f6dd\"}.fa-file-download:before{content:\"\\f56d\"}.fa-file-excel:before{content:\"\\f1c3\"}.fa-file-export:before{content:\"\\f56e\"}.fa-file-image:before{content:\"\\f1c5\"}.fa-file-import:before{content:\"\\f56f\"}.fa-file-invoice:before{content:\"\\f570\"}.fa-file-invoice-dollar:before{content:\"\\f571\"}.fa-file-medical:before{content:\"\\f477\"}.fa-file-medical-alt:before{content:\"\\f478\"}.fa-file-pdf:before{content:\"\\f1c1\"}.fa-file-powerpoint:before{content:\"\\f1c4\"}.fa-file-prescription:before{content:\"\\f572\"}.fa-file-signature:before{content:\"\\f573\"}.fa-file-upload:before{content:\"\\f574\"}.fa-file-video:before{content:\"\\f1c8\"}.fa-file-word:before{content:\"\\f1c2\"}.fa-fill:before{content:\"\\f575\"}.fa-fill-drip:before{content:\"\\f576\"}.fa-film:before{content:\"\\f008\"}.fa-filter:before{content:\"\\f0b0\"}.fa-fingerprint:before{content:\"\\f577\"}.fa-fire:before{content:\"\\f06d\"}.fa-fire-alt:before{content:\"\\f7e4\"}.fa-fire-extinguisher:before{content:\"\\f134\"}.fa-firefox:before{content:\"\\f269\"}.fa-firefox-browser:before{content:\"\\e007\"}.fa-first-aid:before{content:\"\\f479\"}.fa-first-order:before{content:\"\\f2b0\"}.fa-first-order-alt:before{content:\"\\f50a\"}.fa-firstdraft:before{content:\"\\f3a1\"}.fa-fish:before{content:\"\\f578\"}.fa-fist-raised:before{content:\"\\f6de\"}.fa-flag:before{content:\"\\f024\"}.fa-flag-checkered:before{content:\"\\f11e\"}.fa-flag-usa:before{content:\"\\f74d\"}.fa-flask:before{content:\"\\f0c3\"}.fa-flickr:before{content:\"\\f16e\"}.fa-flipboard:before{content:\"\\f44d\"}.fa-flushed:before{content:\"\\f579\"}.fa-fly:before{content:\"\\f417\"}.fa-folder:before{content:\"\\f07b\"}.fa-folder-minus:before{content:\"\\f65d\"}.fa-folder-open:before{content:\"\\f07c\"}.fa-folder-plus:before{content:\"\\f65e\"}.fa-font:before{content:\"\\f031\"}.fa-font-awesome:before{content:\"\\f2b4\"}.fa-font-awesome-alt:before{content:\"\\f35c\"}.fa-font-awesome-flag:before{content:\"\\f425\"}.fa-fonticons:before{content:\"\\f280\"}.fa-fonticons-fi:before{content:\"\\f3a2\"}.fa-football-ball:before{content:\"\\f44e\"}.fa-fort-awesome:before{content:\"\\f286\"}.fa-fort-awesome-alt:before{content:\"\\f3a3\"}.fa-forumbee:before{content:\"\\f211\"}.fa-forward:before{content:\"\\f04e\"}.fa-foursquare:before{content:\"\\f180\"}.fa-free-code-camp:before{content:\"\\f2c5\"}.fa-freebsd:before{content:\"\\f3a4\"}.fa-frog:before{content:\"\\f52e\"}.fa-frown:before{content:\"\\f119\"}.fa-frown-open:before{content:\"\\f57a\"}.fa-fulcrum:before{content:\"\\f50b\"}.fa-funnel-dollar:before{content:\"\\f662\"}.fa-futbol:before{content:\"\\f1e3\"}.fa-galactic-republic:before{content:\"\\f50c\"}.fa-galactic-senate:before{content:\"\\f50d\"}.fa-gamepad:before{content:\"\\f11b\"}.fa-gas-pump:before{content:\"\\f52f\"}.fa-gavel:before{content:\"\\f0e3\"}.fa-gem:before{content:\"\\f3a5\"}.fa-genderless:before{content:\"\\f22d\"}.fa-get-pocket:before{content:\"\\f265\"}.fa-gg:before{content:\"\\f260\"}.fa-gg-circle:before{content:\"\\f261\"}.fa-ghost:before{content:\"\\f6e2\"}.fa-gift:before{content:\"\\f06b\"}.fa-gifts:before{content:\"\\f79c\"}.fa-git:before{content:\"\\f1d3\"}.fa-git-alt:before{content:\"\\f841\"}.fa-git-square:before{content:\"\\f1d2\"}.fa-github:before{content:\"\\f09b\"}.fa-github-alt:before{content:\"\\f113\"}.fa-github-square:before{content:\"\\f092\"}.fa-gitkraken:before{content:\"\\f3a6\"}.fa-gitlab:before{content:\"\\f296\"}.fa-gitter:before{content:\"\\f426\"}.fa-glass-cheers:before{content:\"\\f79f\"}.fa-glass-martini:before{content:\"\\f000\"}.fa-glass-martini-alt:before{content:\"\\f57b\"}.fa-glass-whiskey:before{content:\"\\f7a0\"}.fa-glasses:before{content:\"\\f530\"}.fa-glide:before{content:\"\\f2a5\"}.fa-glide-g:before{content:\"\\f2a6\"}.fa-globe:before{content:\"\\f0ac\"}.fa-globe-africa:before{content:\"\\f57c\"}.fa-globe-americas:before{content:\"\\f57d\"}.fa-globe-asia:before{content:\"\\f57e\"}.fa-globe-europe:before{content:\"\\f7a2\"}.fa-gofore:before{content:\"\\f3a7\"}.fa-golf-ball:before{content:\"\\f450\"}.fa-goodreads:before{content:\"\\f3a8\"}.fa-goodreads-g:before{content:\"\\f3a9\"}.fa-google:before{content:\"\\f1a0\"}.fa-google-drive:before{content:\"\\f3aa\"}.fa-google-pay:before{content:\"\\e079\"}.fa-google-play:before{content:\"\\f3ab\"}.fa-google-plus:before{content:\"\\f2b3\"}.fa-google-plus-g:before{content:\"\\f0d5\"}.fa-google-plus-square:before{content:\"\\f0d4\"}.fa-google-wallet:before{content:\"\\f1ee\"}.fa-gopuram:before{content:\"\\f664\"}.fa-graduation-cap:before{content:\"\\f19d\"}.fa-gratipay:before{content:\"\\f184\"}.fa-grav:before{content:\"\\f2d6\"}.fa-greater-than:before{content:\"\\f531\"}.fa-greater-than-equal:before{content:\"\\f532\"}.fa-grimace:before{content:\"\\f57f\"}.fa-grin:before{content:\"\\f580\"}.fa-grin-alt:before{content:\"\\f581\"}.fa-grin-beam:before{content:\"\\f582\"}.fa-grin-beam-sweat:before{content:\"\\f583\"}.fa-grin-hearts:before{content:\"\\f584\"}.fa-grin-squint:before{content:\"\\f585\"}.fa-grin-squint-tears:before{content:\"\\f586\"}.fa-grin-stars:before{content:\"\\f587\"}.fa-grin-tears:before{content:\"\\f588\"}.fa-grin-tongue:before{content:\"\\f589\"}.fa-grin-tongue-squint:before{content:\"\\f58a\"}.fa-grin-tongue-wink:before{content:\"\\f58b\"}.fa-grin-wink:before{content:\"\\f58c\"}.fa-grip-horizontal:before{content:\"\\f58d\"}.fa-grip-lines:before{content:\"\\f7a4\"}.fa-grip-lines-vertical:before{content:\"\\f7a5\"}.fa-grip-vertical:before{content:\"\\f58e\"}.fa-gripfire:before{content:\"\\f3ac\"}.fa-grunt:before{content:\"\\f3ad\"}.fa-guilded:before{content:\"\\e07e\"}.fa-guitar:before{content:\"\\f7a6\"}.fa-gulp:before{content:\"\\f3ae\"}.fa-h-square:before{content:\"\\f0fd\"}.fa-hacker-news:before{content:\"\\f1d4\"}.fa-hacker-news-square:before{content:\"\\f3af\"}.fa-hackerrank:before{content:\"\\f5f7\"}.fa-hamburger:before{content:\"\\f805\"}.fa-hammer:before{content:\"\\f6e3\"}.fa-hamsa:before{content:\"\\f665\"}.fa-hand-holding:before{content:\"\\f4bd\"}.fa-hand-holding-heart:before{content:\"\\f4be\"}.fa-hand-holding-medical:before{content:\"\\e05c\"}.fa-hand-holding-usd:before{content:\"\\f4c0\"}.fa-hand-holding-water:before{content:\"\\f4c1\"}.fa-hand-lizard:before{content:\"\\f258\"}.fa-hand-middle-finger:before{content:\"\\f806\"}.fa-hand-paper:before{content:\"\\f256\"}.fa-hand-peace:before{content:\"\\f25b\"}.fa-hand-point-down:before{content:\"\\f0a7\"}.fa-hand-point-left:before{content:\"\\f0a5\"}.fa-hand-point-right:before{content:\"\\f0a4\"}.fa-hand-point-up:before{content:\"\\f0a6\"}.fa-hand-pointer:before{content:\"\\f25a\"}.fa-hand-rock:before{content:\"\\f255\"}.fa-hand-scissors:before{content:\"\\f257\"}.fa-hand-sparkles:before{content:\"\\e05d\"}.fa-hand-spock:before{content:\"\\f259\"}.fa-hands:before{content:\"\\f4c2\"}.fa-hands-helping:before{content:\"\\f4c4\"}.fa-hands-wash:before{content:\"\\e05e\"}.fa-handshake:before{content:\"\\f2b5\"}.fa-handshake-alt-slash:before{content:\"\\e05f\"}.fa-handshake-slash:before{content:\"\\e060\"}.fa-hanukiah:before{content:\"\\f6e6\"}.fa-hard-hat:before{content:\"\\f807\"}.fa-hashtag:before{content:\"\\f292\"}.fa-hat-cowboy:before{content:\"\\f8c0\"}.fa-hat-cowboy-side:before{content:\"\\f8c1\"}.fa-hat-wizard:before{content:\"\\f6e8\"}.fa-hdd:before{content:\"\\f0a0\"}.fa-head-side-cough:before{content:\"\\e061\"}.fa-head-side-cough-slash:before{content:\"\\e062\"}.fa-head-side-mask:before{content:\"\\e063\"}.fa-head-side-virus:before{content:\"\\e064\"}.fa-heading:before{content:\"\\f1dc\"}.fa-headphones:before{content:\"\\f025\"}.fa-headphones-alt:before{content:\"\\f58f\"}.fa-headset:before{content:\"\\f590\"}.fa-heart:before{content:\"\\f004\"}.fa-heart-broken:before{content:\"\\f7a9\"}.fa-heartbeat:before{content:\"\\f21e\"}.fa-helicopter:before{content:\"\\f533\"}.fa-highlighter:before{content:\"\\f591\"}.fa-hiking:before{content:\"\\f6ec\"}.fa-hippo:before{content:\"\\f6ed\"}.fa-hips:before{content:\"\\f452\"}.fa-hire-a-helper:before{content:\"\\f3b0\"}.fa-history:before{content:\"\\f1da\"}.fa-hive:before{content:\"\\e07f\"}.fa-hockey-puck:before{content:\"\\f453\"}.fa-holly-berry:before{content:\"\\f7aa\"}.fa-home:before{content:\"\\f015\"}.fa-hooli:before{content:\"\\f427\"}.fa-hornbill:before{content:\"\\f592\"}.fa-horse:before{content:\"\\f6f0\"}.fa-horse-head:before{content:\"\\f7ab\"}.fa-hospital:before{content:\"\\f0f8\"}.fa-hospital-alt:before{content:\"\\f47d\"}.fa-hospital-symbol:before{content:\"\\f47e\"}.fa-hospital-user:before{content:\"\\f80d\"}.fa-hot-tub:before{content:\"\\f593\"}.fa-hotdog:before{content:\"\\f80f\"}.fa-hotel:before{content:\"\\f594\"}.fa-hotjar:before{content:\"\\f3b1\"}.fa-hourglass:before{content:\"\\f254\"}.fa-hourglass-end:before{content:\"\\f253\"}.fa-hourglass-half:before{content:\"\\f252\"}.fa-hourglass-start:before{content:\"\\f251\"}.fa-house-damage:before{content:\"\\f6f1\"}.fa-house-user:before{content:\"\\e065\"}.fa-houzz:before{content:\"\\f27c\"}.fa-hryvnia:before{content:\"\\f6f2\"}.fa-html5:before{content:\"\\f13b\"}.fa-hubspot:before{content:\"\\f3b2\"}.fa-i-cursor:before{content:\"\\f246\"}.fa-ice-cream:before{content:\"\\f810\"}.fa-icicles:before{content:\"\\f7ad\"}.fa-icons:before{content:\"\\f86d\"}.fa-id-badge:before{content:\"\\f2c1\"}.fa-id-card:before{content:\"\\f2c2\"}.fa-id-card-alt:before{content:\"\\f47f\"}.fa-ideal:before{content:\"\\e013\"}.fa-igloo:before{content:\"\\f7ae\"}.fa-image:before{content:\"\\f03e\"}.fa-images:before{content:\"\\f302\"}.fa-imdb:before{content:\"\\f2d8\"}.fa-inbox:before{content:\"\\f01c\"}.fa-indent:before{content:\"\\f03c\"}.fa-industry:before{content:\"\\f275\"}.fa-infinity:before{content:\"\\f534\"}.fa-info:before{content:\"\\f129\"}.fa-info-circle:before{content:\"\\f05a\"}.fa-innosoft:before{content:\"\\e080\"}.fa-instagram:before{content:\"\\f16d\"}.fa-instagram-square:before{content:\"\\e055\"}.fa-instalod:before{content:\"\\e081\"}.fa-intercom:before{content:\"\\f7af\"}.fa-internet-explorer:before{content:\"\\f26b\"}.fa-invision:before{content:\"\\f7b0\"}.fa-ioxhost:before{content:\"\\f208\"}.fa-italic:before{content:\"\\f033\"}.fa-itch-io:before{content:\"\\f83a\"}.fa-itunes:before{content:\"\\f3b4\"}.fa-itunes-note:before{content:\"\\f3b5\"}.fa-java:before{content:\"\\f4e4\"}.fa-jedi:before{content:\"\\f669\"}.fa-jedi-order:before{content:\"\\f50e\"}.fa-jenkins:before{content:\"\\f3b6\"}.fa-jira:before{content:\"\\f7b1\"}.fa-joget:before{content:\"\\f3b7\"}.fa-joint:before{content:\"\\f595\"}.fa-joomla:before{content:\"\\f1aa\"}.fa-journal-whills:before{content:\"\\f66a\"}.fa-js:before{content:\"\\f3b8\"}.fa-js-square:before{content:\"\\f3b9\"}.fa-jsfiddle:before{content:\"\\f1cc\"}.fa-kaaba:before{content:\"\\f66b\"}.fa-kaggle:before{content:\"\\f5fa\"}.fa-key:before{content:\"\\f084\"}.fa-keybase:before{content:\"\\f4f5\"}.fa-keyboard:before{content:\"\\f11c\"}.fa-keycdn:before{content:\"\\f3ba\"}.fa-khanda:before{content:\"\\f66d\"}.fa-kickstarter:before{content:\"\\f3bb\"}.fa-kickstarter-k:before{content:\"\\f3bc\"}.fa-kiss:before{content:\"\\f596\"}.fa-kiss-beam:before{content:\"\\f597\"}.fa-kiss-wink-heart:before{content:\"\\f598\"}.fa-kiwi-bird:before{content:\"\\f535\"}.fa-korvue:before{content:\"\\f42f\"}.fa-landmark:before{content:\"\\f66f\"}.fa-language:before{content:\"\\f1ab\"}.fa-laptop:before{content:\"\\f109\"}.fa-laptop-code:before{content:\"\\f5fc\"}.fa-laptop-house:before{content:\"\\e066\"}.fa-laptop-medical:before{content:\"\\f812\"}.fa-laravel:before{content:\"\\f3bd\"}.fa-lastfm:before{content:\"\\f202\"}.fa-lastfm-square:before{content:\"\\f203\"}.fa-laugh:before{content:\"\\f599\"}.fa-laugh-beam:before{content:\"\\f59a\"}.fa-laugh-squint:before{content:\"\\f59b\"}.fa-laugh-wink:before{content:\"\\f59c\"}.fa-layer-group:before{content:\"\\f5fd\"}.fa-leaf:before{content:\"\\f06c\"}.fa-leanpub:before{content:\"\\f212\"}.fa-lemon:before{content:\"\\f094\"}.fa-less:before{content:\"\\f41d\"}.fa-less-than:before{content:\"\\f536\"}.fa-less-than-equal:before{content:\"\\f537\"}.fa-level-down-alt:before{content:\"\\f3be\"}.fa-level-up-alt:before{content:\"\\f3bf\"}.fa-life-ring:before{content:\"\\f1cd\"}.fa-lightbulb:before{content:\"\\f0eb\"}.fa-line:before{content:\"\\f3c0\"}.fa-link:before{content:\"\\f0c1\"}.fa-linkedin:before{content:\"\\f08c\"}.fa-linkedin-in:before{content:\"\\f0e1\"}.fa-linode:before{content:\"\\f2b8\"}.fa-linux:before{content:\"\\f17c\"}.fa-lira-sign:before{content:\"\\f195\"}.fa-list:before{content:\"\\f03a\"}.fa-list-alt:before{content:\"\\f022\"}.fa-list-ol:before{content:\"\\f0cb\"}.fa-list-ul:before{content:\"\\f0ca\"}.fa-location-arrow:before{content:\"\\f124\"}.fa-lock:before{content:\"\\f023\"}.fa-lock-open:before{content:\"\\f3c1\"}.fa-long-arrow-alt-down:before{content:\"\\f309\"}.fa-long-arrow-alt-left:before{content:\"\\f30a\"}.fa-long-arrow-alt-right:before{content:\"\\f30b\"}.fa-long-arrow-alt-up:before{content:\"\\f30c\"}.fa-low-vision:before{content:\"\\f2a8\"}.fa-luggage-cart:before{content:\"\\f59d\"}.fa-lungs:before{content:\"\\f604\"}.fa-lungs-virus:before{content:\"\\e067\"}.fa-lyft:before{content:\"\\f3c3\"}.fa-magento:before{content:\"\\f3c4\"}.fa-magic:before{content:\"\\f0d0\"}.fa-magnet:before{content:\"\\f076\"}.fa-mail-bulk:before{content:\"\\f674\"}.fa-mailchimp:before{content:\"\\f59e\"}.fa-male:before{content:\"\\f183\"}.fa-mandalorian:before{content:\"\\f50f\"}.fa-map:before{content:\"\\f279\"}.fa-map-marked:before{content:\"\\f59f\"}.fa-map-marked-alt:before{content:\"\\f5a0\"}.fa-map-marker:before{content:\"\\f041\"}.fa-map-marker-alt:before{content:\"\\f3c5\"}.fa-map-pin:before{content:\"\\f276\"}.fa-map-signs:before{content:\"\\f277\"}.fa-markdown:before{content:\"\\f60f\"}.fa-marker:before{content:\"\\f5a1\"}.fa-mars:before{content:\"\\f222\"}.fa-mars-double:before{content:\"\\f227\"}.fa-mars-stroke:before{content:\"\\f229\"}.fa-mars-stroke-h:before{content:\"\\f22b\"}.fa-mars-stroke-v:before{content:\"\\f22a\"}.fa-mask:before{content:\"\\f6fa\"}.fa-mastodon:before{content:\"\\f4f6\"}.fa-maxcdn:before{content:\"\\f136\"}.fa-mdb:before{content:\"\\f8ca\"}.fa-medal:before{content:\"\\f5a2\"}.fa-medapps:before{content:\"\\f3c6\"}.fa-medium:before{content:\"\\f23a\"}.fa-medium-m:before{content:\"\\f3c7\"}.fa-medkit:before{content:\"\\f0fa\"}.fa-medrt:before{content:\"\\f3c8\"}.fa-meetup:before{content:\"\\f2e0\"}.fa-megaport:before{content:\"\\f5a3\"}.fa-meh:before{content:\"\\f11a\"}.fa-meh-blank:before{content:\"\\f5a4\"}.fa-meh-rolling-eyes:before{content:\"\\f5a5\"}.fa-memory:before{content:\"\\f538\"}.fa-mendeley:before{content:\"\\f7b3\"}.fa-menorah:before{content:\"\\f676\"}.fa-mercury:before{content:\"\\f223\"}.fa-meteor:before{content:\"\\f753\"}.fa-microblog:before{content:\"\\e01a\"}.fa-microchip:before{content:\"\\f2db\"}.fa-microphone:before{content:\"\\f130\"}.fa-microphone-alt:before{content:\"\\f3c9\"}.fa-microphone-alt-slash:before{content:\"\\f539\"}.fa-microphone-slash:before{content:\"\\f131\"}.fa-microscope:before{content:\"\\f610\"}.fa-microsoft:before{content:\"\\f3ca\"}.fa-minus:before{content:\"\\f068\"}.fa-minus-circle:before{content:\"\\f056\"}.fa-minus-square:before{content:\"\\f146\"}.fa-mitten:before{content:\"\\f7b5\"}.fa-mix:before{content:\"\\f3cb\"}.fa-mixcloud:before{content:\"\\f289\"}.fa-mixer:before{content:\"\\e056\"}.fa-mizuni:before{content:\"\\f3cc\"}.fa-mobile:before{content:\"\\f10b\"}.fa-mobile-alt:before{content:\"\\f3cd\"}.fa-modx:before{content:\"\\f285\"}.fa-monero:before{content:\"\\f3d0\"}.fa-money-bill:before{content:\"\\f0d6\"}.fa-money-bill-alt:before{content:\"\\f3d1\"}.fa-money-bill-wave:before{content:\"\\f53a\"}.fa-money-bill-wave-alt:before{content:\"\\f53b\"}.fa-money-check:before{content:\"\\f53c\"}.fa-money-check-alt:before{content:\"\\f53d\"}.fa-monument:before{content:\"\\f5a6\"}.fa-moon:before{content:\"\\f186\"}.fa-mortar-pestle:before{content:\"\\f5a7\"}.fa-mosque:before{content:\"\\f678\"}.fa-motorcycle:before{content:\"\\f21c\"}.fa-mountain:before{content:\"\\f6fc\"}.fa-mouse:before{content:\"\\f8cc\"}.fa-mouse-pointer:before{content:\"\\f245\"}.fa-mug-hot:before{content:\"\\f7b6\"}.fa-music:before{content:\"\\f001\"}.fa-napster:before{content:\"\\f3d2\"}.fa-neos:before{content:\"\\f612\"}.fa-network-wired:before{content:\"\\f6ff\"}.fa-neuter:before{content:\"\\f22c\"}.fa-newspaper:before{content:\"\\f1ea\"}.fa-nimblr:before{content:\"\\f5a8\"}.fa-node:before{content:\"\\f419\"}.fa-node-js:before{content:\"\\f3d3\"}.fa-not-equal:before{content:\"\\f53e\"}.fa-notes-medical:before{content:\"\\f481\"}.fa-npm:before{content:\"\\f3d4\"}.fa-ns8:before{content:\"\\f3d5\"}.fa-nutritionix:before{content:\"\\f3d6\"}.fa-object-group:before{content:\"\\f247\"}.fa-object-ungroup:before{content:\"\\f248\"}.fa-octopus-deploy:before{content:\"\\e082\"}.fa-odnoklassniki:before{content:\"\\f263\"}.fa-odnoklassniki-square:before{content:\"\\f264\"}.fa-oil-can:before{content:\"\\f613\"}.fa-old-republic:before{content:\"\\f510\"}.fa-om:before{content:\"\\f679\"}.fa-opencart:before{content:\"\\f23d\"}.fa-openid:before{content:\"\\f19b\"}.fa-opera:before{content:\"\\f26a\"}.fa-optin-monster:before{content:\"\\f23c\"}.fa-orcid:before{content:\"\\f8d2\"}.fa-osi:before{content:\"\\f41a\"}.fa-otter:before{content:\"\\f700\"}.fa-outdent:before{content:\"\\f03b\"}.fa-page4:before{content:\"\\f3d7\"}.fa-pagelines:before{content:\"\\f18c\"}.fa-pager:before{content:\"\\f815\"}.fa-paint-brush:before{content:\"\\f1fc\"}.fa-paint-roller:before{content:\"\\f5aa\"}.fa-palette:before{content:\"\\f53f\"}.fa-palfed:before{content:\"\\f3d8\"}.fa-pallet:before{content:\"\\f482\"}.fa-paper-plane:before{content:\"\\f1d8\"}.fa-paperclip:before{content:\"\\f0c6\"}.fa-parachute-box:before{content:\"\\f4cd\"}.fa-paragraph:before{content:\"\\f1dd\"}.fa-parking:before{content:\"\\f540\"}.fa-passport:before{content:\"\\f5ab\"}.fa-pastafarianism:before{content:\"\\f67b\"}.fa-paste:before{content:\"\\f0ea\"}.fa-patreon:before{content:\"\\f3d9\"}.fa-pause:before{content:\"\\f04c\"}.fa-pause-circle:before{content:\"\\f28b\"}.fa-paw:before{content:\"\\f1b0\"}.fa-paypal:before{content:\"\\f1ed\"}.fa-peace:before{content:\"\\f67c\"}.fa-pen:before{content:\"\\f304\"}.fa-pen-alt:before{content:\"\\f305\"}.fa-pen-fancy:before{content:\"\\f5ac\"}.fa-pen-nib:before{content:\"\\f5ad\"}.fa-pen-square:before{content:\"\\f14b\"}.fa-pencil-alt:before{content:\"\\f303\"}.fa-pencil-ruler:before{content:\"\\f5ae\"}.fa-penny-arcade:before{content:\"\\f704\"}.fa-people-arrows:before{content:\"\\e068\"}.fa-people-carry:before{content:\"\\f4ce\"}.fa-pepper-hot:before{content:\"\\f816\"}.fa-perbyte:before{content:\"\\e083\"}.fa-percent:before{content:\"\\f295\"}.fa-percentage:before{content:\"\\f541\"}.fa-periscope:before{content:\"\\f3da\"}.fa-person-booth:before{content:\"\\f756\"}.fa-phabricator:before{content:\"\\f3db\"}.fa-phoenix-framework:before{content:\"\\f3dc\"}.fa-phoenix-squadron:before{content:\"\\f511\"}.fa-phone:before{content:\"\\f095\"}.fa-phone-alt:before{content:\"\\f879\"}.fa-phone-slash:before{content:\"\\f3dd\"}.fa-phone-square:before{content:\"\\f098\"}.fa-phone-square-alt:before{content:\"\\f87b\"}.fa-phone-volume:before{content:\"\\f2a0\"}.fa-photo-video:before{content:\"\\f87c\"}.fa-php:before{content:\"\\f457\"}.fa-pied-piper:before{content:\"\\f2ae\"}.fa-pied-piper-alt:before{content:\"\\f1a8\"}.fa-pied-piper-hat:before{content:\"\\f4e5\"}.fa-pied-piper-pp:before{content:\"\\f1a7\"}.fa-pied-piper-square:before{content:\"\\e01e\"}.fa-piggy-bank:before{content:\"\\f4d3\"}.fa-pills:before{content:\"\\f484\"}.fa-pinterest:before{content:\"\\f0d2\"}.fa-pinterest-p:before{content:\"\\f231\"}.fa-pinterest-square:before{content:\"\\f0d3\"}.fa-pizza-slice:before{content:\"\\f818\"}.fa-place-of-worship:before{content:\"\\f67f\"}.fa-plane:before{content:\"\\f072\"}.fa-plane-arrival:before{content:\"\\f5af\"}.fa-plane-departure:before{content:\"\\f5b0\"}.fa-plane-slash:before{content:\"\\e069\"}.fa-play:before{content:\"\\f04b\"}.fa-play-circle:before{content:\"\\f144\"}.fa-playstation:before{content:\"\\f3df\"}.fa-plug:before{content:\"\\f1e6\"}.fa-plus:before{content:\"\\f067\"}.fa-plus-circle:before{content:\"\\f055\"}.fa-plus-square:before{content:\"\\f0fe\"}.fa-podcast:before{content:\"\\f2ce\"}.fa-poll:before{content:\"\\f681\"}.fa-poll-h:before{content:\"\\f682\"}.fa-poo:before{content:\"\\f2fe\"}.fa-poo-storm:before{content:\"\\f75a\"}.fa-poop:before{content:\"\\f619\"}.fa-portrait:before{content:\"\\f3e0\"}.fa-pound-sign:before{content:\"\\f154\"}.fa-power-off:before{content:\"\\f011\"}.fa-pray:before{content:\"\\f683\"}.fa-praying-hands:before{content:\"\\f684\"}.fa-prescription:before{content:\"\\f5b1\"}.fa-prescription-bottle:before{content:\"\\f485\"}.fa-prescription-bottle-alt:before{content:\"\\f486\"}.fa-print:before{content:\"\\f02f\"}.fa-procedures:before{content:\"\\f487\"}.fa-product-hunt:before{content:\"\\f288\"}.fa-project-diagram:before{content:\"\\f542\"}.fa-pump-medical:before{content:\"\\e06a\"}.fa-pump-soap:before{content:\"\\e06b\"}.fa-pushed:before{content:\"\\f3e1\"}.fa-puzzle-piece:before{content:\"\\f12e\"}.fa-python:before{content:\"\\f3e2\"}.fa-qq:before{content:\"\\f1d6\"}.fa-qrcode:before{content:\"\\f029\"}.fa-question:before{content:\"\\f128\"}.fa-question-circle:before{content:\"\\f059\"}.fa-quidditch:before{content:\"\\f458\"}.fa-quinscape:before{content:\"\\f459\"}.fa-quora:before{content:\"\\f2c4\"}.fa-quote-left:before{content:\"\\f10d\"}.fa-quote-right:before{content:\"\\f10e\"}.fa-quran:before{content:\"\\f687\"}.fa-r-project:before{content:\"\\f4f7\"}.fa-radiation:before{content:\"\\f7b9\"}.fa-radiation-alt:before{content:\"\\f7ba\"}.fa-rainbow:before{content:\"\\f75b\"}.fa-random:before{content:\"\\f074\"}.fa-raspberry-pi:before{content:\"\\f7bb\"}.fa-ravelry:before{content:\"\\f2d9\"}.fa-react:before{content:\"\\f41b\"}.fa-reacteurope:before{content:\"\\f75d\"}.fa-readme:before{content:\"\\f4d5\"}.fa-rebel:before{content:\"\\f1d0\"}.fa-receipt:before{content:\"\\f543\"}.fa-record-vinyl:before{content:\"\\f8d9\"}.fa-recycle:before{content:\"\\f1b8\"}.fa-red-river:before{content:\"\\f3e3\"}.fa-reddit:before{content:\"\\f1a1\"}.fa-reddit-alien:before{content:\"\\f281\"}.fa-reddit-square:before{content:\"\\f1a2\"}.fa-redhat:before{content:\"\\f7bc\"}.fa-redo:before{content:\"\\f01e\"}.fa-redo-alt:before{content:\"\\f2f9\"}.fa-registered:before{content:\"\\f25d\"}.fa-remove-format:before{content:\"\\f87d\"}.fa-renren:before{content:\"\\f18b\"}.fa-reply:before{content:\"\\f3e5\"}.fa-reply-all:before{content:\"\\f122\"}.fa-replyd:before{content:\"\\f3e6\"}.fa-republican:before{content:\"\\f75e\"}.fa-researchgate:before{content:\"\\f4f8\"}.fa-resolving:before{content:\"\\f3e7\"}.fa-restroom:before{content:\"\\f7bd\"}.fa-retweet:before{content:\"\\f079\"}.fa-rev:before{content:\"\\f5b2\"}.fa-ribbon:before{content:\"\\f4d6\"}.fa-ring:before{content:\"\\f70b\"}.fa-road:before{content:\"\\f018\"}.fa-robot:before{content:\"\\f544\"}.fa-rocket:before{content:\"\\f135\"}.fa-rocketchat:before{content:\"\\f3e8\"}.fa-rockrms:before{content:\"\\f3e9\"}.fa-route:before{content:\"\\f4d7\"}.fa-rss:before{content:\"\\f09e\"}.fa-rss-square:before{content:\"\\f143\"}.fa-ruble-sign:before{content:\"\\f158\"}.fa-ruler:before{content:\"\\f545\"}.fa-ruler-combined:before{content:\"\\f546\"}.fa-ruler-horizontal:before{content:\"\\f547\"}.fa-ruler-vertical:before{content:\"\\f548\"}.fa-running:before{content:\"\\f70c\"}.fa-rupee-sign:before{content:\"\\f156\"}.fa-rust:before{content:\"\\e07a\"}.fa-sad-cry:before{content:\"\\f5b3\"}.fa-sad-tear:before{content:\"\\f5b4\"}.fa-safari:before{content:\"\\f267\"}.fa-salesforce:before{content:\"\\f83b\"}.fa-sass:before{content:\"\\f41e\"}.fa-satellite:before{content:\"\\f7bf\"}.fa-satellite-dish:before{content:\"\\f7c0\"}.fa-save:before{content:\"\\f0c7\"}.fa-schlix:before{content:\"\\f3ea\"}.fa-school:before{content:\"\\f549\"}.fa-screwdriver:before{content:\"\\f54a\"}.fa-scribd:before{content:\"\\f28a\"}.fa-scroll:before{content:\"\\f70e\"}.fa-sd-card:before{content:\"\\f7c2\"}.fa-search:before{content:\"\\f002\"}.fa-search-dollar:before{content:\"\\f688\"}.fa-search-location:before{content:\"\\f689\"}.fa-search-minus:before{content:\"\\f010\"}.fa-search-plus:before{content:\"\\f00e\"}.fa-searchengin:before{content:\"\\f3eb\"}.fa-seedling:before{content:\"\\f4d8\"}.fa-sellcast:before{content:\"\\f2da\"}.fa-sellsy:before{content:\"\\f213\"}.fa-server:before{content:\"\\f233\"}.fa-servicestack:before{content:\"\\f3ec\"}.fa-shapes:before{content:\"\\f61f\"}.fa-share:before{content:\"\\f064\"}.fa-share-alt:before{content:\"\\f1e0\"}.fa-share-alt-square:before{content:\"\\f1e1\"}.fa-share-square:before{content:\"\\f14d\"}.fa-shekel-sign:before{content:\"\\f20b\"}.fa-shield-alt:before{content:\"\\f3ed\"}.fa-shield-virus:before{content:\"\\e06c\"}.fa-ship:before{content:\"\\f21a\"}.fa-shipping-fast:before{content:\"\\f48b\"}.fa-shirtsinbulk:before{content:\"\\f214\"}.fa-shoe-prints:before{content:\"\\f54b\"}.fa-shopify:before{content:\"\\e057\"}.fa-shopping-bag:before{content:\"\\f290\"}.fa-shopping-basket:before{content:\"\\f291\"}.fa-shopping-cart:before{content:\"\\f07a\"}.fa-shopware:before{content:\"\\f5b5\"}.fa-shower:before{content:\"\\f2cc\"}.fa-shuttle-van:before{content:\"\\f5b6\"}.fa-sign:before{content:\"\\f4d9\"}.fa-sign-in-alt:before{content:\"\\f2f6\"}.fa-sign-language:before{content:\"\\f2a7\"}.fa-sign-out-alt:before{content:\"\\f2f5\"}.fa-signal:before{content:\"\\f012\"}.fa-signature:before{content:\"\\f5b7\"}.fa-sim-card:before{content:\"\\f7c4\"}.fa-simplybuilt:before{content:\"\\f215\"}.fa-sink:before{content:\"\\e06d\"}.fa-sistrix:before{content:\"\\f3ee\"}.fa-sitemap:before{content:\"\\f0e8\"}.fa-sith:before{content:\"\\f512\"}.fa-skating:before{content:\"\\f7c5\"}.fa-sketch:before{content:\"\\f7c6\"}.fa-skiing:before{content:\"\\f7c9\"}.fa-skiing-nordic:before{content:\"\\f7ca\"}.fa-skull:before{content:\"\\f54c\"}.fa-skull-crossbones:before{content:\"\\f714\"}.fa-skyatlas:before{content:\"\\f216\"}.fa-skype:before{content:\"\\f17e\"}.fa-slack:before{content:\"\\f198\"}.fa-slack-hash:before{content:\"\\f3ef\"}.fa-slash:before{content:\"\\f715\"}.fa-sleigh:before{content:\"\\f7cc\"}.fa-sliders-h:before{content:\"\\f1de\"}.fa-slideshare:before{content:\"\\f1e7\"}.fa-smile:before{content:\"\\f118\"}.fa-smile-beam:before{content:\"\\f5b8\"}.fa-smile-wink:before{content:\"\\f4da\"}.fa-smog:before{content:\"\\f75f\"}.fa-smoking:before{content:\"\\f48d\"}.fa-smoking-ban:before{content:\"\\f54d\"}.fa-sms:before{content:\"\\f7cd\"}.fa-snapchat:before{content:\"\\f2ab\"}.fa-snapchat-ghost:before{content:\"\\f2ac\"}.fa-snapchat-square:before{content:\"\\f2ad\"}.fa-snowboarding:before{content:\"\\f7ce\"}.fa-snowflake:before{content:\"\\f2dc\"}.fa-snowman:before{content:\"\\f7d0\"}.fa-snowplow:before{content:\"\\f7d2\"}.fa-soap:before{content:\"\\e06e\"}.fa-socks:before{content:\"\\f696\"}.fa-solar-panel:before{content:\"\\f5ba\"}.fa-sort:before{content:\"\\f0dc\"}.fa-sort-alpha-down:before{content:\"\\f15d\"}.fa-sort-alpha-down-alt:before{content:\"\\f881\"}.fa-sort-alpha-up:before{content:\"\\f15e\"}.fa-sort-alpha-up-alt:before{content:\"\\f882\"}.fa-sort-amount-down:before{content:\"\\f160\"}.fa-sort-amount-down-alt:before{content:\"\\f884\"}.fa-sort-amount-up:before{content:\"\\f161\"}.fa-sort-amount-up-alt:before{content:\"\\f885\"}.fa-sort-down:before{content:\"\\f0dd\"}.fa-sort-numeric-down:before{content:\"\\f162\"}.fa-sort-numeric-down-alt:before{content:\"\\f886\"}.fa-sort-numeric-up:before{content:\"\\f163\"}.fa-sort-numeric-up-alt:before{content:\"\\f887\"}.fa-sort-up:before{content:\"\\f0de\"}.fa-soundcloud:before{content:\"\\f1be\"}.fa-sourcetree:before{content:\"\\f7d3\"}.fa-spa:before{content:\"\\f5bb\"}.fa-space-shuttle:before{content:\"\\f197\"}.fa-speakap:before{content:\"\\f3f3\"}.fa-speaker-deck:before{content:\"\\f83c\"}.fa-spell-check:before{content:\"\\f891\"}.fa-spider:before{content:\"\\f717\"}.fa-spinner:before{content:\"\\f110\"}.fa-splotch:before{content:\"\\f5bc\"}.fa-spotify:before{content:\"\\f1bc\"}.fa-spray-can:before{content:\"\\f5bd\"}.fa-square:before{content:\"\\f0c8\"}.fa-square-full:before{content:\"\\f45c\"}.fa-square-root-alt:before{content:\"\\f698\"}.fa-squarespace:before{content:\"\\f5be\"}.fa-stack-exchange:before{content:\"\\f18d\"}.fa-stack-overflow:before{content:\"\\f16c\"}.fa-stackpath:before{content:\"\\f842\"}.fa-stamp:before{content:\"\\f5bf\"}.fa-star:before{content:\"\\f005\"}.fa-star-and-crescent:before{content:\"\\f699\"}.fa-star-half:before{content:\"\\f089\"}.fa-star-half-alt:before{content:\"\\f5c0\"}.fa-star-of-david:before{content:\"\\f69a\"}.fa-star-of-life:before{content:\"\\f621\"}.fa-staylinked:before{content:\"\\f3f5\"}.fa-steam:before{content:\"\\f1b6\"}.fa-steam-square:before{content:\"\\f1b7\"}.fa-steam-symbol:before{content:\"\\f3f6\"}.fa-step-backward:before{content:\"\\f048\"}.fa-step-forward:before{content:\"\\f051\"}.fa-stethoscope:before{content:\"\\f0f1\"}.fa-sticker-mule:before{content:\"\\f3f7\"}.fa-sticky-note:before{content:\"\\f249\"}.fa-stop:before{content:\"\\f04d\"}.fa-stop-circle:before{content:\"\\f28d\"}.fa-stopwatch:before{content:\"\\f2f2\"}.fa-stopwatch-20:before{content:\"\\e06f\"}.fa-store:before{content:\"\\f54e\"}.fa-store-alt:before{content:\"\\f54f\"}.fa-store-alt-slash:before{content:\"\\e070\"}.fa-store-slash:before{content:\"\\e071\"}.fa-strava:before{content:\"\\f428\"}.fa-stream:before{content:\"\\f550\"}.fa-street-view:before{content:\"\\f21d\"}.fa-strikethrough:before{content:\"\\f0cc\"}.fa-stripe:before{content:\"\\f429\"}.fa-stripe-s:before{content:\"\\f42a\"}.fa-stroopwafel:before{content:\"\\f551\"}.fa-studiovinari:before{content:\"\\f3f8\"}.fa-stumbleupon:before{content:\"\\f1a4\"}.fa-stumbleupon-circle:before{content:\"\\f1a3\"}.fa-subscript:before{content:\"\\f12c\"}.fa-subway:before{content:\"\\f239\"}.fa-suitcase:before{content:\"\\f0f2\"}.fa-suitcase-rolling:before{content:\"\\f5c1\"}.fa-sun:before{content:\"\\f185\"}.fa-superpowers:before{content:\"\\f2dd\"}.fa-superscript:before{content:\"\\f12b\"}.fa-supple:before{content:\"\\f3f9\"}.fa-surprise:before{content:\"\\f5c2\"}.fa-suse:before{content:\"\\f7d6\"}.fa-swatchbook:before{content:\"\\f5c3\"}.fa-swift:before{content:\"\\f8e1\"}.fa-swimmer:before{content:\"\\f5c4\"}.fa-swimming-pool:before{content:\"\\f5c5\"}.fa-symfony:before{content:\"\\f83d\"}.fa-synagogue:before{content:\"\\f69b\"}.fa-sync:before{content:\"\\f021\"}.fa-sync-alt:before{content:\"\\f2f1\"}.fa-syringe:before{content:\"\\f48e\"}.fa-table:before{content:\"\\f0ce\"}.fa-table-tennis:before{content:\"\\f45d\"}.fa-tablet:before{content:\"\\f10a\"}.fa-tablet-alt:before{content:\"\\f3fa\"}.fa-tablets:before{content:\"\\f490\"}.fa-tachometer-alt:before{content:\"\\f3fd\"}.fa-tag:before{content:\"\\f02b\"}.fa-tags:before{content:\"\\f02c\"}.fa-tape:before{content:\"\\f4db\"}.fa-tasks:before{content:\"\\f0ae\"}.fa-taxi:before{content:\"\\f1ba\"}.fa-teamspeak:before{content:\"\\f4f9\"}.fa-teeth:before{content:\"\\f62e\"}.fa-teeth-open:before{content:\"\\f62f\"}.fa-telegram:before{content:\"\\f2c6\"}.fa-telegram-plane:before{content:\"\\f3fe\"}.fa-temperature-high:before{content:\"\\f769\"}.fa-temperature-low:before{content:\"\\f76b\"}.fa-tencent-weibo:before{content:\"\\f1d5\"}.fa-tenge:before{content:\"\\f7d7\"}.fa-terminal:before{content:\"\\f120\"}.fa-text-height:before{content:\"\\f034\"}.fa-text-width:before{content:\"\\f035\"}.fa-th:before{content:\"\\f00a\"}.fa-th-large:before{content:\"\\f009\"}.fa-th-list:before{content:\"\\f00b\"}.fa-the-red-yeti:before{content:\"\\f69d\"}.fa-theater-masks:before{content:\"\\f630\"}.fa-themeco:before{content:\"\\f5c6\"}.fa-themeisle:before{content:\"\\f2b2\"}.fa-thermometer:before{content:\"\\f491\"}.fa-thermometer-empty:before{content:\"\\f2cb\"}.fa-thermometer-full:before{content:\"\\f2c7\"}.fa-thermometer-half:before{content:\"\\f2c9\"}.fa-thermometer-quarter:before{content:\"\\f2ca\"}.fa-thermometer-three-quarters:before{content:\"\\f2c8\"}.fa-think-peaks:before{content:\"\\f731\"}.fa-thumbs-down:before{content:\"\\f165\"}.fa-thumbs-up:before{content:\"\\f164\"}.fa-thumbtack:before{content:\"\\f08d\"}.fa-ticket-alt:before{content:\"\\f3ff\"}.fa-tiktok:before{content:\"\\e07b\"}.fa-times:before{content:\"\\f00d\"}.fa-times-circle:before{content:\"\\f057\"}.fa-tint:before{content:\"\\f043\"}.fa-tint-slash:before{content:\"\\f5c7\"}.fa-tired:before{content:\"\\f5c8\"}.fa-toggle-off:before{content:\"\\f204\"}.fa-toggle-on:before{content:\"\\f205\"}.fa-toilet:before{content:\"\\f7d8\"}.fa-toilet-paper:before{content:\"\\f71e\"}.fa-toilet-paper-slash:before{content:\"\\e072\"}.fa-toolbox:before{content:\"\\f552\"}.fa-tools:before{content:\"\\f7d9\"}.fa-tooth:before{content:\"\\f5c9\"}.fa-torah:before{content:\"\\f6a0\"}.fa-torii-gate:before{content:\"\\f6a1\"}.fa-tractor:before{content:\"\\f722\"}.fa-trade-federation:before{content:\"\\f513\"}.fa-trademark:before{content:\"\\f25c\"}.fa-traffic-light:before{content:\"\\f637\"}.fa-trailer:before{content:\"\\e041\"}.fa-train:before{content:\"\\f238\"}.fa-tram:before{content:\"\\f7da\"}.fa-transgender:before{content:\"\\f224\"}.fa-transgender-alt:before{content:\"\\f225\"}.fa-trash:before{content:\"\\f1f8\"}.fa-trash-alt:before{content:\"\\f2ed\"}.fa-trash-restore:before{content:\"\\f829\"}.fa-trash-restore-alt:before{content:\"\\f82a\"}.fa-tree:before{content:\"\\f1bb\"}.fa-trello:before{content:\"\\f181\"}.fa-tripadvisor:before{content:\"\\f262\"}.fa-trophy:before{content:\"\\f091\"}.fa-truck:before{content:\"\\f0d1\"}.fa-truck-loading:before{content:\"\\f4de\"}.fa-truck-monster:before{content:\"\\f63b\"}.fa-truck-moving:before{content:\"\\f4df\"}.fa-truck-pickup:before{content:\"\\f63c\"}.fa-tshirt:before{content:\"\\f553\"}.fa-tty:before{content:\"\\f1e4\"}.fa-tumblr:before{content:\"\\f173\"}.fa-tumblr-square:before{content:\"\\f174\"}.fa-tv:before{content:\"\\f26c\"}.fa-twitch:before{content:\"\\f1e8\"}.fa-twitter:before{content:\"\\f099\"}.fa-twitter-square:before{content:\"\\f081\"}.fa-typo3:before{content:\"\\f42b\"}.fa-uber:before{content:\"\\f402\"}.fa-ubuntu:before{content:\"\\f7df\"}.fa-uikit:before{content:\"\\f403\"}.fa-umbraco:before{content:\"\\f8e8\"}.fa-umbrella:before{content:\"\\f0e9\"}.fa-umbrella-beach:before{content:\"\\f5ca\"}.fa-uncharted:before{content:\"\\e084\"}.fa-underline:before{content:\"\\f0cd\"}.fa-undo:before{content:\"\\f0e2\"}.fa-undo-alt:before{content:\"\\f2ea\"}.fa-uniregistry:before{content:\"\\f404\"}.fa-unity:before{content:\"\\e049\"}.fa-universal-access:before{content:\"\\f29a\"}.fa-university:before{content:\"\\f19c\"}.fa-unlink:before{content:\"\\f127\"}.fa-unlock:before{content:\"\\f09c\"}.fa-unlock-alt:before{content:\"\\f13e\"}.fa-unsplash:before{content:\"\\e07c\"}.fa-untappd:before{content:\"\\f405\"}.fa-upload:before{content:\"\\f093\"}.fa-ups:before{content:\"\\f7e0\"}.fa-usb:before{content:\"\\f287\"}.fa-user:before{content:\"\\f007\"}.fa-user-alt:before{content:\"\\f406\"}.fa-user-alt-slash:before{content:\"\\f4fa\"}.fa-user-astronaut:before{content:\"\\f4fb\"}.fa-user-check:before{content:\"\\f4fc\"}.fa-user-circle:before{content:\"\\f2bd\"}.fa-user-clock:before{content:\"\\f4fd\"}.fa-user-cog:before{content:\"\\f4fe\"}.fa-user-edit:before{content:\"\\f4ff\"}.fa-user-friends:before{content:\"\\f500\"}.fa-user-graduate:before{content:\"\\f501\"}.fa-user-injured:before{content:\"\\f728\"}.fa-user-lock:before{content:\"\\f502\"}.fa-user-md:before{content:\"\\f0f0\"}.fa-user-minus:before{content:\"\\f503\"}.fa-user-ninja:before{content:\"\\f504\"}.fa-user-nurse:before{content:\"\\f82f\"}.fa-user-plus:before{content:\"\\f234\"}.fa-user-secret:before{content:\"\\f21b\"}.fa-user-shield:before{content:\"\\f505\"}.fa-user-slash:before{content:\"\\f506\"}.fa-user-tag:before{content:\"\\f507\"}.fa-user-tie:before{content:\"\\f508\"}.fa-user-times:before{content:\"\\f235\"}.fa-users:before{content:\"\\f0c0\"}.fa-users-cog:before{content:\"\\f509\"}.fa-users-slash:before{content:\"\\e073\"}.fa-usps:before{content:\"\\f7e1\"}.fa-ussunnah:before{content:\"\\f407\"}.fa-utensil-spoon:before{content:\"\\f2e5\"}.fa-utensils:before{content:\"\\f2e7\"}.fa-vaadin:before{content:\"\\f408\"}.fa-vector-square:before{content:\"\\f5cb\"}.fa-venus:before{content:\"\\f221\"}.fa-venus-double:before{content:\"\\f226\"}.fa-venus-mars:before{content:\"\\f228\"}.fa-vest:before{content:\"\\e085\"}.fa-vest-patches:before{content:\"\\e086\"}.fa-viacoin:before{content:\"\\f237\"}.fa-viadeo:before{content:\"\\f2a9\"}.fa-viadeo-square:before{content:\"\\f2aa\"}.fa-vial:before{content:\"\\f492\"}.fa-vials:before{content:\"\\f493\"}.fa-viber:before{content:\"\\f409\"}.fa-video:before{content:\"\\f03d\"}.fa-video-slash:before{content:\"\\f4e2\"}.fa-vihara:before{content:\"\\f6a7\"}.fa-vimeo:before{content:\"\\f40a\"}.fa-vimeo-square:before{content:\"\\f194\"}.fa-vimeo-v:before{content:\"\\f27d\"}.fa-vine:before{content:\"\\f1ca\"}.fa-virus:before{content:\"\\e074\"}.fa-virus-slash:before{content:\"\\e075\"}.fa-viruses:before{content:\"\\e076\"}.fa-vk:before{content:\"\\f189\"}.fa-vnv:before{content:\"\\f40b\"}.fa-voicemail:before{content:\"\\f897\"}.fa-volleyball-ball:before{content:\"\\f45f\"}.fa-volume-down:before{content:\"\\f027\"}.fa-volume-mute:before{content:\"\\f6a9\"}.fa-volume-off:before{content:\"\\f026\"}.fa-volume-up:before{content:\"\\f028\"}.fa-vote-yea:before{content:\"\\f772\"}.fa-vr-cardboard:before{content:\"\\f729\"}.fa-vuejs:before{content:\"\\f41f\"}.fa-walking:before{content:\"\\f554\"}.fa-wallet:before{content:\"\\f555\"}.fa-warehouse:before{content:\"\\f494\"}.fa-watchman-monitoring:before{content:\"\\e087\"}.fa-water:before{content:\"\\f773\"}.fa-wave-square:before{content:\"\\f83e\"}.fa-waze:before{content:\"\\f83f\"}.fa-weebly:before{content:\"\\f5cc\"}.fa-weibo:before{content:\"\\f18a\"}.fa-weight:before{content:\"\\f496\"}.fa-weight-hanging:before{content:\"\\f5cd\"}.fa-weixin:before{content:\"\\f1d7\"}.fa-whatsapp:before{content:\"\\f232\"}.fa-whatsapp-square:before{content:\"\\f40c\"}.fa-wheelchair:before{content:\"\\f193\"}.fa-whmcs:before{content:\"\\f40d\"}.fa-wifi:before{content:\"\\f1eb\"}.fa-wikipedia-w:before{content:\"\\f266\"}.fa-wind:before{content:\"\\f72e\"}.fa-window-close:before{content:\"\\f410\"}.fa-window-maximize:before{content:\"\\f2d0\"}.fa-window-minimize:before{content:\"\\f2d1\"}.fa-window-restore:before{content:\"\\f2d2\"}.fa-windows:before{content:\"\\f17a\"}.fa-wine-bottle:before{content:\"\\f72f\"}.fa-wine-glass:before{content:\"\\f4e3\"}.fa-wine-glass-alt:before{content:\"\\f5ce\"}.fa-wix:before{content:\"\\f5cf\"}.fa-wizards-of-the-coast:before{content:\"\\f730\"}.fa-wodu:before{content:\"\\e088\"}.fa-wolf-pack-battalion:before{content:\"\\f514\"}.fa-won-sign:before{content:\"\\f159\"}.fa-wordpress:before{content:\"\\f19a\"}.fa-wordpress-simple:before{content:\"\\f411\"}.fa-wpbeginner:before{content:\"\\f297\"}.fa-wpexplorer:before{content:\"\\f2de\"}.fa-wpforms:before{content:\"\\f298\"}.fa-wpressr:before{content:\"\\f3e4\"}.fa-wrench:before{content:\"\\f0ad\"}.fa-x-ray:before{content:\"\\f497\"}.fa-xbox:before{content:\"\\f412\"}.fa-xing:before{content:\"\\f168\"}.fa-xing-square:before{content:\"\\f169\"}.fa-y-combinator:before{content:\"\\f23b\"}.fa-yahoo:before{content:\"\\f19e\"}.fa-yammer:before{content:\"\\f840\"}.fa-yandex:before{content:\"\\f413\"}.fa-yandex-international:before{content:\"\\f414\"}.fa-yarn:before{content:\"\\f7e3\"}.fa-yelp:before{content:\"\\f1e9\"}.fa-yen-sign:before{content:\"\\f157\"}.fa-yin-yang:before{content:\"\\f6ad\"}.fa-yoast:before{content:\"\\f2b1\"}.fa-youtube:before{content:\"\\f167\"}.fa-youtube-square:before{content:\"\\f431\"}.fa-zhihu:before{content:\"\\f63f\"}','yes'),(6408,'_transient_fusion_subsets_preload_tags','<link rel=\"preload\" href=\"//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.woff2\" as=\"font\" type=\"font/woff2\" crossorigin><link rel=\"preload\" href=\"//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.woff2\" as=\"font\" type=\"font/woff2\" crossorigin><link rel=\"preload\" href=\"//unternehmen.wir-noi.org/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff2\" as=\"font\" type=\"font/woff2\" crossorigin>','yes'),(6409,'_transient_fusion_custom_icons_preload_tags','','yes'),(6424,'_transient_fusion_dynamic_js_readable','1','yes'),(6440,'_transient_timeout_avada_googlefonts_contents_en','1645820112','no'),(6441,'_transient_avada_googlefonts_contents_en','failed','no'),(6463,'_transient_timeout_fusion_dynamic_css_31289f93b968b49e71ff736b778e9824','1645130262','no'),(7231,'action_scheduler_migration_status','complete','yes'),(7497,'f12-cf7-doubleoptinLicenseData','Tzo4OiJzdGRDbGFzcyI6MTM6e3M6MjoiaWQiO3M6MzoiMTQ5IjtzOjEwOiJsaWNlbnNlS2V5IjtzOjIzOiJCUVozRi1NRE1OVi05QUtCOC1INEhHTCI7czoxMDoibmV0d29ya1VybCI7czowOiIiO3M6NzoidmVyc2lvbiI7czo1OiIxLjYuNyI7czozOiJ1cmwiO3M6MzE6Imh0dHBzOi8vdW50ZXJuZWhtZW4ud2lyLW5vaS5vcmciO3M6MTA6InZhbGlkVW50aWwiO3M6MTA6IjE4LjAyLjIwMjMiO3M6NToiZW1haWwiO3M6MTc6ImZha3R1cm9AaW5mZW9zLmV1IjtzOjQ6InVzZWQiO3M6MToiMCI7czoxMjoicmVnaXN0ZXJEYXRlIjtzOjEwOiIxOC4wMi4yMDIyIjtzOjEwOiJjcmVhdGVEYXRlIjtzOjEwOiIxOC4wMi4yMDIyIjtzOjExOiJsaWNlbnNlVHlwZSI7czoxNjoiZjEyLWRvaS1wZXJzb25hbCI7czoxMjoid29yZHByZXNzVXJsIjtzOjA6IiI7czoxNToibGljZW5zZV90eXBlX2lkIjtzOjE6IjEiO30=','no'),(7498,'f12-cf7-doubleoptinLicenseKey','BQZ3F-MDMNV-9AKB8-H4HGL','no'),(8674,'_site_transient_timeout_browser_1be373e04815a1131d8439247b3d2400','1645867210','no'),(8675,'_site_transient_browser_1be373e04815a1131d8439247b3d2400','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"97.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(10907,'category_children','a:0:{}','yes'),(13667,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/de_DE/wordpress-5.9.1.zip\";s:6:\"locale\";s:5:\"de_DE\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/de_DE/wordpress-5.9.1.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.1\";s:7:\"version\";s:5:\"5.9.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1645743507;s:15:\"version_checked\";s:5:\"5.9.1\";s:12:\"translations\";a:0:{}}','no'),(13668,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1645743509;s:7:\"checked\";a:4:{s:5:\"Avada\";s:5:\"7.6.1\";s:12:\"twentytwenty\";s:3:\"1.9\";s:15:\"twentytwentyone\";s:3:\"1.5\";s:15:\"twentytwentytwo\";s:3:\"1.0\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:4:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.5.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.0.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:5:\"Avada\";a:6:{s:5:\"theme\";s:5:\"Avada\";s:11:\"new_version\";s:5:\"7.6.1\";s:3:\"url\";s:58:\"https://theme-fusion.com/avada-documentation/changelog.txt\";s:7:\"package\";s:108:\"https://updates.theme-fusion.com/?avada_action=get_theme&ver=7.6.1&code=5028984d-406d-4ea0-b291-45296380a2a3\";s:8:\"required\";s:3:\"4.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(13670,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:18:\"software@infeos.de\";s:7:\"version\";s:5:\"5.9.1\";s:9:\"timestamp\";i:1645569107;}','no'),(16329,'_site_transient_timeout_fusion_l10n_api_avada','1645791031','no'),(16330,'_site_transient_fusion_l10n_api_avada','a:1:{s:12:\"translations\";a:121:{i:0;a:8:{s:8:\"language\";s:2:\"af\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-af.zip\";}i:1;a:8:{s:8:\"language\";s:2:\"ar\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ar.zip\";}i:2;a:8:{s:8:\"language\";s:3:\"ary\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ary.zip\";}i:3;a:8:{s:8:\"language\";s:2:\"as\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-as.zip\";}i:4;a:8:{s:8:\"language\";s:2:\"az\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-az.zip\";}i:5;a:8:{s:8:\"language\";s:3:\"azb\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-azb.zip\";}i:6;a:8:{s:8:\"language\";s:3:\"bel\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-bel.zip\";}i:7;a:8:{s:8:\"language\";s:5:\"bg_BG\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-bg_BG.zip\";}i:8;a:8:{s:8:\"language\";s:5:\"bn_BD\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-bn_BD.zip\";}i:9;a:8:{s:8:\"language\";s:2:\"bo\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-bo.zip\";}i:10;a:8:{s:8:\"language\";s:5:\"bs_BA\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-bs_BA.zip\";}i:11;a:8:{s:8:\"language\";s:2:\"ca\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ca.zip\";}i:12;a:8:{s:8:\"language\";s:3:\"ceb\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ceb.zip\";}i:13;a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-cs_CZ.zip\";}i:14;a:8:{s:8:\"language\";s:2:\"cy\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-cy.zip\";}i:15;a:8:{s:8:\"language\";s:5:\"da_DK\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Forts&#230;t\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-da_DK.zip\";}i:16;a:8:{s:8:\"language\";s:5:\"de_AT\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-de_AT.zip\";}i:17;a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-de_CH_informal.zip\";}i:18;a:8:{s:8:\"language\";s:5:\"de_CH\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-de_CH.zip\";}i:19;a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:100:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-de_DE_formal.zip\";}i:20;a:8:{s:8:\"language\";s:5:\"de_DE\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-de_DE.zip\";}i:21;a:8:{s:8:\"language\";s:3:\"dzo\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-dzo.zip\";}i:22;a:8:{s:8:\"language\";s:2:\"el\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-el.zip\";}i:23;a:8:{s:8:\"language\";s:5:\"en_GB\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-en_GB.zip\";}i:24;a:8:{s:8:\"language\";s:5:\"en_ZA\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-en_ZA.zip\";}i:25;a:8:{s:8:\"language\";s:5:\"en_NZ\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-en_NZ.zip\";}i:26;a:8:{s:8:\"language\";s:5:\"en_CA\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-en_CA.zip\";}i:27;a:8:{s:8:\"language\";s:5:\"en_AU\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-en_AU.zip\";}i:28;a:8:{s:8:\"language\";s:2:\"eo\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-eo.zip\";}i:29;a:8:{s:8:\"language\";s:5:\"es_AR\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-es_AR.zip\";}i:30;a:8:{s:8:\"language\";s:5:\"es_CO\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-es_CO.zip\";}i:31;a:8:{s:8:\"language\";s:5:\"es_VE\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-es_VE.zip\";}i:32;a:8:{s:8:\"language\";s:5:\"es_UY\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-es_UY.zip\";}i:33;a:8:{s:8:\"language\";s:5:\"es_CR\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-es_CR.zip\";}i:34;a:8:{s:8:\"language\";s:5:\"es_CL\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-es_CL.zip\";}i:35;a:8:{s:8:\"language\";s:5:\"es_GT\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-es_GT.zip\";}i:36;a:8:{s:8:\"language\";s:5:\"es_PE\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-es_PE.zip\";}i:37;a:8:{s:8:\"language\";s:5:\"es_ES\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-es_ES.zip\";}i:38;a:8:{s:8:\"language\";s:5:\"es_MX\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-es_MX.zip\";}i:39;a:8:{s:8:\"language\";s:2:\"et\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-et.zip\";}i:40;a:8:{s:8:\"language\";s:2:\"eu\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-eu.zip\";}i:41;a:8:{s:8:\"language\";s:5:\"fa_IR\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-fa_IR.zip\";}i:42;a:8:{s:8:\"language\";s:2:\"fi\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-fi.zip\";}i:43;a:8:{s:8:\"language\";s:5:\"fr_FR\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-fr_FR.zip\";}i:44;a:8:{s:8:\"language\";s:5:\"fr_CA\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-fr_CA.zip\";}i:45;a:8:{s:8:\"language\";s:5:\"fr_BE\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-fr_BE.zip\";}i:46;a:8:{s:8:\"language\";s:3:\"fur\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-fur.zip\";}i:47;a:8:{s:8:\"language\";s:2:\"gd\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-gd.zip\";}i:48;a:8:{s:8:\"language\";s:5:\"gl_ES\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-gl_ES.zip\";}i:49;a:8:{s:8:\"language\";s:2:\"gu\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-gu.zip\";}i:50;a:8:{s:8:\"language\";s:3:\"haz\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-haz.zip\";}i:51;a:8:{s:8:\"language\";s:5:\"he_IL\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-he_IL.zip\";}i:52;a:8:{s:8:\"language\";s:5:\"hi_IN\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-hi_IN.zip\";}i:53;a:8:{s:8:\"language\";s:2:\"hr\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-hr.zip\";}i:54;a:8:{s:8:\"language\";s:3:\"hsb\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-hsb.zip\";}i:55;a:8:{s:8:\"language\";s:5:\"hu_HU\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-hu_HU.zip\";}i:56;a:8:{s:8:\"language\";s:2:\"hy\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-hy.zip\";}i:57;a:8:{s:8:\"language\";s:5:\"id_ID\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-id_ID.zip\";}i:58;a:8:{s:8:\"language\";s:5:\"is_IS\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-is_IS.zip\";}i:59;a:8:{s:8:\"language\";s:5:\"it_IT\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-it_IT.zip\";}i:60;a:8:{s:8:\"language\";s:2:\"ja\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ja.zip\";}i:61;a:8:{s:8:\"language\";s:5:\"jv_ID\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nutugne\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-jv_ID.zip\";}i:62;a:8:{s:8:\"language\";s:5:\"ka_GE\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ka_GE.zip\";}i:63;a:8:{s:8:\"language\";s:3:\"kab\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-kab.zip\";}i:64;a:8:{s:8:\"language\";s:2:\"kk\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-kk.zip\";}i:65;a:8:{s:8:\"language\";s:2:\"km\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-km.zip\";}i:66;a:8:{s:8:\"language\";s:2:\"kn\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರೆಸಿ\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-kn.zip\";}i:67;a:8:{s:8:\"language\";s:5:\"ko_KR\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ko_KR.zip\";}i:68;a:8:{s:8:\"language\";s:3:\"ckb\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ckb.zip\";}i:69;a:8:{s:8:\"language\";s:2:\"lo\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ຕໍ່\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-lo.zip\";}i:70;a:8:{s:8:\"language\";s:5:\"lt_LT\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-lt_LT.zip\";}i:71;a:8:{s:8:\"language\";s:2:\"lv\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-lv.zip\";}i:72;a:8:{s:8:\"language\";s:5:\"mk_MK\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-mk_MK.zip\";}i:73;a:8:{s:8:\"language\";s:5:\"ml_IN\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ml_IN.zip\";}i:74;a:8:{s:8:\"language\";s:2:\"mn\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-mn.zip\";}i:75;a:8:{s:8:\"language\";s:2:\"mr\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-mr.zip\";}i:76;a:8:{s:8:\"language\";s:5:\"ms_MY\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ms_MY.zip\";}i:77;a:8:{s:8:\"language\";s:5:\"my_MM\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-my_MM.zip\";}i:78;a:8:{s:8:\"language\";s:5:\"nb_NO\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-nb_NO.zip\";}i:79;a:8:{s:8:\"language\";s:5:\"ne_NP\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"जारीराख्नु \";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ne_NP.zip\";}i:80;a:8:{s:8:\"language\";s:5:\"nl_BE\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-nl_BE.zip\";}i:81;a:8:{s:8:\"language\";s:5:\"nl_NL\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-nl_NL.zip\";}i:82;a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:100:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-nl_NL_formal.zip\";}i:83;a:8:{s:8:\"language\";s:5:\"nn_NO\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-nn_NO.zip\";}i:84;a:8:{s:8:\"language\";s:3:\"oci\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-oci.zip\";}i:85;a:8:{s:8:\"language\";s:5:\"pa_IN\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-pa_IN.zip\";}i:86;a:8:{s:8:\"language\";s:5:\"pl_PL\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-pl_PL.zip\";}i:87;a:8:{s:8:\"language\";s:2:\"ps\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ps.zip\";}i:88;a:8:{s:8:\"language\";s:5:\"pt_PT\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-pt_PT.zip\";}i:89;a:8:{s:8:\"language\";s:5:\"pt_AO\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-pt_AO.zip\";}i:90;a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:98:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-pt_PT_ao90.zip\";}i:91;a:8:{s:8:\"language\";s:5:\"pt_BR\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-pt_BR.zip\";}i:92;a:8:{s:8:\"language\";s:3:\"rhg\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-rhg.zip\";}i:93;a:8:{s:8:\"language\";s:5:\"ro_RO\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ro_RO.zip\";}i:94;a:8:{s:8:\"language\";s:5:\"ru_RU\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ru_RU.zip\";}i:95;a:8:{s:8:\"language\";s:3:\"sah\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-sah.zip\";}i:96;a:8:{s:8:\"language\";s:3:\"snd\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:2:\"sd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-snd.zip\";}i:97;a:8:{s:8:\"language\";s:5:\"si_LK\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-si_LK.zip\";}i:98;a:8:{s:8:\"language\";s:5:\"sk_SK\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-sk_SK.zip\";}i:99;a:8:{s:8:\"language\";s:3:\"skr\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-skr.zip\";}i:100;a:8:{s:8:\"language\";s:5:\"sl_SI\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-sl_SI.zip\";}i:101;a:8:{s:8:\"language\";s:2:\"sq\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-sq.zip\";}i:102;a:8:{s:8:\"language\";s:5:\"sr_RS\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-sr_RS.zip\";}i:103;a:8:{s:8:\"language\";s:5:\"sv_SE\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-sv_SE.zip\";}i:104;a:8:{s:8:\"language\";s:2:\"sw\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-sw.zip\";}i:105;a:8:{s:8:\"language\";s:3:\"szl\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-szl.zip\";}i:106;a:8:{s:8:\"language\";s:5:\"ta_IN\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ta_IN.zip\";}i:107;a:8:{s:8:\"language\";s:2:\"te\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-te.zip\";}i:108;a:8:{s:8:\"language\";s:2:\"th\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-th.zip\";}i:109;a:8:{s:8:\"language\";s:2:\"tl\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-tl.zip\";}i:110;a:8:{s:8:\"language\";s:5:\"tr_TR\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-tr_TR.zip\";}i:111;a:8:{s:8:\"language\";s:5:\"tt_RU\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-tt_RU.zip\";}i:112;a:8:{s:8:\"language\";s:3:\"tah\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:91:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-tah.zip\";}i:113;a:8:{s:8:\"language\";s:5:\"ug_CN\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ug_CN.zip\";}i:114;a:8:{s:8:\"language\";s:2:\"uk\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-uk.zip\";}i:115;a:8:{s:8:\"language\";s:2:\"ur\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-ur.zip\";}i:116;a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-uz_UZ.zip\";}i:117;a:8:{s:8:\"language\";s:2:\"vi\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:90:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-vi.zip\";}i:118;a:8:{s:8:\"language\";s:5:\"zh_CN\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-zh_CN.zip\";}i:119;a:8:{s:8:\"language\";s:5:\"zh_TW\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-zh_TW.zip\";}i:120;a:8:{s:8:\"language\";s:5:\"zh_HK\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版        \";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}s:7:\"version\";s:5:\"7.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:93:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/Avada/Avada-zh_HK.zip\";}}}','no'),(16333,'_site_transient_timeout_fusion_l10n_api_fusion-builder','1645791031','no'),(16335,'_site_transient_fusion_l10n_api_fusion-builder','a:1:{s:12:\"translations\";a:121:{i:0;a:8:{s:8:\"language\";s:2:\"af\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-af.zip\";}i:1;a:8:{s:8:\"language\";s:2:\"ar\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ar.zip\";}i:2;a:8:{s:8:\"language\";s:3:\"ary\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ary.zip\";}i:3;a:8:{s:8:\"language\";s:2:\"as\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-as.zip\";}i:4;a:8:{s:8:\"language\";s:2:\"az\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-az.zip\";}i:5;a:8:{s:8:\"language\";s:3:\"azb\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-azb.zip\";}i:6;a:8:{s:8:\"language\";s:3:\"bel\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-bel.zip\";}i:7;a:8:{s:8:\"language\";s:5:\"bg_BG\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-bg_BG.zip\";}i:8;a:8:{s:8:\"language\";s:5:\"bn_BD\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-bn_BD.zip\";}i:9;a:8:{s:8:\"language\";s:2:\"bo\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-bo.zip\";}i:10;a:8:{s:8:\"language\";s:5:\"bs_BA\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-bs_BA.zip\";}i:11;a:8:{s:8:\"language\";s:2:\"ca\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ca.zip\";}i:12;a:8:{s:8:\"language\";s:3:\"ceb\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ceb.zip\";}i:13;a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-cs_CZ.zip\";}i:14;a:8:{s:8:\"language\";s:2:\"cy\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-cy.zip\";}i:15;a:8:{s:8:\"language\";s:5:\"da_DK\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Forts&#230;t\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-da_DK.zip\";}i:16;a:8:{s:8:\"language\";s:5:\"de_AT\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-de_AT.zip\";}i:17;a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:120:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-de_CH_informal.zip\";}i:18;a:8:{s:8:\"language\";s:5:\"de_CH\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-de_CH.zip\";}i:19;a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:118:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-de_DE_formal.zip\";}i:20;a:8:{s:8:\"language\";s:5:\"de_DE\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-de_DE.zip\";}i:21;a:8:{s:8:\"language\";s:3:\"dzo\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-dzo.zip\";}i:22;a:8:{s:8:\"language\";s:2:\"el\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-el.zip\";}i:23;a:8:{s:8:\"language\";s:5:\"en_GB\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-en_GB.zip\";}i:24;a:8:{s:8:\"language\";s:5:\"en_ZA\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-en_ZA.zip\";}i:25;a:8:{s:8:\"language\";s:5:\"en_NZ\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-en_NZ.zip\";}i:26;a:8:{s:8:\"language\";s:5:\"en_CA\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-en_CA.zip\";}i:27;a:8:{s:8:\"language\";s:5:\"en_AU\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-en_AU.zip\";}i:28;a:8:{s:8:\"language\";s:2:\"eo\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-eo.zip\";}i:29;a:8:{s:8:\"language\";s:5:\"es_AR\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-es_AR.zip\";}i:30;a:8:{s:8:\"language\";s:5:\"es_CO\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-es_CO.zip\";}i:31;a:8:{s:8:\"language\";s:5:\"es_VE\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-es_VE.zip\";}i:32;a:8:{s:8:\"language\";s:5:\"es_UY\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-es_UY.zip\";}i:33;a:8:{s:8:\"language\";s:5:\"es_CR\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-es_CR.zip\";}i:34;a:8:{s:8:\"language\";s:5:\"es_CL\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-es_CL.zip\";}i:35;a:8:{s:8:\"language\";s:5:\"es_GT\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-es_GT.zip\";}i:36;a:8:{s:8:\"language\";s:5:\"es_PE\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-es_PE.zip\";}i:37;a:8:{s:8:\"language\";s:5:\"es_ES\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-es_ES.zip\";}i:38;a:8:{s:8:\"language\";s:5:\"es_MX\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-es_MX.zip\";}i:39;a:8:{s:8:\"language\";s:2:\"et\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-et.zip\";}i:40;a:8:{s:8:\"language\";s:2:\"eu\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-eu.zip\";}i:41;a:8:{s:8:\"language\";s:5:\"fa_IR\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-fa_IR.zip\";}i:42;a:8:{s:8:\"language\";s:2:\"fi\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-fi.zip\";}i:43;a:8:{s:8:\"language\";s:5:\"fr_FR\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-fr_FR.zip\";}i:44;a:8:{s:8:\"language\";s:5:\"fr_CA\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-fr_CA.zip\";}i:45;a:8:{s:8:\"language\";s:5:\"fr_BE\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-fr_BE.zip\";}i:46;a:8:{s:8:\"language\";s:3:\"fur\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-fur.zip\";}i:47;a:8:{s:8:\"language\";s:2:\"gd\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-gd.zip\";}i:48;a:8:{s:8:\"language\";s:5:\"gl_ES\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-gl_ES.zip\";}i:49;a:8:{s:8:\"language\";s:2:\"gu\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-gu.zip\";}i:50;a:8:{s:8:\"language\";s:3:\"haz\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-haz.zip\";}i:51;a:8:{s:8:\"language\";s:5:\"he_IL\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-he_IL.zip\";}i:52;a:8:{s:8:\"language\";s:5:\"hi_IN\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-hi_IN.zip\";}i:53;a:8:{s:8:\"language\";s:2:\"hr\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-hr.zip\";}i:54;a:8:{s:8:\"language\";s:3:\"hsb\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-hsb.zip\";}i:55;a:8:{s:8:\"language\";s:5:\"hu_HU\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-hu_HU.zip\";}i:56;a:8:{s:8:\"language\";s:2:\"hy\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-hy.zip\";}i:57;a:8:{s:8:\"language\";s:5:\"id_ID\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-id_ID.zip\";}i:58;a:8:{s:8:\"language\";s:5:\"is_IS\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-is_IS.zip\";}i:59;a:8:{s:8:\"language\";s:5:\"it_IT\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-it_IT.zip\";}i:60;a:8:{s:8:\"language\";s:2:\"ja\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ja.zip\";}i:61;a:8:{s:8:\"language\";s:5:\"jv_ID\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nutugne\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-jv_ID.zip\";}i:62;a:8:{s:8:\"language\";s:5:\"ka_GE\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ka_GE.zip\";}i:63;a:8:{s:8:\"language\";s:3:\"kab\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-kab.zip\";}i:64;a:8:{s:8:\"language\";s:2:\"kk\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-kk.zip\";}i:65;a:8:{s:8:\"language\";s:2:\"km\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-km.zip\";}i:66;a:8:{s:8:\"language\";s:2:\"kn\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರೆಸಿ\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-kn.zip\";}i:67;a:8:{s:8:\"language\";s:5:\"ko_KR\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ko_KR.zip\";}i:68;a:8:{s:8:\"language\";s:3:\"ckb\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ckb.zip\";}i:69;a:8:{s:8:\"language\";s:2:\"lo\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ຕໍ່\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-lo.zip\";}i:70;a:8:{s:8:\"language\";s:5:\"lt_LT\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-lt_LT.zip\";}i:71;a:8:{s:8:\"language\";s:2:\"lv\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-lv.zip\";}i:72;a:8:{s:8:\"language\";s:5:\"mk_MK\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-mk_MK.zip\";}i:73;a:8:{s:8:\"language\";s:5:\"ml_IN\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ml_IN.zip\";}i:74;a:8:{s:8:\"language\";s:2:\"mn\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-mn.zip\";}i:75;a:8:{s:8:\"language\";s:2:\"mr\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-mr.zip\";}i:76;a:8:{s:8:\"language\";s:5:\"ms_MY\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ms_MY.zip\";}i:77;a:8:{s:8:\"language\";s:5:\"my_MM\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-my_MM.zip\";}i:78;a:8:{s:8:\"language\";s:5:\"nb_NO\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-nb_NO.zip\";}i:79;a:8:{s:8:\"language\";s:5:\"ne_NP\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"जारीराख्नु \";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ne_NP.zip\";}i:80;a:8:{s:8:\"language\";s:5:\"nl_BE\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-nl_BE.zip\";}i:81;a:8:{s:8:\"language\";s:5:\"nl_NL\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-nl_NL.zip\";}i:82;a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:118:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-nl_NL_formal.zip\";}i:83;a:8:{s:8:\"language\";s:5:\"nn_NO\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-nn_NO.zip\";}i:84;a:8:{s:8:\"language\";s:3:\"oci\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-oci.zip\";}i:85;a:8:{s:8:\"language\";s:5:\"pa_IN\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-pa_IN.zip\";}i:86;a:8:{s:8:\"language\";s:5:\"pl_PL\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-pl_PL.zip\";}i:87;a:8:{s:8:\"language\";s:2:\"ps\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ps.zip\";}i:88;a:8:{s:8:\"language\";s:5:\"pt_PT\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-pt_PT.zip\";}i:89;a:8:{s:8:\"language\";s:5:\"pt_AO\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-pt_AO.zip\";}i:90;a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:116:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-pt_PT_ao90.zip\";}i:91;a:8:{s:8:\"language\";s:5:\"pt_BR\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-pt_BR.zip\";}i:92;a:8:{s:8:\"language\";s:3:\"rhg\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-rhg.zip\";}i:93;a:8:{s:8:\"language\";s:5:\"ro_RO\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ro_RO.zip\";}i:94;a:8:{s:8:\"language\";s:5:\"ru_RU\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ru_RU.zip\";}i:95;a:8:{s:8:\"language\";s:3:\"sah\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-sah.zip\";}i:96;a:8:{s:8:\"language\";s:3:\"snd\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:2:\"sd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-snd.zip\";}i:97;a:8:{s:8:\"language\";s:5:\"si_LK\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-si_LK.zip\";}i:98;a:8:{s:8:\"language\";s:5:\"sk_SK\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-sk_SK.zip\";}i:99;a:8:{s:8:\"language\";s:3:\"skr\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-skr.zip\";}i:100;a:8:{s:8:\"language\";s:5:\"sl_SI\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-sl_SI.zip\";}i:101;a:8:{s:8:\"language\";s:2:\"sq\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-sq.zip\";}i:102;a:8:{s:8:\"language\";s:5:\"sr_RS\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-sr_RS.zip\";}i:103;a:8:{s:8:\"language\";s:5:\"sv_SE\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-sv_SE.zip\";}i:104;a:8:{s:8:\"language\";s:2:\"sw\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-sw.zip\";}i:105;a:8:{s:8:\"language\";s:3:\"szl\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-szl.zip\";}i:106;a:8:{s:8:\"language\";s:5:\"ta_IN\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ta_IN.zip\";}i:107;a:8:{s:8:\"language\";s:2:\"te\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-te.zip\";}i:108;a:8:{s:8:\"language\";s:2:\"th\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-th.zip\";}i:109;a:8:{s:8:\"language\";s:2:\"tl\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-tl.zip\";}i:110;a:8:{s:8:\"language\";s:5:\"tr_TR\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-tr_TR.zip\";}i:111;a:8:{s:8:\"language\";s:5:\"tt_RU\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-tt_RU.zip\";}i:112;a:8:{s:8:\"language\";s:3:\"tah\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:109:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-tah.zip\";}i:113;a:8:{s:8:\"language\";s:5:\"ug_CN\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ug_CN.zip\";}i:114;a:8:{s:8:\"language\";s:2:\"uk\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-uk.zip\";}i:115;a:8:{s:8:\"language\";s:2:\"ur\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-ur.zip\";}i:116;a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-uz_UZ.zip\";}i:117;a:8:{s:8:\"language\";s:2:\"vi\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:108:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-vi.zip\";}i:118;a:8:{s:8:\"language\";s:5:\"zh_CN\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-zh_CN.zip\";}i:119;a:8:{s:8:\"language\";s:5:\"zh_TW\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-zh_TW.zip\";}i:120;a:8:{s:8:\"language\";s:5:\"zh_HK\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版   \";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}s:7:\"version\";s:13:\"Builder 3.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:111:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-builder/fusion-builder-zh_HK.zip\";}}}','no'),(16337,'_site_transient_timeout_fusion_l10n_api_fusion-core','1645791231','no'),(16338,'_site_transient_fusion_l10n_api_fusion-core','a:1:{s:12:\"translations\";a:121:{i:0;a:8:{s:8:\"language\";s:2:\"af\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-af.zip\";}i:1;a:8:{s:8:\"language\";s:2:\"ar\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ar.zip\";}i:2;a:8:{s:8:\"language\";s:3:\"ary\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ary.zip\";}i:3;a:8:{s:8:\"language\";s:2:\"as\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-as.zip\";}i:4;a:8:{s:8:\"language\";s:2:\"az\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-az.zip\";}i:5;a:8:{s:8:\"language\";s:3:\"azb\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-azb.zip\";}i:6;a:8:{s:8:\"language\";s:3:\"bel\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-bel.zip\";}i:7;a:8:{s:8:\"language\";s:5:\"bg_BG\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-bg_BG.zip\";}i:8;a:8:{s:8:\"language\";s:5:\"bn_BD\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-bn_BD.zip\";}i:9;a:8:{s:8:\"language\";s:2:\"bo\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-bo.zip\";}i:10;a:8:{s:8:\"language\";s:5:\"bs_BA\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-bs_BA.zip\";}i:11;a:8:{s:8:\"language\";s:2:\"ca\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ca.zip\";}i:12;a:8:{s:8:\"language\";s:3:\"ceb\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ceb.zip\";}i:13;a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-cs_CZ.zip\";}i:14;a:8:{s:8:\"language\";s:2:\"cy\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-cy.zip\";}i:15;a:8:{s:8:\"language\";s:5:\"da_DK\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Forts&#230;t\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-da_DK.zip\";}i:16;a:8:{s:8:\"language\";s:5:\"de_AT\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-de_AT.zip\";}i:17;a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:114:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-de_CH_informal.zip\";}i:18;a:8:{s:8:\"language\";s:5:\"de_CH\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-de_CH.zip\";}i:19;a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:112:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-de_DE_formal.zip\";}i:20;a:8:{s:8:\"language\";s:5:\"de_DE\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-de_DE.zip\";}i:21;a:8:{s:8:\"language\";s:3:\"dzo\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-dzo.zip\";}i:22;a:8:{s:8:\"language\";s:2:\"el\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-el.zip\";}i:23;a:8:{s:8:\"language\";s:5:\"en_GB\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-en_GB.zip\";}i:24;a:8:{s:8:\"language\";s:5:\"en_ZA\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-en_ZA.zip\";}i:25;a:8:{s:8:\"language\";s:5:\"en_NZ\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-en_NZ.zip\";}i:26;a:8:{s:8:\"language\";s:5:\"en_CA\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-en_CA.zip\";}i:27;a:8:{s:8:\"language\";s:5:\"en_AU\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-en_AU.zip\";}i:28;a:8:{s:8:\"language\";s:2:\"eo\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-eo.zip\";}i:29;a:8:{s:8:\"language\";s:5:\"es_AR\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-es_AR.zip\";}i:30;a:8:{s:8:\"language\";s:5:\"es_CO\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-es_CO.zip\";}i:31;a:8:{s:8:\"language\";s:5:\"es_VE\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-es_VE.zip\";}i:32;a:8:{s:8:\"language\";s:5:\"es_UY\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-es_UY.zip\";}i:33;a:8:{s:8:\"language\";s:5:\"es_CR\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-es_CR.zip\";}i:34;a:8:{s:8:\"language\";s:5:\"es_CL\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-es_CL.zip\";}i:35;a:8:{s:8:\"language\";s:5:\"es_GT\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-es_GT.zip\";}i:36;a:8:{s:8:\"language\";s:5:\"es_PE\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-es_PE.zip\";}i:37;a:8:{s:8:\"language\";s:5:\"es_ES\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-es_ES.zip\";}i:38;a:8:{s:8:\"language\";s:5:\"es_MX\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-es_MX.zip\";}i:39;a:8:{s:8:\"language\";s:2:\"et\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-et.zip\";}i:40;a:8:{s:8:\"language\";s:2:\"eu\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-eu.zip\";}i:41;a:8:{s:8:\"language\";s:5:\"fa_IR\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-fa_IR.zip\";}i:42;a:8:{s:8:\"language\";s:2:\"fi\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-fi.zip\";}i:43;a:8:{s:8:\"language\";s:5:\"fr_FR\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-fr_FR.zip\";}i:44;a:8:{s:8:\"language\";s:5:\"fr_CA\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-fr_CA.zip\";}i:45;a:8:{s:8:\"language\";s:5:\"fr_BE\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-fr_BE.zip\";}i:46;a:8:{s:8:\"language\";s:3:\"fur\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-fur.zip\";}i:47;a:8:{s:8:\"language\";s:2:\"gd\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-gd.zip\";}i:48;a:8:{s:8:\"language\";s:5:\"gl_ES\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-gl_ES.zip\";}i:49;a:8:{s:8:\"language\";s:2:\"gu\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-gu.zip\";}i:50;a:8:{s:8:\"language\";s:3:\"haz\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-haz.zip\";}i:51;a:8:{s:8:\"language\";s:5:\"he_IL\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-he_IL.zip\";}i:52;a:8:{s:8:\"language\";s:5:\"hi_IN\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-hi_IN.zip\";}i:53;a:8:{s:8:\"language\";s:2:\"hr\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-hr.zip\";}i:54;a:8:{s:8:\"language\";s:3:\"hsb\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-hsb.zip\";}i:55;a:8:{s:8:\"language\";s:5:\"hu_HU\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-hu_HU.zip\";}i:56;a:8:{s:8:\"language\";s:2:\"hy\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-hy.zip\";}i:57;a:8:{s:8:\"language\";s:5:\"id_ID\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-id_ID.zip\";}i:58;a:8:{s:8:\"language\";s:5:\"is_IS\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-is_IS.zip\";}i:59;a:8:{s:8:\"language\";s:5:\"it_IT\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-it_IT.zip\";}i:60;a:8:{s:8:\"language\";s:2:\"ja\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ja.zip\";}i:61;a:8:{s:8:\"language\";s:5:\"jv_ID\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nutugne\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-jv_ID.zip\";}i:62;a:8:{s:8:\"language\";s:5:\"ka_GE\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ka_GE.zip\";}i:63;a:8:{s:8:\"language\";s:3:\"kab\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-kab.zip\";}i:64;a:8:{s:8:\"language\";s:2:\"kk\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-kk.zip\";}i:65;a:8:{s:8:\"language\";s:2:\"km\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-km.zip\";}i:66;a:8:{s:8:\"language\";s:2:\"kn\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರೆಸಿ\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-kn.zip\";}i:67;a:8:{s:8:\"language\";s:5:\"ko_KR\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ko_KR.zip\";}i:68;a:8:{s:8:\"language\";s:3:\"ckb\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ckb.zip\";}i:69;a:8:{s:8:\"language\";s:2:\"lo\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ຕໍ່\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-lo.zip\";}i:70;a:8:{s:8:\"language\";s:5:\"lt_LT\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-lt_LT.zip\";}i:71;a:8:{s:8:\"language\";s:2:\"lv\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-lv.zip\";}i:72;a:8:{s:8:\"language\";s:5:\"mk_MK\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-mk_MK.zip\";}i:73;a:8:{s:8:\"language\";s:5:\"ml_IN\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ml_IN.zip\";}i:74;a:8:{s:8:\"language\";s:2:\"mn\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-mn.zip\";}i:75;a:8:{s:8:\"language\";s:2:\"mr\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-mr.zip\";}i:76;a:8:{s:8:\"language\";s:5:\"ms_MY\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ms_MY.zip\";}i:77;a:8:{s:8:\"language\";s:5:\"my_MM\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-my_MM.zip\";}i:78;a:8:{s:8:\"language\";s:5:\"nb_NO\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-nb_NO.zip\";}i:79;a:8:{s:8:\"language\";s:5:\"ne_NP\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"जारीराख्नु \";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ne_NP.zip\";}i:80;a:8:{s:8:\"language\";s:5:\"nl_BE\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-nl_BE.zip\";}i:81;a:8:{s:8:\"language\";s:5:\"nl_NL\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-nl_NL.zip\";}i:82;a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:112:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-nl_NL_formal.zip\";}i:83;a:8:{s:8:\"language\";s:5:\"nn_NO\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-nn_NO.zip\";}i:84;a:8:{s:8:\"language\";s:3:\"oci\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-oci.zip\";}i:85;a:8:{s:8:\"language\";s:5:\"pa_IN\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-pa_IN.zip\";}i:86;a:8:{s:8:\"language\";s:5:\"pl_PL\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-pl_PL.zip\";}i:87;a:8:{s:8:\"language\";s:2:\"ps\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ps.zip\";}i:88;a:8:{s:8:\"language\";s:5:\"pt_PT\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-pt_PT.zip\";}i:89;a:8:{s:8:\"language\";s:5:\"pt_AO\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-pt_AO.zip\";}i:90;a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:110:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-pt_PT_ao90.zip\";}i:91;a:8:{s:8:\"language\";s:5:\"pt_BR\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-pt_BR.zip\";}i:92;a:8:{s:8:\"language\";s:3:\"rhg\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-rhg.zip\";}i:93;a:8:{s:8:\"language\";s:5:\"ro_RO\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ro_RO.zip\";}i:94;a:8:{s:8:\"language\";s:5:\"ru_RU\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ru_RU.zip\";}i:95;a:8:{s:8:\"language\";s:3:\"sah\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-sah.zip\";}i:96;a:8:{s:8:\"language\";s:3:\"snd\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:2:\"sd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-snd.zip\";}i:97;a:8:{s:8:\"language\";s:5:\"si_LK\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-si_LK.zip\";}i:98;a:8:{s:8:\"language\";s:5:\"sk_SK\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-sk_SK.zip\";}i:99;a:8:{s:8:\"language\";s:3:\"skr\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-skr.zip\";}i:100;a:8:{s:8:\"language\";s:5:\"sl_SI\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-sl_SI.zip\";}i:101;a:8:{s:8:\"language\";s:2:\"sq\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-sq.zip\";}i:102;a:8:{s:8:\"language\";s:5:\"sr_RS\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-sr_RS.zip\";}i:103;a:8:{s:8:\"language\";s:5:\"sv_SE\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-sv_SE.zip\";}i:104;a:8:{s:8:\"language\";s:2:\"sw\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-sw.zip\";}i:105;a:8:{s:8:\"language\";s:3:\"szl\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-szl.zip\";}i:106;a:8:{s:8:\"language\";s:5:\"ta_IN\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ta_IN.zip\";}i:107;a:8:{s:8:\"language\";s:2:\"te\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-te.zip\";}i:108;a:8:{s:8:\"language\";s:2:\"th\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-th.zip\";}i:109;a:8:{s:8:\"language\";s:2:\"tl\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-tl.zip\";}i:110;a:8:{s:8:\"language\";s:5:\"tr_TR\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-tr_TR.zip\";}i:111;a:8:{s:8:\"language\";s:5:\"tt_RU\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-tt_RU.zip\";}i:112;a:8:{s:8:\"language\";s:3:\"tah\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:103:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-tah.zip\";}i:113;a:8:{s:8:\"language\";s:5:\"ug_CN\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ug_CN.zip\";}i:114;a:8:{s:8:\"language\";s:2:\"uk\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-uk.zip\";}i:115;a:8:{s:8:\"language\";s:2:\"ur\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-ur.zip\";}i:116;a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-uz_UZ.zip\";}i:117;a:8:{s:8:\"language\";s:2:\"vi\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:102:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-vi.zip\";}i:118;a:8:{s:8:\"language\";s:5:\"zh_CN\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-zh_CN.zip\";}i:119;a:8:{s:8:\"language\";s:5:\"zh_TW\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-zh_TW.zip\";}i:120;a:8:{s:8:\"language\";s:5:\"zh_HK\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版     \";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}s:7:\"version\";s:10:\"Core 5.6.1\";s:7:\"updated\";s:19:\"2022-01-17 11:32:32\";s:7:\"package\";s:105:\"https://raw.githubusercontent.com/Theme-Fusion/Localization-l10n/master/fusion-core/fusion-core-zh_HK.zip\";}}}','no'),(16584,'_site_transient_timeout_available_translations','1645729480','no'),(16585,'_site_transient_available_translations','a:128:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-18 21:35:31\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.1/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-24 06:01:42\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.18\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.18/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2021-09-08 17:57:56\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.3/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.19\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.19/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2021-12-01 15:31:45\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.3/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"5.4.9\";s:7:\"updated\";s:19:\"2020-10-31 08:48:37\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.9/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-26 00:32:49\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-23 08:02:22\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-24 13:25:00\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-18 16:29:19\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-31 16:48:08\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-23 19:42:08\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-24 12:26:13\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-24 12:22:31\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/5.9.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-17 21:11:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-17 21:14:01\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.9.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-18 15:26:10\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.9.1/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-21 16:41:01\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-18 08:36:22\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2021-12-24 12:36:39\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-22 23:27:29\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-22 23:28:15\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-22 23:27:53\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-24 13:28:57\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-18 05:01:05\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-18 05:01:34\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-22 21:41:41\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-12 15:14:43\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.3/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2021-07-30 00:35:05\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.3/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.3/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:5:\"5.4.9\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.9/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-22 09:13:24\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.14\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.14/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-18 05:01:53\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2022-02-21 10:56:22\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.3/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-20 15:30:05\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2021-11-20 16:34:11\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.3/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-22 17:24:14\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-21 16:52:21\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-20 07:35:01\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.18\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.18/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-18 10:40:42\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:6:\"4.9.19\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.19/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.26\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.26/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-14 22:20:29\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.4.9\";s:7:\"updated\";s:19:\"2020-11-06 12:34:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.9/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-19 12:13:00\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-18 15:32:05\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.9.1/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-10 12:33:31\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-22 09:07:27\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.19\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.19/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-17 21:11:54\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-18 13:43:33\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.19\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.19/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-24 08:56:29\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-12 10:34:12\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.9.1/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.19\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.19/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.14\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.14/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-23 01:39:33\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.1/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-26 09:01:56\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2021-12-07 16:32:30\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.3/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-23 12:35:40\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-13 16:36:31\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.1/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"5.4.9\";s:7:\"updated\";s:19:\"2020-07-01 09:16:57\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.4.9/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.19\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.19/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"5.5.8\";s:7:\"updated\";s:19:\"2022-02-21 09:15:56\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.8/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.31\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.31/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-22 17:12:13\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-24 09:30:23\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-21 13:16:58\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-25 09:29:37\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.9.1/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-18 14:37:14\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.18\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.18/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-23 06:55:17\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.27\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.27/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-25 17:29:54\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-21 15:57:46\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2021-09-09 21:40:55\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/5.8.3/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2021-11-27 16:28:47\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.3/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-21 12:28:45\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-17 21:26:10\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:5:\"5.4.9\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.9/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-23 08:05:13\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-24 13:37:43\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.9.1/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-01 10:20:40\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-18 10:26:09\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.3/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-21 19:23:12\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.11\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.11/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.31\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.31/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2021-12-28 02:58:38\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.3/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.18\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.18/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-01-25 01:31:24\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.19\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.19/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2021-10-10 16:46:39\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.3/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"5.4.9\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.4.9/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"5.8.3\";s:7:\"updated\";s:19:\"2021-11-16 07:16:28\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.3/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-21 08:03:32\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-18 15:24:27\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版    \";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"5.9.1\";s:7:\"updated\";s:19:\"2022-02-22 09:18:42\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(16588,'_site_transient_timeout_fusion_patches','1645720498','no'),(16589,'_site_transient_fusion_patches','a:1:{s:5:\"avada\";O:8:\"stdClass\":4:{s:6:\"420179\";O:8:\"stdClass\":4:{s:4:\"date\";s:13:\"Feb. 24, 2022\";s:11:\"description\";s:48:\"<p>Fixes FAQ element showing incorrect icon</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"7.6.1\";}s:5:\"patch\";a:2:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:11:\"fusion-core\";s:7:\"version\";s:5:\"5.6.1\";s:4:\"path\";s:25:\"shortcodes/fusion-faq.php\";s:9:\"reference\";s:108:\"aHR0cHM6Ly91cGRhdGVzLnRoZW1lLWZ1c2lvbi5jb20vYXZhZGFfcGF0Y2gvP2FjdGlvbj1zZXJ2ZV9maWxlJmlkPTQyMDE3OSZrZXk9MA==\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:11:\"fusion-core\";s:7:\"version\";s:5:\"5.6.1\";s:4:\"path\";s:50:\"shortcodes/previews/front-end/elements/view-faq.js\";s:9:\"reference\";s:108:\"aHR0cHM6Ly91cGRhdGVzLnRoZW1lLWZ1c2lvbi5jb20vYXZhZGFfcGF0Y2gvP2FjdGlvbj1zZXJ2ZV9maWxlJmlkPTQyMDE3OSZrZXk9MQ==\";}}}s:6:\"420157\";O:8:\"stdClass\":4:{s:4:\"date\";s:12:\"Feb. 3, 2022\";s:11:\"description\";s:89:\"<p>Fixes PHP warning (a non-numeric value encountered) in class-fusion-sanitize.php.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"7.6.1\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"7.6.1\";s:4:\"path\";s:42:\"includes/lib/inc/class-fusion-sanitize.php\";s:9:\"reference\";s:108:\"aHR0cHM6Ly91cGRhdGVzLnRoZW1lLWZ1c2lvbi5jb20vYXZhZGFfcGF0Y2gvP2FjdGlvbj1zZXJ2ZV9maWxlJmlkPTQyMDE1NyZrZXk9MA==\";}}}s:6:\"420143\";O:8:\"stdClass\":4:{s:4:\"date\";s:12:\"Feb. 1, 2022\";s:11:\"description\";s:97:\"<p>Fixes drag &#038; drop for child element in backend builder not working on WordPress 5.9.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"7.6.1\";}s:5:\"patch\";a:1:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:14:\"fusion-builder\";s:7:\"version\";s:5:\"3.6.1\";s:4:\"path\";s:35:\"assets/admin/css/fusion-builder.css\";s:9:\"reference\";s:108:\"aHR0cHM6Ly91cGRhdGVzLnRoZW1lLWZ1c2lvbi5jb20vYXZhZGFfcGF0Y2gvP2FjdGlvbj1zZXJ2ZV9maWxlJmlkPTQyMDE0MyZrZXk9MA==\";}}}s:6:\"420132\";O:8:\"stdClass\":4:{s:4:\"date\";s:12:\"Feb. 1, 2022\";s:11:\"description\";s:91:\"<p>Fixes &#8220;Emojis Script&#8221; option set to disable not disabling DNS prefetch.</p>\n\";s:8:\"versions\";a:1:{i:0;s:5:\"7.6.1\";}s:5:\"patch\";a:4:{i:0;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"7.6.1\";s:4:\"path\";s:53:\"includes/lib/inc/class-fusion-patcher-apply-patch.php\";s:9:\"reference\";s:108:\"aHR0cHM6Ly91cGRhdGVzLnRoZW1lLWZ1c2lvbi5jb20vYXZhZGFfcGF0Y2gvP2FjdGlvbj1zZXJ2ZV9maWxlJmlkPTQyMDEzMiZrZXk9MA==\";}i:1;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"7.6.1\";s:4:\"path\";s:49:\"includes/lib/inc/class-fusion-patcher-checker.php\";s:9:\"reference\";s:108:\"aHR0cHM6Ly91cGRhdGVzLnRoZW1lLWZ1c2lvbi5jb20vYXZhZGFfcGF0Y2gvP2FjdGlvbj1zZXJ2ZV9maWxlJmlkPTQyMDEzMiZrZXk9MQ==\";}i:2;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"7.6.1\";s:4:\"path\";s:41:\"includes/lib/inc/class-fusion-patcher.php\";s:9:\"reference\";s:108:\"aHR0cHM6Ly91cGRhdGVzLnRoZW1lLWZ1c2lvbi5jb20vYXZhZGFfcGF0Y2gvP2FjdGlvbj1zZXJ2ZV9maWxlJmlkPTQyMDEzMiZrZXk9Mg==\";}i:3;O:8:\"stdClass\":4:{s:7:\"context\";s:5:\"avada\";s:7:\"version\";s:5:\"7.6.1\";s:4:\"path\";s:32:\"includes/class-avada-scripts.php\";s:9:\"reference\";s:108:\"aHR0cHM6Ly91cGRhdGVzLnRoZW1lLWZ1c2lvbi5jb20vYXZhZGFfcGF0Y2gvP2FjdGlvbj1zZXJ2ZV9maWxlJmlkPTQyMDEzMiZrZXk9Mw==\";}}}}}','no'),(16590,'_site_transient_timeout_fusion_patcher_check_num','1645805098','no'),(16591,'_site_transient_fusion_patcher_check_num','a:1:{s:5:\"avada\";i:1;}','no'),(16592,'_transient_timeout_feed_2a09f5c5cc681cffa13dc8f7a0998b4c','1645761900','no');
+INSERT INTO `wp_options` VALUES (16593,'_transient_feed_2a09f5c5cc681cffa13dc8f7a0998b4c','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:46:\"\n       \n      \n      \n      \n      \n      \n      \n      \n      \n      \n              \n              \n              \n              \n              \n              \n              \n              \n      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Avada ThemeFusion | Avada Website Builder – Avada Website Builder For WordPress &amp; WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://theme-fusion.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"For WordPress & WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Feb 2022 18:20:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=5.8.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:9:{i:0;a:6:{s:4:\"data\";s:85:\"\n         \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Avada Music: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://theme-fusion.com/avada-music-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://theme-fusion.com/avada-music-deconstructing-a-prebuilt-website/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Feb 2022 18:20:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Web Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=871665\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:611:\"<p>Say hello to Avada Music. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Music can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-music-deconstructing-a-prebuilt-website/\">Avada Music: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:131969:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-1 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-0 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-1\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/music/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Music</a>. This <a href=\"https://bit.ly/3DiThcg\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Music can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/music/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Music</a> article is a part of a deconstruction series and is the follow-on article that explores the <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/avada-freelancer-deconstructing-a-prebuilt-website/\">Avada Freelancer</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/3DiThcg\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-0 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-1{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-1 .fusion-button-text,.fusion-button.button-1 i,.fusion-button.button-1:hover .fusion-button-text,.fusion-button.button-1:hover i,.fusion-button.button-1:focus .fusion-button-text,.fusion-button.button-1:focus i,.fusion-button.button-1:active .fusion-button-text,.fusion-button.button-1:active i{color:#ffffff;}.fusion-button.button-1:hover,.fusion-button.button-1:active,.fusion-button.button-1:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-1 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/music/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-0{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-0 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-0{width:100% !important;order : 0;}.fusion-builder-nested-column-0 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-0{width:100% !important;order : 0;}.fusion-builder-nested-column-0 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-1 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-2{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-2 .fusion-button-text,.fusion-button.button-2 i,.fusion-button.button-2:hover .fusion-button-text,.fusion-button.button-2:hover i,.fusion-button.button-2:focus .fusion-button-text,.fusion-button.button-2:focus i,.fusion-button.button-2:active .fusion-button-text,.fusion-button.button-2:active i{color:#ffffff;}.fusion-button.button-2:hover,.fusion-button.button-2:active,.fusion-button.button-2:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-2 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3DiThcg\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-1{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-1 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-1{width:100% !important;order : 0;}.fusion-builder-nested-column-1 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-1{width:100% !important;order : 0;}.fusion-builder-nested-column-1 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-1{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-1 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-1\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-2{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-2 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-2\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-3{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-3 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-3\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-4{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-4 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-4\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/3DiThcg\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-1 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-5\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-2\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-5{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-5 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-6\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-2 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-7\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/3DiThcg\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-6{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-6 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-8\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-3 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"docs_generate_critical_css\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1327\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-874339\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x143.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x287.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x430.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x574.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x861.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-9\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-7{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-7 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-10\"><p>Even with all of the performance options provided, Avada plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://bit.ly/3DiThcg\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-3\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-8{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-8 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#ec4858;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ec4858\">#ec4858</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#7d7b8d;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#7d7b8d\">#7d7b8d</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#000000;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#000000\">#000000</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ec4858;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ec4858\">#ec4858</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#7d7b8d;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#7d7b8d\">#7d7b8d</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#000000;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#000000\">#000000</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ec4858;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ec4858\">#ec4858</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#7d7b8d;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#7d7b8d\">#7d7b8d</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#000000;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#000000\">#000000</div></div></div></div><div class=\"fusion-text fusion-text-11\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/music/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Music</a> prebuilt website is a Monochromatic grouping, as seen above. If you would like to change the Avada Music color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-9{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-9 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-12\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/3DiThcg\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/music/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Music</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-2 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-10{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-10 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-11{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-11 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: Montserrat; font-weight: 700;\" data-fusion-font=\"true\" data-fusion-google-font=\"Montserrat\" data-fusion-google-variant=\"700\">Montserrat</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-12{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-12 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3,H4 Font Family: <span style=\"font-family: Montserrat; font-weight: 700;\" data-fusion-font=\"true\" data-fusion-google-font=\"Montserrat\" data-fusion-google-variant=\"700\">Montserrat</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-13{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-13 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5, H6 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: Montserrat; font-weight: 700;\" data-fusion-font=\"true\" data-fusion-google-font=\"Montserrat\" data-fusion-google-variant=\"700\">Montserrat</span><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-2{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-2 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-2{width:100% !important;order : 0;}.fusion-builder-nested-column-2 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-2{width:100% !important;order : 0;}.fusion-builder-nested-column-2 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-3 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-14{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-14 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-15{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-15 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: Merriweather; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Merriweather\" data-fusion-google-variant=\"400\">Merriweather</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-3{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-3 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-3{width:100% !important;order : 0;}.fusion-builder-nested-column-3 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-3{width:100% !important;order : 0;}.fusion-builder-nested-column-3 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-13\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-16{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-16 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-14\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-4\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">The <a href=\"https://bit.ly/3DiThcg\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-17{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-17 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-15\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/music/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Music</a> prebuilt website as an example: <span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This prebuilt website was built without using any of the Avada bundled plugins.</span></p>\n<p>When an Avada prebuilt website is built without using bundled plugins, you can still install and activate any of them, should it be needed for your website. Any of the prebuilt websites can be modified to fit your project needs.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-18{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-18 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-16\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-5\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-envelope-open-text fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-register-for-avada-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Register for Avada support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comments fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/support/submit-a-ticket/\" target=\"_blank\" rel=\"noopener noreferrer\">Need to submit a support ticket?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cart-arrow-down fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/extending-and-renewing-envato-item-support/\" target=\"_blank\" rel=\"noopener noreferrer\">How to extend or renew support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-question fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/avada-grandfathered-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Are you eligible for Grandfathered support?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-columns fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-use-the-avada-support-desk/\" target=\"_blank\" rel=\"noopener noreferrer\">How to use the Avada support Dashboard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-alt fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Documentation</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-video fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://www.youtube.com/c/ThemeFusionVideos/videos\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Video Tutorials</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-19{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-19 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-17\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type.</p>\n<p><a href=\"https://bit.ly/3DiThcg\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website.</p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-6\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">They are created to save you time when building a new website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A prebuilt website can be imported with a few clicks.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is mobile and SEO friendly.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">You can white-label any prebuilt website for client work.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Prebuilt websites are included with your <a href=\"https://bit.ly/3DiThcg\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-20{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-20 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-18\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">86</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-4 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-0{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-0 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-0{width:100% !important;order : 0;}.fusion-builder-column-0 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-0{width:100% !important;order : 0;}.fusion-builder-column-0 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-1{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-2 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-1 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-21{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-21 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-19\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/music/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Music</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-7\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/music/\" target=\"_blank\" rel=\"noopener noreferrer\">Home Page &#8211; Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/music/meet-the-band/\" target=\"_blank\" rel=\"noopener noreferrer\">Meet The Band &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/music/live-dates/\" target=\"_blank\" rel=\"noopener noreferrer\">Live Dates &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/music/latest-news/\" target=\"_blank\" rel=\"noopener noreferrer\">Latest News &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/music/albums/\" target=\"_blank\" rel=\"noopener noreferrer\">Albums &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/music/fans/\" target=\"_blank\" rel=\"noopener noreferrer\">Fans &#8211; page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-1{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-1 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-1{width:100% !important;order : 0;}.fusion-builder-column-1 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-1{width:100% !important;order : 0;}.fusion-builder-column-1 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-2{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-3 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-2 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-22{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-22 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-20\"><p>Before we look at the specific Layouts on the Avada Music prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-5 hover-type-none\"><img width=\"1050\" height=\"1050\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x200.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x400.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x600.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x800.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1050w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-23{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-23 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-21\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-24{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-24 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-22\"><p>The <a href=\"https://avada.theme-fusion.com/music/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Music</a> prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-6 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2c542f9e4a6cefc3fdc]\" data-title=\"Avada Music Live Editing\" title=\"Avada Music Live Editing\"><img width=\"1920\" height=\"931\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Editing.jpg\" class=\"img-responsive wp-image-872438\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Editing-200x97.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Editing-400x194.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Editing-600x291.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Editing-800x388.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Editing-1200x582.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Editing.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-23\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-7 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[76723e6e58b99fa6c06]\" data-title=\"Avada Music Backend Editing\" title=\"Avada Music Backend Editing\"><img width=\"1902\" height=\"816\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Backend-Editing.jpg\" class=\"img-responsive wp-image-872439\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Backend-Editing-200x86.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Backend-Editing-400x172.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Backend-Editing-600x257.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Backend-Editing-800x343.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Backend-Editing-1200x515.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Backend-Editing.jpg 1902w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-25{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-25 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-24\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-8\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-2{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-2 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-2{width:100% !important;order : 0;}.fusion-builder-column-2 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-2{width:100% !important;order : 0;}.fusion-builder-column-2 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-3{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-4 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-3 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-26{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-26 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-25\"><p>If you type the base-level domain name of any particular website into the browser, you will, by default, arrive on the website&#8217;s homepage. The homepage serves as a vital landing page for your visitors by capturing their attention and letting them know what the website is all about. There is the conjectured &#8220;5 Second Rule&#8221; for Web Usability and how it translates the user reaction when landing on the site for the first time into either a positive or negative experience.</p>\n<p>For well over a decade, the main focus for web designers was to showcase style over function for the most part. As time has passed, <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">above the fold</a> content delivery and the impact on <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a> has shifted the focus over to mobile vs. desktop speed and <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>.</p>\n<p>Each of the Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">Prebuilt Websites</a> are meticulously designed with the ideal balance between style and function, and we use the Avada <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> to provide improved results.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-27{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-27 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-26\"><p>For the <a href=\"https://avada.theme-fusion.com/music/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Music</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Global-Header.jpg\">link</a>.</p>\n</div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-8 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[c98426f95b7cb8d3946]\" data-title=\"Avada Music Header\" title=\"Avada Music Header\"><img width=\"1912\" height=\"108\" alt=\"Avada Music Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Header.jpg\" class=\"img-responsive wp-image-872440\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Header-200x11.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Header-400x23.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Header-600x34.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Header-800x45.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Header-1200x68.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Header.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-28{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-28 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-27\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-9\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-3{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-3 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-3{width:100% !important;order : 0;}.fusion-builder-column-3 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-3{width:100% !important;order : 0;}.fusion-builder-column-3 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-4{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-5 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-4 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-29{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-29 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-9 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[5a8fb94467e5814957d]\" data-title=\"Avada Music Hero\" title=\"Avada Music Hero\"><img width=\"1912\" height=\"764\" alt=\"Avada Restaurant Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Hero.jpg\" class=\"img-responsive wp-image-872442\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Hero-200x80.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Hero-400x160.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Hero-600x240.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Hero-800x320.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Hero-1200x479.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Hero.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-28\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. Added to the container is one 1/1 (100% width) <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\">Column </a>with two <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\">Title Elements</a> and a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\">Nested Columns Element</a>. </p>\n<p>Simply put, Nested Columns are columns within columns and this one is structured with one 1/1 (100% width) Columns holding two <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\">Button Elements</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-30{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-30 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Music is Life</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-10 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Music-Is-Life.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[6fe28f14ad99fcd2080]\" data-title=\"Avada Music Music Is Life\" title=\"Avada Music Music Is Life\"><img width=\"1916\" height=\"358\" alt=\"Avada Music Music Is Life\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Music-Is-Life.jpg\" class=\"img-responsive wp-image-872443\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Music-Is-Life-200x37.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Music-Is-Life-400x75.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Music-Is-Life-600x112.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Music-Is-Life-800x149.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Music-Is-Life-1200x224.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Music-Is-Life.jpg 1916w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-29\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This section was built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a> and two 1/6 (16.67% width) Columns,on either side of one 2/3 (66.67% width) Column, which holds a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\">Title Element</a>, a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\">Separator Element</a> and a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\">Text Block Element</a>.<br /></span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-31{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-31 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Latest Band News</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-11 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Blog.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[35d67bd08df7f155a70]\" data-title=\"Avada Music Blog\" title=\"Avada Music Blog\"><img width=\"1912\" height=\"1824\" alt=\"Avada Music Blog\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Blog.jpg\" class=\"img-responsive wp-image-872444\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Blog-200x191.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Blog-400x382.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Blog-600x572.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Blog-800x763.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Blog-1200x1145.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Blog.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-30\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/6 (16.67% width) <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\">Columns</a>,on either side of one 2/3 (66.67% width) Column, which holds a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\">Title Element</a>, a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\">Separator Element</a> and a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\">Text Block Element</a>, followed by one 1/1 (100% width) Column using a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/blog-element/\">Blog Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-32{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-32 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">View All Latest News &#8211; CTA<br /></h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-12 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[39a65c6b921d8fe0e7a]\" data-title=\"Avada Music Button\" title=\"Avada Music Button\"><img width=\"1914\" height=\"158\" alt=\"Avada Music Button\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button.jpg\" class=\"img-responsive wp-image-872446\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button-200x17.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button-400x33.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button-600x50.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button-800x66.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button-1200x99.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-31\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\">Column</a>, holding a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\">Button Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-33{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-33 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Testimonials</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-13 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Testimonials.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[c431a670e6d8bf3a0a8]\" data-title=\"Avada Music Testimonials\" title=\"Avada Music Testimonials\"><img width=\"1914\" height=\"828\" alt=\"Avada Music Testimonials\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Testimonials.jpg\" class=\"img-responsive wp-image-872447\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Testimonials-200x87.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Testimonials-400x173.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Testimonials-600x260.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Testimonials-800x346.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Testimonials-1200x519.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Testimonials.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-32\"><p>For this example, this section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image two 1/6 (16.67% width) <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\">Columns</a>,on either side of one 2/3 (66.67% width) Column, which holds a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/testimonials-element/\">Testimonials Element</a>, a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\">Separator Element</a>, and a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/lightbox-element/\">Lightbox Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-34{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-34 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Live Dates</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-14 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Dates.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[3421ed7e180db4968e0]\" data-title=\"Avada Music Live Dates\" title=\"Avada Music Live Dates\"><img width=\"1913\" height=\"795\" alt=\"Avada Music Live Dates\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Dates.jpg\" class=\"img-responsive wp-image-872449\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Dates-200x83.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Dates-400x166.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Dates-600x249.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Dates-800x332.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Dates-1200x499.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Live-Dates.jpg 1913w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-33\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/6 (16.67% width) <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\">Columns</a>,on either side of one 2/3 (66.67% width) Column, which holds a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\">Title Element</a>, a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\">Separator Element</a> and a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\">Text Block Element</a>, followed by one 1/1 (100% width) Column using a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/toggles-element/\">Toggles Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-35{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-35 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Live Dates &#8211; CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-15 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button-2.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[c14c1980d2271f50d0d]\" data-title=\"Avada Music Button 2\" title=\"Avada Music Button 2\"><img width=\"1912\" height=\"160\" alt=\"Avada Music Button\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button-2.jpg\" class=\"img-responsive wp-image-872450\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button-2-200x17.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button-2-400x33.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button-2-600x50.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button-2-800x67.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button-2-1200x100.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Button-2.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-34\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\">Column</a>, holding a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\">Button Element</a>.</p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-4{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-4 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-4{width:100% !important;order : 0;}.fusion-builder-column-4 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-4{width:100% !important;order : 0;}.fusion-builder-column-4 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-5{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-6 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-5 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-36{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-36 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-35\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-10\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#ec4858;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-36\"><p>For the <a href=\"https://avada.theme-fusion.com/music/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Music</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-37{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-37 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-16 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[053e3563cd02623b20a]\" data-title=\"Avada Music Footer\" title=\"Avada Music Footer\"><img width=\"1914\" height=\"294\" alt=\"Avada Music Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Footer.jpg\" class=\"img-responsive wp-image-872453\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Footer-200x31.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Footer-400x61.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Footer-600x92.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Footer-800x123.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Footer-1200x184.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Footer.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-37\"><p>The Footer content is divided into two <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Containers</a>. The first Container two <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, with an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a> and a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/menu-element/\">Menu Element</a>, with the use of <a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website information and a <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/documentation/avada/elements/social-links-element/\">Social Links Element</a>, in the second Container. You can check how this is structured on the backend by clicking this <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Music-Global-Footer.jpg\">link</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-38{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-38 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-38\"><p>There are <span class=\"fusion-cs-live-demos\">86</span> <a href=\"https://bit.ly/3DiThcg\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/3DiThcg\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style>.fusion-button.button-3{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-3 .fusion-button-text,.fusion-button.button-3 i,.fusion-button.button-3:hover .fusion-button-text,.fusion-button.button-3:hover i,.fusion-button.button-3:focus .fusion-button-text,.fusion-button.button-3:focus i,.fusion-button.button-3:active .fusion-button-text,.fusion-button.button-3:active i{color:#ffffff;}.fusion-button.button-3:hover,.fusion-button.button-3:active,.fusion-button.button-3:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-3 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3DiThcg\"><span class=\"fusion-button-text\">Buy Avada Music For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-5{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-5 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-5{width:100% !important;order : 0;}.fusion-builder-column-5 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-5{width:100% !important;order : 0;}.fusion-builder-column-5 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-6{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-music-deconstructing-a-prebuilt-website/\">Avada Music: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://theme-fusion.com/avada-music-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:85:\"\n             \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Avada Freelancer: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://theme-fusion.com/avada-freelancer-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://theme-fusion.com/avada-freelancer-deconstructing-a-prebuilt-website/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Feb 2022 17:49:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Web Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=871669\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:631:\"<p>Say hello to Avada Freelancer. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Freelancer can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-freelancer-deconstructing-a-prebuilt-website/\">Avada Freelancer: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:143937:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-6 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-39\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/restaurant/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Freelancer</a>. This <a href=\"https://bit.ly/389rOLS\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Freelancer can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/freelancer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Freelancer</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-information-technology-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Information Technology</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/389rOLS\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-4 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-4{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-4 .fusion-button-text,.fusion-button.button-4 i,.fusion-button.button-4:hover .fusion-button-text,.fusion-button.button-4:hover i,.fusion-button.button-4:focus .fusion-button-text,.fusion-button.button-4:focus i,.fusion-button.button-4:active .fusion-button-text,.fusion-button.button-4:active i{color:#ffffff;}.fusion-button.button-4:hover,.fusion-button.button-4:active,.fusion-button.button-4:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-4 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/freelancer/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-4{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-4 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-4{width:100% !important;order : 0;}.fusion-builder-nested-column-4 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-4{width:100% !important;order : 0;}.fusion-builder-nested-column-4 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-5 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-5{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-5 .fusion-button-text,.fusion-button.button-5 i,.fusion-button.button-5:hover .fusion-button-text,.fusion-button.button-5:hover i,.fusion-button.button-5:focus .fusion-button-text,.fusion-button.button-5:focus i,.fusion-button.button-5:active .fusion-button-text,.fusion-button.button-5:active i{color:#ffffff;}.fusion-button.button-5:hover,.fusion-button.button-5:active,.fusion-button.button-5:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-5 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/389rOLS\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-5{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-5 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-5{width:100% !important;order : 0;}.fusion-builder-nested-column-5 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-5{width:100% !important;order : 0;}.fusion-builder-nested-column-5 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-39{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-39 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-11\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-40{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-40 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-40\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-41{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-41 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-41\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-42{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-42 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-42\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/389rOLS\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-17 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-43\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-12\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-43{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-43 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-44\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-18 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-45\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/389rOLS\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-44{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-44 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-46\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-19 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"docs_generate_critical_css\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1327\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-874339\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x143.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x287.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x430.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x574.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x861.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-47\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-45{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-45 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-48\"><p>Even with all of the performance options provided, Avada plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://bit.ly/389rOLS\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-13\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-46{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-46 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#ffffff;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#7a89ab;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#7a89ab\">#7a89ab</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#f9225b;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f9225b\">#f9225b</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffffff;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#7a89ab;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#7a89ab\">#7a89ab</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#f9225b;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f9225b\">#f9225b</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffffff;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#7a89ab;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#7a89ab\">#7a89ab</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#f9225b;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f9225b\">#f9225b</div></div></div></div><div class=\"fusion-text fusion-text-49\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/freelancer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Freelancer</a> prebuilt website is a divergent color scheme, as seen above. If you would like to change the Avada Freelancer color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-47{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-47 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-50\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/389rOLS\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/freelancer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Freelancer</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-6 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-48{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-48 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-49{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-49 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: Montserrat; font-weight: 600;\" data-fusion-font=\"true\" data-fusion-google-font=\"Montserrat\" data-fusion-google-variant=\"600\">Montserrat</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-50{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-50 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3,H4 Font Family: <span style=\"font-family: Montserrat; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Montserrat\" data-fusion-google-variant=\"400\">Montserrat</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-51{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-51 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5, H6 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: Montserrat; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Montserrat\" data-fusion-google-variant=\"400\">Montserrat</span><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-6{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-6 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-6{width:100% !important;order : 0;}.fusion-builder-nested-column-6 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-6{width:100% !important;order : 0;}.fusion-builder-nested-column-6 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-7 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-52{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-52 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-53{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-53 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: \'Source Sans Pro\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Source Sans Pro\" data-fusion-google-variant=\"400\">Source Sans Pro</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-7{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-7 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-7{width:100% !important;order : 0;}.fusion-builder-nested-column-7 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-7{width:100% !important;order : 0;}.fusion-builder-nested-column-7 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-51\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-54{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-54 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-52\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-14\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">The <a href=\"https://bit.ly/389rOLS\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-55{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-55 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-53\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/freelancer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Freelancer</a> prebuilt website as an example: <span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This prebuilt website was built without using any of the Avada bundled plugins.</span></p>\n<p>When an Avada prebuilt website is built without using bundled plugins, you can still install and activate any of them, should it be needed for your website. Any of the prebuilt websites can be modified to fit your project needs.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-56{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-56 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-54\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-15\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-envelope-open-text fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-register-for-avada-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Register for Avada support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comments fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/support/submit-a-ticket/\" target=\"_blank\" rel=\"noopener noreferrer\">Need to submit a support ticket?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cart-arrow-down fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/extending-and-renewing-envato-item-support/\" target=\"_blank\" rel=\"noopener noreferrer\">How to extend or renew support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-question fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/avada-grandfathered-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Are you eligible for Grandfathered support?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-columns fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-use-the-avada-support-desk/\" target=\"_blank\" rel=\"noopener noreferrer\">How to use the Avada support Dashboard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-alt fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Documentation</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-video fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://www.youtube.com/c/ThemeFusionVideos/videos\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Video Tutorials</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-57{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-57 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-55\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type.</p>\n<p><a href=\"https://bit.ly/389rOLS\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website.</p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-16\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">They are created to save you time when building a new website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A prebuilt website can be imported with a few clicks.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is mobile and SEO friendly.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">You can white-label any prebuilt website for client work.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Prebuilt websites are included with your <a href=\"https://bit.ly/3kOMxfw\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-58{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-58 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-56\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">86</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-20 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-6{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-6 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-6{width:100% !important;order : 0;}.fusion-builder-column-6 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-6{width:100% !important;order : 0;}.fusion-builder-column-6 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-7{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-8 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-7 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-59{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-59 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-57\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/freelancer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Freelancer</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-17\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/freelancer/\" target=\"_blank\" rel=\"noopener noreferrer\">Home Page &#8211; Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/freelancer/recent-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Work &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/freelancer/web-design-articles/\" target=\"_blank\" rel=\"noopener noreferrer\">Articles &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/freelancer/lets-talk/\" target=\"_blank\" rel=\"noopener noreferrer\">Let&#8217;s Talk &#8211; Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-7{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-7 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-7{width:100% !important;order : 0;}.fusion-builder-column-7 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-7{width:100% !important;order : 0;}.fusion-builder-column-7 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-8{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-9 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-8 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-60{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-60 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-58\"><p>Before we look at the specific Layouts on the Avada Freelancer prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-21 hover-type-none\"><img width=\"1050\" height=\"1050\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x200.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x400.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x600.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x800.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1050w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-61{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-61 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-59\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-62{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-62 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-60\"><p>The <a href=\"https://avada.theme-fusion.com/freelancer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Freelancer</a> prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-22 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Live-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[cc95a48801880f553c2]\" data-title=\"Avada Freelancer Live Editing\" title=\"Avada Freelancer Live Editing\"><img width=\"1920\" height=\"936\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Live-Editing.jpg\" class=\"img-responsive wp-image-872380\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Live-Editing-200x98.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Live-Editing-400x195.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Live-Editing-600x293.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Live-Editing-800x390.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Live-Editing-1200x585.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Live-Editing.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-61\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-23 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[cc84e3d2b0e6a1c6141]\" data-title=\"Avada Freelancer Backend Editing\" title=\"Avada Freelancer Backend Editing\"><img width=\"1902\" height=\"868\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Backend-Editing.jpg\" class=\"img-responsive wp-image-872381\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Backend-Editing-200x91.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Backend-Editing-400x183.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Backend-Editing-600x274.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Backend-Editing-800x365.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Backend-Editing-1200x548.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Backend-Editing.jpg 1902w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-63{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-63 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-62\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-18\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-8{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-8 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-8{width:100% !important;order : 0;}.fusion-builder-column-8 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-8{width:100% !important;order : 0;}.fusion-builder-column-8 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-9{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-10 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-9 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-64{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-64 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-63\"><p>If you type the base-level domain name of any particular website into the browser, you will, by default, arrive on the website&#8217;s homepage. The homepage serves as a vital landing page for your visitors by capturing their attention and letting them know what the website is all about. There is the conjectured &#8220;5 Second Rule&#8221; for Web Usability and how it translates the user reaction when landing on the site for the first time into either a positive or negative experience.</p>\n<p>For well over a decade, the main focus for web designers was to showcase style over function for the most part. As time has passed, <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">above the fold</a> content delivery and the impact on <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a> has shifted the focus over to mobile vs. desktop speed and <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>.</p>\n<p>Each of the Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">Prebuilt Websites</a> are meticulously designed with the ideal balance between style and function, and we use the Avada <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> to provide improved results.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-65{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-65 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-64\"><p>For the <a href=\"https://avada.theme-fusion.com/freelancer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Freelancer</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Global-Header.jpg\">link</a>.</p>\n</div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-24 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[f7db77cceef9d3236d9]\" data-title=\"Avada Freelancer Header\" title=\"Avada Freelancer Header\"><img width=\"1915\" height=\"112\" alt=\"Avada Freelancer Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Header.jpg\" class=\"img-responsive wp-image-872382\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Header-200x12.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Header-400x23.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Header-600x35.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Header-800x47.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Header-1200x70.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Header.jpg 1915w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-66{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-66 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-65\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-19\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-9{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-9 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-9{width:100% !important;order : 0;}.fusion-builder-column-9 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-9{width:100% !important;order : 0;}.fusion-builder-column-9 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-10{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-11 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-10 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-67{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-67 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-25 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[a5e9124d7eb67c66511]\" data-title=\"Avada Freelancer Hero\" title=\"Avada Freelancer Hero\"><img width=\"1916\" height=\"754\" alt=\"Avada Restaurant Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Hero.jpg\" class=\"img-responsive wp-image-872383\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Hero-200x79.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Hero-400x157.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Hero-600x236.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Hero-800x315.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Hero-1200x472.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Hero.jpg 1916w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-66\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. Added to the container is one 2/5 (40% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> with a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. Simply put, Nested Columns are Columns within Columns. The Nested Columns in this example, contains one 1/5 (20% width) Column with a Separator Element, and one 4/5 (80% width) Column with two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a Separator Element, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-68{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-68 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">About Me</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-26 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-About-Me.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[bb5654c9dd3b7717fcb]\" data-title=\"Avada Freelancer About Me\" title=\"Avada Freelancer About Me\"><img width=\"1916\" height=\"826\" alt=\"Avada Restaurant Introduction\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-About-Me.jpg\" class=\"img-responsive wp-image-872384\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-About-Me-200x86.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-About-Me-400x172.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-About-Me-600x259.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-About-Me-800x345.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-About-Me-1200x517.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-About-Me.jpg 1916w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-67\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This section was built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a> and two 1/2 (50% width) Columns, of which one contains a Background Image and collectively containing three Separator Elements, two <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, and an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-69{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-69 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Why Work With Me</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-27 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Why-Work-With-Me.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[4ed34f65752464160b3]\" data-title=\"Avada Freelancer Why Work With Me\" title=\"Avada Freelancer Why Work With Me\"><img width=\"1914\" height=\"982\" alt=\"Avada Freelancer Why Work With Me\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Why-Work-With-Me.jpg\" class=\"img-responsive wp-image-872386\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Why-Work-With-Me-200x103.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Why-Work-With-Me-400x205.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Why-Work-With-Me-600x308.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Why-Work-With-Me-800x410.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Why-Work-With-Me-1200x616.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Why-Work-With-Me.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-68\"><p>For this example, a Global <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with three 1/3 (33.33% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> is used. This is structured using seven Separator Elements, three <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Elements</a>, three <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, and three <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Elements</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-70{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-70 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Recent Work</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-28 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Recen-Work-Title.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[a8ccec23d0fc5079438]\" data-title=\"Avada Freelancer Recent Work Title\" title=\"Avada Freelancer Recent Work Title\"><img width=\"1914\" height=\"264\" alt=\"Avada Freelancer Recent Work Title\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Recen-Work-Title.jpg\" class=\"img-responsive wp-image-872388\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Recen-Work-Title-200x28.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Recen-Work-Title-400x55.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Recen-Work-Title-600x83.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Recen-Work-Title-800x110.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Recen-Work-Title-1200x166.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Recen-Work-Title.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-69\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 3/5 (60% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, using a Background Image, and one 2/5 (40% width) Column, using two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. Simply put, Nested Columns are columns within Columns. This Nested Columns Element is structured with one 1/5 (20% width) Column and one 2/5 (40% width) Column, holding two Separator Elements, two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-71{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-71 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Portfolio</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-29 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Portfolio.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[5f7af25f9b8cafafc09]\" data-title=\"Avada Freelancer Portfolio\" title=\"Avada Freelancer Portfolio\"><img width=\"1914\" height=\"2287\" alt=\"Avada Restaurant Reviews\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Portfolio.jpg\" class=\"img-responsive wp-image-872389\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Portfolio-200x239.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Portfolio-400x478.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Portfolio-600x717.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Portfolio-800x956.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Portfolio-1200x1434.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Portfolio.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-70\"><p>For this example, this section uses one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> with three <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>. This is followed by two 1/2 (50% width) Columns, of which one has a Background Image and a Separator Element, and the second Column with two Title elements, a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>, two Separator Elements, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, with another 1/1 (100% width) Column, using a Separator Element, to finish this section off.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-72{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-72 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">View All Work &#8211; Button</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-30 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Button.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[59e5733290d1efd82e4]\" data-title=\"Avada Freelancer Button\" title=\"Avada Freelancer Button\"><img width=\"1916\" height=\"138\" alt=\"Avada Freelancer Button\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Button.jpg\" class=\"img-responsive wp-image-872391\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Button-200x14.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Button-400x29.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Button-600x43.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Button-800x58.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Button-1200x86.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Button.jpg 1916w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-71\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/2 (50% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, each with a Background Image is used. This is structured using <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, and <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Elements</a>. This section is finished off with a 1/1 (100% width) Column with a Separator Element.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-73{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-73 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Testimonials</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-31 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Customers.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[378e5afb4322146b8e7]\" data-title=\"Avada Freelancer Customers\" title=\"Avada Freelancer Customers\"><img width=\"1915\" height=\"1016\" alt=\"Avada Freelancer Customers\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Customers.jpg\" class=\"img-responsive wp-image-872393\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Customers-200x106.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Customers-400x212.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Customers-600x318.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Customers-800x424.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Customers-1200x637.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Customers.jpg 1915w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-72\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, this section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image and one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> with a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-74{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-74 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Expert Design Advice</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-32 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Expert-Design-Advice-Title.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[00d310d26067944b347]\" data-title=\"Avada Freelancer Expert Design Advice Title\" title=\"Avada Freelancer Expert Design Advice Title\"><img width=\"1916\" height=\"278\" alt=\"Avada Restaurant News\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Expert-Design-Advice-Title.jpg\" class=\"img-responsive wp-image-872395\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Expert-Design-Advice-Title-200x29.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Expert-Design-Advice-Title-400x58.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Expert-Design-Advice-Title-600x87.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Expert-Design-Advice-Title-800x116.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Expert-Design-Advice-Title-1200x174.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Expert-Design-Advice-Title.jpg 1916w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-73\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, this section is made using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> and one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, containing three <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/blog-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Blog Element</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-75{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-75 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Blog</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-33 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Blog.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[b86a48ecca288e7b951]\" data-title=\"Avada Freelancer Blog\" title=\"Avada Freelancer Blog\"><img width=\"1914\" height=\"632\" alt=\"Avada Freelancer Blog\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Blog.jpg\" class=\"img-responsive wp-image-872396\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Blog-200x66.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Blog-400x132.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Blog-600x198.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Blog-800x264.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Blog-1200x396.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Blog.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-74\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, t</span><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">his section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 3/5 (60% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, using a Background Image, and one 2/5 (40% width) Column, using two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. Simply put, Nested Columns are columns within Columns. This Nested Columns Element is structured with one 1/5 (20% width) Column and one 2/5 (40% width) Column, holding two Separator Elements, two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-76{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-76 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Contact Form</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-34 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Lets-Work-Together.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[4e8c97fd453daab170f]\" data-title=\"Avada Freelancer Let&#8217;s Work Together\" title=\"Avada Freelancer Let&#8217;s Work Together\"><img width=\"1916\" height=\"958\" alt=\"Avada Freelancer Let&#039;s Work Together\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Lets-Work-Together.jpg\" class=\"img-responsive wp-image-872398\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Lets-Work-Together-200x100.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Lets-Work-Together-400x200.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Lets-Work-Together-600x300.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Lets-Work-Together-800x400.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Lets-Work-Together-1200x600.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Lets-Work-Together.jpg 1916w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-75\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with three 1/3 (33.33% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, collectively containing <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, and <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, followed by one 1/1 (100% width) Column with a Separator Element.</p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-10{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-10 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-10{width:100% !important;order : 0;}.fusion-builder-column-10 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-10{width:100% !important;order : 0;}.fusion-builder-column-10 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-11{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-12 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-11 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-77{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-77 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-76\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-20\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#7a89ab;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-77\"><p>For the <a href=\"https://avada.theme-fusion.com/freelancer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Freelancer</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-78{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-78 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-35 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[fac432650b8d2f6259b]\" data-title=\"Avada Freelancer Footer\" title=\"Avada Freelancer Footer\"><img width=\"1914\" height=\"380\" alt=\"Avada Freelancer Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Footer.jpg\" class=\"img-responsive wp-image-872401\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Footer-200x40.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Footer-400x79.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Footer-600x119.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Footer-800x159.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Footer-1200x238.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Footer.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-78\"><p>The Footer content is divided into two <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Containers</a>. The first Container has a Background Image with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, with an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a Social Links Element, with the use of <a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website information, in the second Container. You can check how this is structured on the backend by clicking this <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Freelancer-Global-Footer.jpg\">link</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-79{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-79 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-79\"><p>There are <span class=\"fusion-cs-live-demos\">86</span> <a href=\"https://bit.ly/389rOLS\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/389rOLS\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style>.fusion-button.button-6{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-6 .fusion-button-text,.fusion-button.button-6 i,.fusion-button.button-6:hover .fusion-button-text,.fusion-button.button-6:hover i,.fusion-button.button-6:focus .fusion-button-text,.fusion-button.button-6:focus i,.fusion-button.button-6:active .fusion-button-text,.fusion-button.button-6:active i{color:#ffffff;}.fusion-button.button-6:hover,.fusion-button.button-6:active,.fusion-button.button-6:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-6 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/389rOLS\"><span class=\"fusion-button-text\">Buy Avada Freelancer For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-11{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-11 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-11{width:100% !important;order : 0;}.fusion-builder-column-11 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-11{width:100% !important;order : 0;}.fusion-builder-column-11 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-12{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-freelancer-deconstructing-a-prebuilt-website/\">Avada Freelancer: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://theme-fusion.com/avada-freelancer-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:85:\"\n          \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Avada Information Technology: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://theme-fusion.com/avada-information-technology-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://theme-fusion.com/avada-information-technology-deconstructing-a-prebuilt-website/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Feb 2022 18:56:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Web Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=871668\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:664:\"<p>Say hello to Avada Information Technology. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Information Technology can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-information-technology-deconstructing-a-prebuilt-website/\">Avada Information Technology: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:133714:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-13 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-12 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-80\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/information-technology/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Information Technology</a>. This <a href=\"https://bit.ly/2WpeGjl\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Information Technology can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/information-technology/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Information Technology</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-finance-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Finance</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/2WpeGjl\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-8 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-7{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-7 .fusion-button-text,.fusion-button.button-7 i,.fusion-button.button-7:hover .fusion-button-text,.fusion-button.button-7:hover i,.fusion-button.button-7:focus .fusion-button-text,.fusion-button.button-7:focus i,.fusion-button.button-7:active .fusion-button-text,.fusion-button.button-7:active i{color:#ffffff;}.fusion-button.button-7:hover,.fusion-button.button-7:active,.fusion-button.button-7:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-7 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/information-technology/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-8{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-8 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-8{width:100% !important;order : 0;}.fusion-builder-nested-column-8 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-8{width:100% !important;order : 0;}.fusion-builder-nested-column-8 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-9 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-8{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-8 .fusion-button-text,.fusion-button.button-8 i,.fusion-button.button-8:hover .fusion-button-text,.fusion-button.button-8:hover i,.fusion-button.button-8:focus .fusion-button-text,.fusion-button.button-8:focus i,.fusion-button.button-8:active .fusion-button-text,.fusion-button.button-8:active i{color:#ffffff;}.fusion-button.button-8:hover,.fusion-button.button-8:active,.fusion-button.button-8:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-8 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/2WpeGjl\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-9{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-9 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-9{width:100% !important;order : 0;}.fusion-builder-nested-column-9 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-9{width:100% !important;order : 0;}.fusion-builder-nested-column-9 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-80{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-80 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-21\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-81{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-81 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-81\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-82{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-82 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-82\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-83{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-83 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-83\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/2WpeGjl\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-36 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-84\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-22\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-84{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-84 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-85\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-37 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-86\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/2WpeGjl\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-85{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-85 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-87\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-38 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"docs_generate_critical_css\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1327\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-874339\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x143.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x287.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x430.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x574.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x861.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-88\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-86{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-86 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-89\"><p>Even with all of the performance options provided, Avada plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://bit.ly/2WpeGjl\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-23\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-87{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-87 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#6239bd;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#6239bd\">#6239bd</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#74c5da;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#74c5da\">#74c5da</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#9aa2ac;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#9aa2ac\">#9aa2ac</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#6239bd;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#6239bd\">#6239bd</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#74c5da;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#74c5da\">#74c5da</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#9aa2ac;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#9aa2ac\">#9aa2ac</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#6239bd;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#6239bd\">#6239bd</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#74c5da;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#74c5da\">#74c5da</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#9aa2ac;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#9aa2ac\">#9aa2ac</div></div></div></div><div class=\"fusion-text fusion-text-90\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/information-technology/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Information Technology</a> prebuilt website is a Monochromatic grouping, as seen above. If you would like to change the Avada Information Technology color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-88{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-88 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-91\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/2WpeGjl\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/information-technology/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Information Technology</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-10 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-89{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-89 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-90{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-90 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: Teko; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Teko\" data-fusion-google-variant=\"400\">Teko</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-91{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-91 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3,H4 Font Family: <span style=\"font-family: Teko; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Teko\" data-fusion-google-variant=\"400\">Teko</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-92{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-92 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5, H6 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: Teko; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Teko\" data-fusion-google-variant=\"400\">Teko</span><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-10{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-10 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-10{width:100% !important;order : 0;}.fusion-builder-nested-column-10 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-10{width:100% !important;order : 0;}.fusion-builder-nested-column-10 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-11 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-93{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-93 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-94{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-94 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: Roboto; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Roboto\" data-fusion-google-variant=\"400\">Roboto</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-11{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-11 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-11{width:100% !important;order : 0;}.fusion-builder-nested-column-11 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-11{width:100% !important;order : 0;}.fusion-builder-nested-column-11 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-92\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-95{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-95 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-93\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-24\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">The <a href=\"https://bit.ly/2WpeGjl\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-96{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-96 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-94\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/information-technology/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Information Technology</a> prebuilt website as an example: <span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This prebuilt website was built without using any of the Avada bundled plugins.</span></p>\n<p>When an Avada prebuilt website is built without using bundled plugins, you can still install and activate any of them, should it be needed for your website. Any of the prebuilt websites can be modified to fit your project needs.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-97{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-97 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-95\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-25\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-envelope-open-text fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-register-for-avada-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Register for Avada support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comments fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/support/submit-a-ticket/\" target=\"_blank\" rel=\"noopener noreferrer\">Need to submit a support ticket?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cart-arrow-down fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/extending-and-renewing-envato-item-support/\" target=\"_blank\" rel=\"noopener noreferrer\">How to extend or renew support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-question fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/avada-grandfathered-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Are you eligible for Grandfathered support?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-columns fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-use-the-avada-support-desk/\" target=\"_blank\" rel=\"noopener noreferrer\">How to use the Avada support Dashboard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-alt fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Documentation</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-video fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://www.youtube.com/c/ThemeFusionVideos/videos\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Video Tutorials</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-98{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-98 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-96\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type.</p>\n<p><a href=\"https://bit.ly/2WpeGjl\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website.</p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-26\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">They are created to save you time when building a new website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A prebuilt website can be imported with a few clicks.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is mobile and SEO friendly.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">You can white-label any prebuilt website for client work.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Prebuilt websites are included with your <a href=\"https://bit.ly/2WpeGjl\" target=\"_blank\" rel=\"noopener noreferrer\">purchase </a>of the Avada Website Builder.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-99{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-99 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-97\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">86</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-39 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-12{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-12 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-12{width:100% !important;order : 0;}.fusion-builder-column-12 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-12{width:100% !important;order : 0;}.fusion-builder-column-12 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-13{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-14 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-13 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-100{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-100 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-98\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/information-technology/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Information Technology</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-27\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/information-technology/\" target=\"_blank\" rel=\"noopener noreferrer\">Home &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/information-technology/about/\" target=\"_blank\" rel=\"noopener noreferrer\">About &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/information-technology/solutions/\" target=\"_blank\" rel=\"noopener noreferrer\">Solutions &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/information-technology/insight/\" target=\"_blank\" rel=\"noopener noreferrer\">Insight &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/information-technology/get-started/\" target=\"_blank\" rel=\"noopener noreferrer\">Get Started &#8211; Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-13{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-13 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-13{width:100% !important;order : 0;}.fusion-builder-column-13 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-13{width:100% !important;order : 0;}.fusion-builder-column-13 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-14{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-15 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-14 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-101{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-101 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-99\"><p>Before we look at the specific Layouts on the Avada Information Technology prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-40 hover-type-none\"><img width=\"1050\" height=\"1050\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x200.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x400.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x600.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x800.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1050w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-102{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-102 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-100\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-103{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-103 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-101\"><p>The <a href=\"https://avada.theme-fusion.com/information-technology/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Information Technology</a> prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-41 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Live-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[1eabca107fac8231d15]\" data-title=\"Avada Information Technology Live Editing\" title=\"Avada Information Technology Live Editing\"><img width=\"1920\" height=\"935\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Live-Editing.jpg\" class=\"img-responsive wp-image-872342\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Live-Editing-200x97.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Live-Editing-400x195.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Live-Editing-600x292.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Live-Editing-800x390.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Live-Editing-1200x584.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Live-Editing.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-102\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-42 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[25552ca7f58f066432e]\" data-title=\"Avada Information Technology Backend Editing\" title=\"Avada Information Technology Backend Editing\"><img width=\"1903\" height=\"854\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Backend-Editing.jpg\" class=\"img-responsive wp-image-872343\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Backend-Editing-200x90.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Backend-Editing-400x180.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Backend-Editing-600x269.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Backend-Editing-800x359.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Backend-Editing-1200x539.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Backend-Editing.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-104{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-104 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-103\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-28\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-14{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-14 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-14{width:100% !important;order : 0;}.fusion-builder-column-14 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-14{width:100% !important;order : 0;}.fusion-builder-column-14 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-15{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-16 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-15 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-105{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-105 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-104\"><p>If you type the base-level domain name of any particular website into the browser, you will, by default, arrive on the website&#8217;s homepage. The homepage serves as a vital landing page for your visitors by capturing their attention and letting them know what the website is all about. There is the conjectured &#8220;5 Second Rule&#8221; for Web Usability and how it translates the user reaction when landing on the site for the first time into either a positive or negative experience.</p>\n<p>For well over a decade, the main focus for web designers was to showcase style over function for the most part. As time has passed, <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">above the fold</a> content delivery and the impact on <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a> has shifted the focus over to mobile vs. desktop speed and <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>.</p>\n<p>Each of the Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">Prebuilt Websites</a> are meticulously designed with the ideal balance between style and function, and we use the Avada <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> to provide improved results.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-106{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-106 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-105\"><p>For the <a href=\"https://avada.theme-fusion.com/information-technology/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Information Technology</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Global-Header.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-43 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[93a2556a8e74659bd25]\" data-title=\"Avada Information Technology Header\" title=\"Avada Information Technology Header\"><img width=\"1912\" height=\"102\" alt=\"Avada Information Technology Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Header.jpg\" class=\"img-responsive wp-image-872344\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Header-200x11.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Header-400x21.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Header-600x32.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Header-800x43.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Header-1200x64.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Header.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-107{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-107 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-106\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-29\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-15{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-15 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-15{width:100% !important;order : 0;}.fusion-builder-column-15 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-15{width:100% !important;order : 0;}.fusion-builder-column-15 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-16{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-17 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-16 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-108{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-108 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-44 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[8c9bbd339b4be51b978]\" data-title=\"Avada Information Technology Hero\" title=\"Avada Information Technology Hero\"><img width=\"1914\" height=\"820\" alt=\"Avada Information Technology Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Hero.jpg\" class=\"img-responsive wp-image-872345\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Hero-200x86.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Hero-400x171.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Hero-600x257.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Hero-800x343.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Hero-1200x514.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Hero.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-107\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. Added to the container are two 1/2 (50% width) Columns, with the left column holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, and the right column holding an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-109{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-109 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Clients</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-45 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Clients.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[00bc75a5f5ea6a7d7d0]\" data-title=\"Avada Information Technology Clients\" title=\"Avada Information Technology Clients\"><img width=\"1912\" height=\"210\" alt=\"Avada Information Technology Clients\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Clients.jpg\" class=\"img-responsive wp-image-872347\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Clients-200x22.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Clients-400x44.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Clients-600x66.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Clients-800x88.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Clients-1200x132.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Clients.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-108\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This section was built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>which is structured using an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-carousel-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Carousel Element</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-110{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-110 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">What We Do</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-46 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-What-We-Do.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[8c6bbdd662751068f08]\" data-title=\"Avada Information Technology What We Do\" title=\"Avada Information Technology What We Do\"><img width=\"1914\" height=\"898\" alt=\"Avada Information Technology What We Do\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-What-We-Do.jpg\" class=\"img-responsive wp-image-872348\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-What-We-Do-200x94.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-What-We-Do-400x188.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-What-We-Do-600x282.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-What-We-Do-800x375.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-What-We-Do-1200x563.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-What-We-Do.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-109\"><p>For this example, a Global <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image and two 1/2 (50% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> is used. This is structured using a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/checklist-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Checklist Element</a> and <a href=\"https://theme-fusion.com/documentation/avada/elements/content-boxes-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Content Boxes Elemen</a>t.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-111{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-111 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Scalable Technology</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-47 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Scalable-Technology.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[0d65e4a25b1fcd9818d]\" data-title=\"Avada Information Technology Scalable Technology\" title=\"Avada Information Technology Scalable Technology\"><img width=\"1910\" height=\"980\" alt=\"Avada Information Technology Scalable Technology\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Scalable-Technology.jpg\" class=\"img-responsive wp-image-872350\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Scalable-Technology-200x103.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Scalable-Technology-400x205.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Scalable-Technology-600x308.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Scalable-Technology-800x410.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Scalable-Technology-1200x616.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Scalable-Technology.jpg 1910w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-110\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image, holding two 1/2 (50% width) Columns. These Columns are structured using a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/content-boxes-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Content Boxes Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, and an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-112{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-112 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Latest Insight</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-48 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Recent-Post.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[e93d1853ab53a905198]\" data-title=\"Avada Information Technology Recent Post\" title=\"Avada Information Technology Recent Post\"><img width=\"1916\" height=\"738\" alt=\"Avada Information Technology Recent Post\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Recent-Post.jpg\" class=\"img-responsive wp-image-872352\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Recent-Post-200x77.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Recent-Post-400x154.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Recent-Post-600x231.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Recent-Post-800x308.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Recent-Post-1200x462.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Recent-Post.jpg 1916w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-111\"><p>For this example, this section uses a Container with a Background Image. Here you will find one 1/3 (33.33% width) Column, holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, followed by one 2/3 (66.67% width) Column, holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/blog-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Blog Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-113{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-113 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Testimonials</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-49 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Testimonials.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[47a25d465b6fc221d2c]\" data-title=\"Avada Information Technology Testimonials\" title=\"Avada Information Technology Testimonials\"><img width=\"1912\" height=\"594\" alt=\"Avada Information Technology Testimonials\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Testimonials.jpg\" class=\"img-responsive wp-image-872353\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Testimonials-200x62.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Testimonials-400x124.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Testimonials-600x186.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Testimonials-800x249.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Testimonials-1200x373.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Testimonials.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-112\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with three 1/3 (33.33% width) Columns, each containing an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-114{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-114 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Visual CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-50 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Visual-CTA.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[13dfc0068d9a29d7530]\" data-title=\"Avada Information Technology Visual CTA\" title=\"Avada Information Technology Visual CTA\"><img width=\"1916\" height=\"420\" alt=\"Avada Restaurant Image Banner\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Visual-CTA.jpg\" class=\"img-responsive wp-image-872355\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Visual-CTA-200x44.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Visual-CTA-400x88.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Visual-CTA-600x132.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Visual-CTA-800x175.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Visual-CTA-1200x263.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Visual-CTA.jpg 1916w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-113\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, this section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image with one 2/3 (66.67% width) Column and one 1/3 (33.33% width) Column, collectively containing two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>. </span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-16{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-16 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-16{width:100% !important;order : 0;}.fusion-builder-column-16 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-16{width:100% !important;order : 0;}.fusion-builder-column-16 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-17{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-18 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-17 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-115{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-115 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-114\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-30\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#6239bd;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-115\"><p>For the <a href=\"https://avada.theme-fusion.com/information-technology/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Information Technology</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-116{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-116 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-51 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[01ade7726607f59b0eb]\" data-title=\"Avada Information Technology Footer\" title=\"Avada Information Technology Footer\"><img width=\"1918\" height=\"272\" alt=\"Avada Information Technology Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Footer.jpg\" class=\"img-responsive wp-image-872358\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Footer-200x28.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Footer-400x57.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Footer-600x85.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Footer-800x113.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Footer-1200x170.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Footer.jpg 1918w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-116\"><p>The Footer content is divided into two <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Containers</a>. The first Container has two Columns holding an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/menu-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Menu Element</a>, with the use of <a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website information, in the second Container. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Information-Technology-Global-Footer.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-117{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-117 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-117\"><p>There are <span class=\"fusion-cs-live-demos\">86</span> <a href=\"https://bit.ly/2WpeGjl\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/2WpeGjl\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style>.fusion-button.button-9{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-9 .fusion-button-text,.fusion-button.button-9 i,.fusion-button.button-9:hover .fusion-button-text,.fusion-button.button-9:hover i,.fusion-button.button-9:focus .fusion-button-text,.fusion-button.button-9:focus i,.fusion-button.button-9:active .fusion-button-text,.fusion-button.button-9:active i{color:#ffffff;}.fusion-button.button-9:hover,.fusion-button.button-9:active,.fusion-button.button-9:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-9 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/2WpeGjl\"><span class=\"fusion-button-text\">Buy Avada Information Technology For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-17{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-17 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-17{width:100% !important;order : 0;}.fusion-builder-column-17 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-17{width:100% !important;order : 0;}.fusion-builder-column-17 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-18{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-information-technology-deconstructing-a-prebuilt-website/\">Avada Information Technology: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://theme-fusion.com/avada-information-technology-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:85:\"\n         \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Avada Finance: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://theme-fusion.com/avada-finance-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://theme-fusion.com/avada-finance-deconstructing-a-prebuilt-website/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Feb 2022 14:08:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Web Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=871661\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:619:\"<p>Say hello to Avada Finance. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Finance can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-finance-deconstructing-a-prebuilt-website/\">Avada Finance: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:137146:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-19 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-18 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-118\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/finance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Finance</a>. This <a href=\"https://bit.ly/38eeIwM\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Finance can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/finance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Finance</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-university-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada University</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/38eeIwM\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-12 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-10{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-10 .fusion-button-text,.fusion-button.button-10 i,.fusion-button.button-10:hover .fusion-button-text,.fusion-button.button-10:hover i,.fusion-button.button-10:focus .fusion-button-text,.fusion-button.button-10:focus i,.fusion-button.button-10:active .fusion-button-text,.fusion-button.button-10:active i{color:#ffffff;}.fusion-button.button-10:hover,.fusion-button.button-10:active,.fusion-button.button-10:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-10 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/finance/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-12{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-12 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-12{width:100% !important;order : 0;}.fusion-builder-nested-column-12 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-12{width:100% !important;order : 0;}.fusion-builder-nested-column-12 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-13 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-11{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-11 .fusion-button-text,.fusion-button.button-11 i,.fusion-button.button-11:hover .fusion-button-text,.fusion-button.button-11:hover i,.fusion-button.button-11:focus .fusion-button-text,.fusion-button.button-11:focus i,.fusion-button.button-11:active .fusion-button-text,.fusion-button.button-11:active i{color:#ffffff;}.fusion-button.button-11:hover,.fusion-button.button-11:active,.fusion-button.button-11:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-11 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/38eeIwM\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-13{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-13 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-13{width:100% !important;order : 0;}.fusion-builder-nested-column-13 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-13{width:100% !important;order : 0;}.fusion-builder-nested-column-13 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-118{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-118 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-31\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-119{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-119 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-119\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-120{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-120 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-120\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-121{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-121 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-121\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/3kOMxfw\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-52 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-122\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-32\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-122{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-122 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-123\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-53 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-124\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/38eeIwM\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-123{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-123 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-125\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-54 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"docs_generate_critical_css\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1327\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-874339\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x143.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x287.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x430.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x574.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x861.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-126\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-124{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-124 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-127\"><p>Even with all of the performance options provided, Avada plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://bit.ly/38eeIwM\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-33\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-125{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-125 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#213d65;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#213d65\">#213d65</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#1cd6c3;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#1cd6c3\">#1cd6c3</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#000000;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#000000\">#000000</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#213d65;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#213d65\">#213d65</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#1cd6c3;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#1cd6c3\">#1cd6c3</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#000000;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#000000\">#000000</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#213d65;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#213d65\">#213d65</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#1cd6c3;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#1cd6c3\">#1cd6c3</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#000000;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#000000\">#000000</div></div></div></div><div class=\"fusion-text fusion-text-128\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/finance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Finance</a> prebuilt website is a Monochromatic grouping, as seen above. If you would like to change the Avada Finance color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-126{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-126 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-129\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/3kOMxfw\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/finance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Finance</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-14 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-127{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-127 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-128{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-128 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: \'Frank Ruhl Libre\'; font-weight: 300;\" data-fusion-font=\"true\" data-fusion-google-font=\"Frank Ruhl Libre\" data-fusion-google-variant=\"300\">Frank Ruhl Libre</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-129{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-129 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3,H4 Font Family: <span style=\"font-family: \'Frank Ruhl Libre\'; font-weight: 300;\" data-fusion-font=\"true\" data-fusion-google-font=\"Frank Ruhl Libre\" data-fusion-google-variant=\"300\">Frank Ruhl Libre</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-130{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-130 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5, H6 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: \'Frank Ruhl Libre\'; font-weight: 300;\" data-fusion-font=\"true\" data-fusion-google-font=\"Frank Ruhl Libre\" data-fusion-google-variant=\"300\">Frank Ruhl Libre</span><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-14{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-14 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-14{width:100% !important;order : 0;}.fusion-builder-nested-column-14 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-14{width:100% !important;order : 0;}.fusion-builder-nested-column-14 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-15 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-131{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-131 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-132{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-132 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: Roboto; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Roboto\" data-fusion-google-variant=\"400\">Roboto</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-15{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-15 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-15{width:100% !important;order : 0;}.fusion-builder-nested-column-15 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-15{width:100% !important;order : 0;}.fusion-builder-nested-column-15 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-130\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-133{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-133 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-131\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-34\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">The <a href=\"https://bit.ly/38eeIwM\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-134{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-134 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-132\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/finance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Finance</a> prebuilt website as an example: <span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This prebuilt website was built without using any of the Avada bundled plugins.</span></p>\n<p>When an Avada prebuilt website is built without using bundled plugins, you can still install and activate any of them, should it be needed for your website. Any Avada prebuilt website can be modified to fit your project needs.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-135{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-135 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-133\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-35\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-envelope-open-text fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-register-for-avada-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Register for Avada support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comments fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/support/submit-a-ticket/\" target=\"_blank\" rel=\"noopener noreferrer\">Need to submit a support ticket?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cart-arrow-down fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/extending-and-renewing-envato-item-support/\" target=\"_blank\" rel=\"noopener noreferrer\">How to extend or renew support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-question fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/avada-grandfathered-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Are you eligible for Grandfathered support?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-columns fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-use-the-avada-support-desk/\" target=\"_blank\" rel=\"noopener noreferrer\">How to use the Avada support Dashboard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-alt fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Documentation</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-video fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://www.youtube.com/c/ThemeFusionVideos/videos\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Video Tutorials</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-136{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-136 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-134\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type.</p>\n<p><a href=\"https://bit.ly/38eeIwM\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website.</p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-36\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">They are created to save you time when building a new website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A prebuilt website can be imported with a few clicks.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is mobile and SEO friendly.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">You can white-label any prebuilt website for client work.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Prebuilt websites are included with your <a href=\"https://bit.ly/3kOMxfw\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-137{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-137 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-135\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">86</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-55 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-18{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-18 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-18{width:100% !important;order : 0;}.fusion-builder-column-18 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-18{width:100% !important;order : 0;}.fusion-builder-column-18 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-19{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-20 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-19 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-138{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-138 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-136\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/finance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Finance</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-37\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/finance/about/\" target=\"_blank\" rel=\"noopener noreferrer\">About Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/finance/services/\" target=\"_blank\" rel=\"noopener noreferrer\">Services Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/finance/services/small-business-loans/\" target=\"_blank\" rel=\"noopener noreferrer\">Services &#8211; Small Business Loans Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/finance/services/credit-rating-advice/\" target=\"_blank\" rel=\"noopener noreferrer\">Services &#8211; Credit Rating Advice Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/finance/services/crowd-funding/\" target=\"_blank\" rel=\"noopener noreferrer\">Services &#8211; Crowd Funding Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/finance/packages/\" target=\"_blank\" rel=\"noopener noreferrer\">Packages Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/finance/insight/\" target=\"_blank\" rel=\"noopener noreferrer\">Insight Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/finance/contact/\" target=\"_blank\" rel=\"noopener noreferrer\">Contact &#8211; Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-19{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-19 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-19{width:100% !important;order : 0;}.fusion-builder-column-19 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-19{width:100% !important;order : 0;}.fusion-builder-column-19 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-20{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-21 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-20 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-139{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-139 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-137\"><p>Before we look at the specific Layouts on the Avada Finance <span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</span></p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-56 hover-type-none\"><img width=\"1050\" height=\"1050\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x200.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x400.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x600.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x800.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1050w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-140{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-140 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-138\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-141{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-141 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-139\"><p>The <a href=\"https://avada.theme-fusion.com/finance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Finance</a> prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-57 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Live-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2c5e931a87946821cde]\" data-title=\"Avada Finance Live Editing\" title=\"Avada Finance Live Editing\"><img width=\"1918\" height=\"936\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Live-Editing.jpg\" class=\"img-responsive wp-image-872288\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Live-Editing-200x98.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Live-Editing-400x195.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Live-Editing-600x293.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Live-Editing-800x390.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Live-Editing-1200x586.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Live-Editing.jpg 1918w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-140\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-58 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[978f68c9d9698cc36b7]\" data-title=\"Avada Finance Backend Editing\" title=\"Avada Finance Backend Editing\"><img width=\"1902\" height=\"819\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Backend-Editing.jpg\" class=\"img-responsive wp-image-872289\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Backend-Editing-200x86.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Backend-Editing-400x172.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Backend-Editing-600x258.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Backend-Editing-800x344.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Backend-Editing-1200x517.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Backend-Editing.jpg 1902w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-142{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-142 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-141\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-38\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-20{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-20 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-20{width:100% !important;order : 0;}.fusion-builder-column-20 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-20{width:100% !important;order : 0;}.fusion-builder-column-20 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-21{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-22 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-21 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-143{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-143 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-142\"><p>If you type the base-level domain name of any particular website into the browser, you will, by default, arrive on the website&#8217;s homepage. The homepage serves as a vital landing page for your visitors by capturing their attention and letting them know what the website is all about. There is the conjectured &#8220;5 Second Rule&#8221; for Web Usability and how it translates the user reaction when landing on the site for the first time into either a positive or negative experience.</p>\n<p>For well over a decade, the main focus for web designers was to showcase style over function for the most part. As time has passed, <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">above the fold</a> content delivery and the impact on <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a> has shifted the focus over to mobile vs. desktop speed and <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>.</p>\n<p>Each of the Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">Prebuilt Websites</a> are meticulously designed with the ideal balance between style and function, and we use the Avada <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> to provide improved results.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-144{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-144 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-143\"><p>For the <a href=\"https://avada.theme-fusion.com/finance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Finance</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Global-Header.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-59 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2450728b467f612bc16]\" data-title=\"Avada Finance Header\" title=\"Avada Finance Header\"><img width=\"1909\" height=\"92\" alt=\"Avada Finance Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Header.jpg\" class=\"img-responsive wp-image-872290\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Header-200x10.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Header-400x19.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Header-600x29.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Header-800x39.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Header-1200x58.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Header.jpg 1909w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-145{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-145 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-144\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-39\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-21{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-21 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-21{width:100% !important;order : 0;}.fusion-builder-column-21 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-21{width:100% !important;order : 0;}.fusion-builder-column-21 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-22{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-23 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-22 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-146{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-146 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-60 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[8db79d871a09e2c8c8d]\" data-title=\"Avada Finance Hero\" title=\"Avada Finance Hero\"><img width=\"1914\" height=\"776\" alt=\"Avada Finance Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Hero.jpg\" class=\"img-responsive wp-image-872291\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Hero-200x81.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Hero-400x162.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Hero-600x243.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Hero-800x324.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Hero-1200x487.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Hero.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-145\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. It is structured using one 1/1 (100% width) Column holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-147{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-147 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Client Logos</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-61 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Logos.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[072b68e94f06460bc74]\" data-title=\"Avada Finance Client Logos\" title=\"Avada Finance Client Logos\"><img width=\"1912\" height=\"146\" alt=\"Avada Finance Client Logos\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Logos.jpg\" class=\"img-responsive wp-image-872293\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Logos-200x15.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Logos-400x31.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Logos-600x46.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Logos-800x61.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Logos-1200x92.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Logos.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-146\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This section was built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. Simply put, Nested Columns are columns within columns. This Nested Columns Element is structured with six 1/6 (16.67% width) Columns, each containing an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-148{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-148 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Introduction</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-62 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Introduction.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[7f9edaba8bbde5140f7]\" data-title=\"Avada Finance Introduction\" title=\"Avada Finance Introduction\"><img width=\"1912\" height=\"722\" alt=\"Avada Finance Introduction\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Introduction.jpg\" class=\"img-responsive wp-image-872295\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Introduction-200x76.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Introduction-400x151.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Introduction-600x227.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Introduction-800x302.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Introduction-1200x453.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Introduction.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-147\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/2 (50% width) Columns, collectively containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, and an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-149{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-149 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Services</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-63 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Services.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[80561318163f22b1a88]\" data-title=\"Avada Finance Services\" title=\"Avada Finance Services\"><img width=\"1910\" height=\"872\" alt=\"Avada Finance Services\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Services.jpg\" class=\"img-responsive wp-image-872297\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Services-200x91.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Services-400x183.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Services-600x274.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Services-800x365.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Services-1200x548.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Services.jpg 1910w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-148\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/1 (100% width) Columns, collectively containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/content-boxes-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Content Boxes Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-150{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-150 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Investment Numbers</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-64 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-FInance-Investment-Numbers.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[9873c2fce9b88329e95]\" data-title=\"Avada Finance Investment Numbers\" title=\"Avada Finance Investment Numbers\"><img width=\"1912\" height=\"668\" alt=\"Avada Finance Investment Numbers\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-FInance-Investment-Numbers.jpg\" class=\"img-responsive wp-image-872299\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-FInance-Investment-Numbers-200x70.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-FInance-Investment-Numbers-400x140.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-FInance-Investment-Numbers-600x210.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-FInance-Investment-Numbers-800x279.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-FInance-Investment-Numbers-1200x419.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-FInance-Investment-Numbers.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-149\"><p>For this example, this section uses a Container and one 1/3 (33.33% width) Column holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, and one 2/3 (66.67% width) Column holding two <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Elements</a>. These Nested Columns Elements are structured with two 1/2 (50% width) Columns containing a Counter Boxes Element, in each column.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-151{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-151 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Client Feedback Title</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-65 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Feedback-Title.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[3e033a021d3c20a0577]\" data-title=\"Avada Finance Client Feedback Title\" title=\"Avada Finance Client Feedback Title\"><img width=\"1916\" height=\"320\" alt=\"Avada Finance Client Feedback Title\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Feedback-Title.jpg\" class=\"img-responsive wp-image-872301\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Feedback-Title-200x33.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Feedback-Title-400x67.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Feedback-Title-600x100.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Feedback-Title-800x134.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Feedback-Title-1200x200.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Client-Feedback-Title.jpg 1916w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-150\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 2/3 (66.67% width) Column, containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, is used.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-152{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-152 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Testimonials</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-66 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Testimonials.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[bcec188e1468de8c714]\" data-title=\"Avada Finance Testimonials\" title=\"Avada Finance Testimonials\"><img width=\"1912\" height=\"568\" alt=\"Avada Finance Testimonials\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Testimonials.jpg\" class=\"img-responsive wp-image-872303\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Testimonials-200x59.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Testimonials-400x119.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Testimonials-600x178.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Testimonials-800x238.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Testimonials-1200x356.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Testimonials.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-151\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, this section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with four 1/4 (25% width) Columns, each containing an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, three <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, and three <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-153{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-153 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Visual CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-67 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Visual-CTA.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[c80355d53ccf29c0f91]\" data-title=\"Avada Finance Visual CTA\" title=\"Avada Finance Visual CTA\"><img width=\"1912\" height=\"546\" alt=\"Avada Finance Visual CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Visual-CTA.jpg\" class=\"img-responsive wp-image-872306\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Visual-CTA-200x57.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Visual-CTA-400x114.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Visual-CTA-600x171.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Visual-CTA-800x228.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Visual-CTA-1200x343.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Visual-CTA.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-152\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, this section is made using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image and one 2/3 (66.67% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, holding two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</span></p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-22{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-22 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-22{width:100% !important;order : 0;}.fusion-builder-column-22 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-22{width:100% !important;order : 0;}.fusion-builder-column-22 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-23{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-24 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-23 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-154{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-154 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-153\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-40\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#213d65;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-154\"><p>For the <a href=\"https://avada.theme-fusion.com/finance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Finance</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-155{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-155 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-68 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[b9906a5c05c2054c74c]\" data-title=\"Avada Finance Footer\" title=\"Avada Finance Footer\"><img width=\"1916\" height=\"490\" alt=\"Avada Finance Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Footer.jpg\" class=\"img-responsive wp-image-872309\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Footer-200x51.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Footer-400x102.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Footer-600x153.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Footer-800x205.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Footer-1200x307.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Footer.jpg 1916w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-155\"><p>The Footer content is divided into two <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Containers</a>. The first Container has a Background Color with four 1/4 (25% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, collectively holding an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, three <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/widget-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Widget Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/menu-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Menu Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/checklist-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Checklist Element</a>, and two 1/2 (50% width) Columns, holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/social-links-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Social Links Element</a>, with the use of <a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website information, in the second Container. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Finance-Global-Footer.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-156{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-156 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-156\"><p>There are <span class=\"fusion-cs-live-demos\">86</span> <a href=\"https://bit.ly/38eeIwM\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/38eeIwM\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style>.fusion-button.button-12{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-12 .fusion-button-text,.fusion-button.button-12 i,.fusion-button.button-12:hover .fusion-button-text,.fusion-button.button-12:hover i,.fusion-button.button-12:focus .fusion-button-text,.fusion-button.button-12:focus i,.fusion-button.button-12:active .fusion-button-text,.fusion-button.button-12:active i{color:#ffffff;}.fusion-button.button-12:hover,.fusion-button.button-12:active,.fusion-button.button-12:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-12 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/38eeIwM\"><span class=\"fusion-button-text\">Buy Avada Finance For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-23{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-23 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-23{width:100% !important;order : 0;}.fusion-builder-column-23 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-23{width:100% !important;order : 0;}.fusion-builder-column-23 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-24{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-finance-deconstructing-a-prebuilt-website/\">Avada Finance: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://theme-fusion.com/avada-finance-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:85:\"\n               \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Avada University: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://theme-fusion.com/avada-university-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://theme-fusion.com/avada-university-deconstructing-a-prebuilt-website/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jan 2022 10:32:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:15:\"Website Builder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=871660\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:631:\"<p>Say hello to Avada University. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada University can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-university-deconstructing-a-prebuilt-website/\">Avada University: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:137822:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-25 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-24 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-157\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/university/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada University</a>. This <a href=\"https://bit.ly/3sJeasc\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada University can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/university/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada University</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-taxi-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Taxi</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/3sJeasc\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-16 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-13{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-13 .fusion-button-text,.fusion-button.button-13 i,.fusion-button.button-13:hover .fusion-button-text,.fusion-button.button-13:hover i,.fusion-button.button-13:focus .fusion-button-text,.fusion-button.button-13:focus i,.fusion-button.button-13:active .fusion-button-text,.fusion-button.button-13:active i{color:#ffffff;}.fusion-button.button-13:hover,.fusion-button.button-13:active,.fusion-button.button-13:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-13 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/university/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-16{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-16 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-16{width:100% !important;order : 0;}.fusion-builder-nested-column-16 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-16{width:100% !important;order : 0;}.fusion-builder-nested-column-16 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-17 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-14{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-14 .fusion-button-text,.fusion-button.button-14 i,.fusion-button.button-14:hover .fusion-button-text,.fusion-button.button-14:hover i,.fusion-button.button-14:focus .fusion-button-text,.fusion-button.button-14:focus i,.fusion-button.button-14:active .fusion-button-text,.fusion-button.button-14:active i{color:#ffffff;}.fusion-button.button-14:hover,.fusion-button.button-14:active,.fusion-button.button-14:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-14 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3sJeasc\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-17{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-17 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-17{width:100% !important;order : 0;}.fusion-builder-nested-column-17 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-17{width:100% !important;order : 0;}.fusion-builder-nested-column-17 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-157{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-157 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-41\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-158{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-158 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-158\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-159{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-159 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-159\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-160{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-160 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-160\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/3sJeasc\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-69 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-161\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-42\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-161{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-161 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-162\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-70 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-163\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/3sJeasc\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-162{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-162 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-164\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-71 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"docs_generate_critical_css\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1327\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-874339\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x143.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x287.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x430.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x574.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x861.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-165\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-163{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-163 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-166\"><p>Even with all of the performance options provided, Avada plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://bit.ly/3sJeasc\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-43\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-164{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-164 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#f09a3e;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f09a3e\">#f09a3e</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#00bcd4;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#00bcd4\">#00bcd4</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#333333;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#333333\">#333333</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#f09a3e;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f09a3e\">#f09a3e</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#00bcd4;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#00bcd4\">#00bcd4</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#333333;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#333333\">#333333</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#f09a3e;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f09a3e\">#f09a3e</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#00bcd4;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#00bcd4\">#00bcd4</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#333333;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#333333\">#333333</div></div></div></div><div class=\"fusion-text fusion-text-167\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/university/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada University</a> prebuilt website is a Monochromatic grouping, as seen above. If you would like to change the Avada University color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-165{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-165 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-168\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/3kOMxfw\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/university/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada University</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-18 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-166{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-166 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-167{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-167 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: \'Bebas Neue\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Bebas Neue\" data-fusion-google-variant=\"400\">Bebas Neue</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-168{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-168 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3,H4 Font Family: <span style=\"font-family: \'Bebas Neue\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Bebas Neue\" data-fusion-google-variant=\"400\">Bebas Neue</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-169{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-169 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: \'Bebas Neue\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Bebas Neue\" data-fusion-google-variant=\"400\">Bebas Neue</span><br />\n</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-170{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-170 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H6 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: \'Work Sans\'; font-weight: 500;\" data-fusion-font=\"true\" data-fusion-google-font=\"Work Sans\" data-fusion-google-variant=\"500\">Work Sans</span><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-18{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-18 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-18{width:100% !important;order : 0;}.fusion-builder-nested-column-18 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-18{width:100% !important;order : 0;}.fusion-builder-nested-column-18 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-19 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-171{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-171 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-172{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-172 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: Lora; font-weight: 500;\" data-fusion-font=\"true\" data-fusion-google-font=\"Lora\" data-fusion-google-variant=\"500\">Lora</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-19{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-19 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-19{width:100% !important;order : 0;}.fusion-builder-nested-column-19 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-19{width:100% !important;order : 0;}.fusion-builder-nested-column-19 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-169\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-173{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-173 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-170\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-44\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">The <a href=\"https://bit.ly/3sJeasc\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-174{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-174 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-171\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/university/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada University</a> prebuilt website as an example: <span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">It is created using The Events Calendar Plugin.</span></p>\n<p><a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/the-events-calendar/\" target=\"_blank\" rel=\"noopener noreferrer\">The Events Calendar</a> is a plugin designed to create and manage events on your website with ease. The Events Calendar is 100% design integrated with the Avada WordPress Website Builder.</p>\n</div><div class=\"fusion-fss-plugins-used\"><div class=\"fusion-fss-plugins-wrapper\" style=\"flex-direction:row;margin:-7.5px;\"><div class=\"fusion-fss-plugin-wrapper\" style=\"margin:7.5px;flex-basis: calc(50% - 15px);justify-content:flex-start;padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em;background-color:#F2F7F8;border-radius:7px;font-size:1.2em;color:#333333;\"><div class=\"fusion-fss-plugin\"><span class=\"fusion-fss-plugin-icon\"><svg width=\"80\" height=\"100\" viewBox=\"0 0 80 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0)\"><path d=\"M43.0271 64.4074C39.8465 65.6977 36.9029 66.3938 34.7628 66.2785C31.9907 66.124 30.8071 64.9013 30.8029 64.4416C30.8007 64.1142 31.8341 63.0886 35.0247 62.8566C35.525 62.821 36.0531 62.7982 36.5968 62.7982C38.7768 62.7982 41.203 63.1569 43.0271 64.4074ZM48.9769 92.519C37.3142 95.7359 24.9897 92.7688 17.5745 84.9536C12.3271 79.4236 10.5677 72.503 12.7463 65.9667C17.1289 52.8159 38.1327 44.9224 51.5561 44.9224C51.7006 44.9224 51.8444 44.9231 51.9867 44.9252C56.9886 44.9893 60.4524 46.1985 61.0268 48.0824C61.3484 49.1364 60.5876 50.9818 58.9913 53.0173C56.1744 56.6093 51.8942 59.8646 47.5407 62.2524C44.7807 59.2241 40.3532 57.8462 34.6909 58.254C28.3874 58.7116 26.1654 61.7705 26.1882 64.4807C26.2131 67.4357 29.0784 70.585 34.5066 70.8867C37.7918 71.0661 41.7183 70.054 45.6611 68.3289C46.2397 70.5992 46.0604 73.5777 45.1138 77.1291C44.7857 78.3596 45.5173 79.625 46.7486 79.9531C47.9784 80.2812 49.2438 79.5496 49.5726 78.3176C50.8594 73.4923 50.9547 69.4448 49.863 66.2294C55.0107 63.3406 59.7692 59.5031 62.6224 55.8655C65.2998 52.4515 66.2478 49.3798 65.4415 46.7351C64.8557 44.8149 63.4764 43.2919 61.3983 42.2115C61.557 24.8716 64.6308 12.8943 67.3979 12.878H67.415C67.8214 12.878 68.3715 12.9691 69.0455 13.6388C71.2938 15.8735 73.9726 23.2098 73.9726 45.4711C73.9726 67.4364 72.0923 86.1378 48.9769 92.519ZM26.9597 41.2877C26.9568 41.2301 26.9639 41.1731 26.9568 41.1148C26.9469 41.0315 26.9369 40.9433 26.9262 40.8579C26.5946 36.1229 27.1625 32.3914 28.6066 30.3901C29.324 29.3966 30.2235 28.8642 31.4384 28.7148C33.1323 28.5105 34.5101 28.9475 35.6674 30.0592C37.9085 32.2135 39.2166 36.8716 39.0921 41.9674C35.2496 42.9154 31.3153 44.2655 27.5774 46.0035C27.2828 44.3495 27.0792 42.7738 26.9597 41.2877ZM46.8382 33.2476C47.688 32.3231 48.7719 31.8733 50.1548 31.8733C52.3525 31.8733 53.3076 32.5921 53.8357 33.133C55.0983 34.4262 55.7787 36.9342 55.8719 40.5867C54.6898 40.423 53.4151 40.3276 52.0458 40.3106C51.8899 40.3084 51.7348 40.3077 51.5775 40.3077C49.4943 40.3077 47.224 40.4885 44.854 40.833C44.7515 37.4858 45.4511 34.7586 46.8382 33.2476ZM72.2994 10.3657C70.9152 8.98923 69.2256 8.26258 67.4107 8.26258H67.3702C61.2901 8.29888 59.1927 17.3702 58.1429 24.1905C57.8355 26.1918 57.5978 28.2344 57.4127 30.2115C57.3223 30.1104 57.2334 30.0058 57.1387 29.909C55.4221 28.1504 53.0721 27.2586 50.1548 27.2586C47.4838 27.2586 45.1615 28.2493 43.4392 30.1254C42.9481 30.6606 42.526 31.2805 42.1446 31.9452C41.3838 29.9432 40.3198 28.1305 38.8658 26.732C36.705 24.6559 33.9443 23.7571 30.8755 24.1343C28.4023 24.4382 26.3234 25.6666 24.8637 27.6892C24.858 27.6985 24.853 27.7084 24.8466 27.7163C22.3179 15.1049 17.5104 -0.123418 9.12227 0.747707C7.05833 0.964776 5.23423 2.07574 3.84855 3.95891C-2.62226 12.7556 0.41387 38.9135 3.22723 52.9824C3.44715 54.0792 4.41008 54.8386 5.4876 54.8386C5.63777 54.8386 5.79007 54.8236 5.94309 54.793C7.19213 54.5432 8.00276 53.3276 7.75295 52.0779C3.04148 28.5205 4.09266 11.4154 7.56648 6.69398C8.38281 5.58444 9.12084 5.38801 9.60551 5.33748C14.2359 4.85566 19.9402 21.0341 22.3478 41.4536C22.5407 43.9822 22.9236 46.3501 23.293 48.1905C23.2944 48.1991 23.2987 48.2069 23.3001 48.2154C16.366 52.2124 10.6439 57.6775 8.36786 64.5077C5.63208 72.713 7.7679 81.3239 14.2266 88.1306C20.5323 94.7751 29.8357 98.4083 39.6017 98.4083C43.1153 98.4083 46.6902 97.9371 50.2046 96.9671C76.4173 89.7319 78.588 68.4798 78.588 45.4711C78.588 25.7854 76.5896 14.6309 72.2994 10.3657Z\" fill=\"#0F1031\"/></g><defs><clipPath id=\"clip0\"><rect width=\"79.3105\" height=\"100\" fill=\"white\"/></clipPath></defs></svg></span><span class=\"fusion-fss-plugin-text\">The Events Calendar</span></div></div></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-175{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-175 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-172\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-45\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-envelope-open-text fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-register-for-avada-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Register for Avada support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comments fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/support/submit-a-ticket/\" target=\"_blank\" rel=\"noopener noreferrer\">Need to submit a support ticket?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cart-arrow-down fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/extending-and-renewing-envato-item-support/\" target=\"_blank\" rel=\"noopener noreferrer\">How to extend or renew support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-question fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/avada-grandfathered-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Are you eligible for Grandfathered support?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-columns fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-use-the-avada-support-desk/\" target=\"_blank\" rel=\"noopener noreferrer\">How to use the Avada support Dashboard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-alt fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Documentation</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-video fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://www.youtube.com/c/ThemeFusionVideos/videos\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Video Tutorials</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-176{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-176 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-173\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type.</p>\n<p><a href=\"https://bit.ly/3sJeasc\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website.</p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-46\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">They are created to save you time when building a new website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A prebuilt website can be imported with a few clicks.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is mobile and SEO friendly.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">You can white-label any prebuilt website for client work.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Prebuilt websites are included with your <a href=\"https://bit.ly/3sJeasc\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-177{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-177 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-174\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">86</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-72 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-24{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-24 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-24{width:100% !important;order : 0;}.fusion-builder-column-24 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-24{width:100% !important;order : 0;}.fusion-builder-column-24 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-25{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-26 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-25 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-178{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-178 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-175\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/university/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada University</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-47\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/university/\" target=\"_blank\" rel=\"noopener noreferrer\">Home Page &#8211; Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/university/about-us/\" target=\"_blank\" rel=\"noopener noreferrer\">About &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/university/courses/\" target=\"_blank\" rel=\"noopener noreferrer\">Courses &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/university/events/\" target=\"_blank\" rel=\"noopener noreferrer\">Events &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/university/facilities/\" target=\"_blank\" rel=\"noopener noreferrer\">Facilities &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/university/latest-news/\" target=\"_blank\" rel=\"noopener noreferrer\">News &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/restaurant/our-seasonal-menu/\" target=\"_blank\" rel=\"noopener noreferrer\">Admissions &#8211; Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-25{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-25 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-25{width:100% !important;order : 0;}.fusion-builder-column-25 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-25{width:100% !important;order : 0;}.fusion-builder-column-25 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-26{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-27 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-26 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-179{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-179 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-176\"><p>Before we look at the specific Layouts on the Avada University prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-73 hover-type-none\"><img width=\"1050\" height=\"1050\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x200.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x400.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x600.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x800.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1050w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-180{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-180 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-177\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-181{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-181 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-178\"><p>The <a href=\"https://avada.theme-fusion.com/university/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada University</a> prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-74 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Live-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[1cd9042a97315450f52]\" data-title=\"Avada University Live Editing\" title=\"Avada University Live Editing\"><img width=\"1920\" height=\"935\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Live-Editing.jpg\" class=\"img-responsive wp-image-872270\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Live-Editing-200x97.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Live-Editing-400x195.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Live-Editing-600x292.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Live-Editing-800x390.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Live-Editing-1200x584.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Live-Editing.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-179\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-75 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[7dda9ccfed50a25b70b]\" data-title=\"Avada University Backend Editing\" title=\"Avada University Backend Editing\"><img width=\"1905\" height=\"857\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Backend-Editing.jpg\" class=\"img-responsive wp-image-872271\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Backend-Editing-200x90.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Backend-Editing-400x180.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Backend-Editing-600x270.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Backend-Editing-800x360.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Backend-Editing-1200x540.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Backend-Editing.jpg 1905w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-182{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-182 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-180\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-48\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-26{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-26 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-26{width:100% !important;order : 0;}.fusion-builder-column-26 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-26{width:100% !important;order : 0;}.fusion-builder-column-26 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-27{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-28 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-27 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-183{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-183 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-181\"><p>If you type the base-level domain name of any particular website into the browser, you will, by default, arrive on the website&#8217;s homepage. The homepage serves as a vital landing page for your visitors by capturing their attention and letting them know what the website is all about. There is the conjectured &#8220;5 Second Rule&#8221; for Web Usability and how it translates the user reaction when landing on the site for the first time into either a positive or negative experience.</p>\n<p>For well over a decade, the main focus for web designers was to showcase style over function for the most part. As time has passed, <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">above the fold</a> content delivery and the impact on <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a> has shifted the focus over to mobile vs. desktop speed and <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>.</p>\n<p>Each of the Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">Prebuilt Websites</a> are meticulously designed with the ideal balance between style and function, and we use the Avada <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> to provide improved results.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-184{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-184 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-182\"><p>For the <a href=\"https://avada.theme-fusion.com/university/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada University</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Global-Header.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-76 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[5e65fb88618570e6038]\" data-title=\"Avada University Header\" title=\"Avada University Header\"><img width=\"1916\" height=\"172\" alt=\"Avada University Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Header.jpg\" class=\"img-responsive wp-image-872272\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Header-200x18.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Header-400x36.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Header-600x54.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Header-800x72.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Header-1200x108.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Header.jpg 1916w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-185{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-185 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-183\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-49\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-27{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-27 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-27{width:100% !important;order : 0;}.fusion-builder-column-27 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-27{width:100% !important;order : 0;}.fusion-builder-column-27 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-28{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-29 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-28 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-186{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-186 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-77 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[920cf895e83c1e6c896]\" data-title=\"Avada University Hero\" title=\"Avada University Hero\"><img width=\"1899\" height=\"803\" alt=\"Avada University Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Hero.jpg\" class=\"img-responsive wp-image-876975\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Hero-200x85.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Hero-400x169.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Hero-600x254.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Hero-800x338.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Hero-1200x507.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Hero.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-184\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. Added to the container is one 1/1 (100% width) Column containing two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>, and two <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Elements</a>.</p>\n<p>Simply put, Nested Columns are columns within columns. This Nested Columns Element consists of one 1/1 (100% width) Column, holding two Button Elements.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-187{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-187 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Introduction</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-78 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Introduction.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[bd18beb67fe06cf3475]\" data-title=\"Avada University Introduction\" title=\"Avada University Introduction\"><img width=\"1912\" height=\"1006\" alt=\"Avada Restaurant Introduction\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Introduction.jpg\" class=\"img-responsive wp-image-872274\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Introduction-200x105.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Introduction-400x210.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Introduction-600x316.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Introduction-800x421.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Introduction-1200x631.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Introduction.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-185\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This section was built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/6 (16.67% width) Columns on either side of a 2/3 (66.67% width) Column, containing an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>. This is followed by one 3/5 (60% width) Column holding a Title Element and a Text Box Element, and one 2/5 (40% width) Column holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/vimeo-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Vimeo Element</a>. This section is finished off with another container holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/section-separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Section Separator Element</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-188{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-188 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">World Class Facilities</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-79 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-World-Class-Facilities.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[11fb8ee79a4846fda0c]\" data-title=\"Avada University World Class Facilities\" title=\"Avada University World Class Facilities\"><img width=\"1914\" height=\"572\" alt=\"Avada University World Class Facilities\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-World-Class-Facilities.jpg\" class=\"img-responsive wp-image-872275\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-World-Class-Facilities-200x60.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-World-Class-Facilities-400x120.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-World-Class-Facilities-600x179.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-World-Class-Facilities-800x239.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-World-Class-Facilities-1200x359.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-World-Class-Facilities.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-186\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/2 (50% width) Columns are used. Collectively they contain two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/toggles-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Toggles Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/checklist-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Checklist Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-189{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-189 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">More Information</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-80 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-More-Information.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[40b306ec8267ba03d2f]\" data-title=\"Avada University More Information\" title=\"Avada University More Information\"><img width=\"1914\" height=\"742\" alt=\"Avada University More Information\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-More-Information.jpg\" class=\"img-responsive wp-image-872277\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-More-Information-200x78.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-More-Information-400x155.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-More-Information-600x233.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-More-Information-800x310.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-More-Information-1200x465.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-More-Information.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-187\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with three 1/3 (33.33% width) Columns, each containing a Background Image, three <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-190{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-190 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">News</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-81 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-News.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[69e89d3a02a785decea]\" data-title=\"Avada University News\" title=\"Avada University News\"><img width=\"1914\" height=\"962\" alt=\"Avada University News\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-News.jpg\" class=\"img-responsive wp-image-872279\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-News-200x101.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-News-400x201.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-News-600x302.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-News-800x402.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-News-1200x603.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-News.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-188\"><p>This section was built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/6 (16.67% width) Columns on either side of a 2/3 (66.67% width) Column, containing an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>. This is followed by one 1/1 (100% width) Column holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/blog-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Blog Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-191{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-191 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Application Form</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-82 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Application-Form.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2fa4728d9f863e4882e]\" data-title=\"Avada University Application Form\" title=\"Avada University Application Form\"><img width=\"1916\" height=\"402\" alt=\"Avada University Application Form\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Application-Form.jpg\" class=\"img-responsive wp-image-872281\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Application-Form-200x42.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Application-Form-400x84.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Application-Form-600x126.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Application-Form-800x168.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Application-Form-1200x252.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Application-Form.jpg 1916w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-189\"><p>For this example, a Global <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, with a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Element</a>.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-form-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Builder</a> is used to design and build this form. The Form Builder is very flexible and allows you to create many types of forms that you can use on your <a href=\"https://bit.ly/3sJeasc\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. For any form that you create, you can add them to a page or post as a single instance or you can set the form to display <a href=\"https://theme-fusion.com/documentation/avada/forms/avada-forms-global-options/\" target=\"_blank\" rel=\"noopener noreferrer\">globally</a> across the website, which then allows you to manage one form. If a form is showing on all pages, for example, and you edit the form, the same changes show across all form instances.</p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-28{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-28 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-28{width:100% !important;order : 0;}.fusion-builder-column-28 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-28{width:100% !important;order : 0;}.fusion-builder-column-28 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-29{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-30 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-29 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-192{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-192 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-190\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-50\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#f09a3e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-191\"><p>For the <a href=\"https://avada.theme-fusion.com/university/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada University</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-193{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-193 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-83 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[d0ffb1b94e0d6d23eb3]\" data-title=\"Avada University Footer\" title=\"Avada University Footer\"><img width=\"1914\" height=\"686\" alt=\"Avada University Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Footer.jpg\" class=\"img-responsive wp-image-872284\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Footer-200x72.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Footer-400x143.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Footer-600x215.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Footer-800x287.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Footer-1200x430.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Footer.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-192\"><p>The Footer content is divided into two <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Containers</a>. The first Container has a Background Image with several <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, with <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/widget-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Widget Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/checklist-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Checklist Elements</a>, and <a href=\"https://theme-fusion.com/documentation/avada/elements/menu-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Menu Elements</a>, with the use of <a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website information, in the second Container. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-University-Global-Footer.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-194{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-194 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-193\"><p>There are <span class=\"fusion-cs-live-demos\">86</span> <a href=\"https://bit.ly/3sJeasc\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/3sJeasc\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style>.fusion-button.button-15{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-15 .fusion-button-text,.fusion-button.button-15 i,.fusion-button.button-15:hover .fusion-button-text,.fusion-button.button-15:hover i,.fusion-button.button-15:focus .fusion-button-text,.fusion-button.button-15:focus i,.fusion-button.button-15:active .fusion-button-text,.fusion-button.button-15:active i{color:#ffffff;}.fusion-button.button-15:hover,.fusion-button.button-15:active,.fusion-button.button-15:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-15 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3sJeasc\"><span class=\"fusion-button-text\">Buy Avada University For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-29{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-29 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-29{width:100% !important;order : 0;}.fusion-builder-column-29 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-29{width:100% !important;order : 0;}.fusion-builder-column-29 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-30{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-university-deconstructing-a-prebuilt-website/\">Avada University: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://theme-fusion.com/avada-university-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:85:\"\n             \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Avada Taxi: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://theme-fusion.com/avada-taxi-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://theme-fusion.com/avada-taxi-deconstructing-a-prebuilt-website/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jan 2022 18:51:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Web Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=869387\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:607:\"<p>Say hello to Avada Taxi. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Taxi can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-taxi-deconstructing-a-prebuilt-website/\">Avada Taxi: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:129331:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-31 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-30 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-194\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/taxi/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Taxi</a>. This <a href=\"https://bit.ly/3eJuUd1\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Taxi can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/taxi/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Taxi</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-driving-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Driving School</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/3eJuUd1\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-20 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-16{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-16 .fusion-button-text,.fusion-button.button-16 i,.fusion-button.button-16:hover .fusion-button-text,.fusion-button.button-16:hover i,.fusion-button.button-16:focus .fusion-button-text,.fusion-button.button-16:focus i,.fusion-button.button-16:active .fusion-button-text,.fusion-button.button-16:active i{color:#ffffff;}.fusion-button.button-16:hover,.fusion-button.button-16:active,.fusion-button.button-16:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-16 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/taxi/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-20{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-20 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-20{width:100% !important;order : 0;}.fusion-builder-nested-column-20 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-20{width:100% !important;order : 0;}.fusion-builder-nested-column-20 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-21 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-17{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-17 .fusion-button-text,.fusion-button.button-17 i,.fusion-button.button-17:hover .fusion-button-text,.fusion-button.button-17:hover i,.fusion-button.button-17:focus .fusion-button-text,.fusion-button.button-17:focus i,.fusion-button.button-17:active .fusion-button-text,.fusion-button.button-17:active i{color:#ffffff;}.fusion-button.button-17:hover,.fusion-button.button-17:active,.fusion-button.button-17:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-17 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3eJuUd1\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-21{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-21 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-21{width:100% !important;order : 0;}.fusion-builder-nested-column-21 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-21{width:100% !important;order : 0;}.fusion-builder-nested-column-21 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-195{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-195 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-51\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-196{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-196 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-195\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-197{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-197 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-196\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-198{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-198 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-197\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/3eJuUd1\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-84 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-198\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-52\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-199{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-199 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-199\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-85 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-200\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/3eJuUd1\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-200{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-200 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-201\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-86 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"docs_generate_critical_css\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1327\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-874339\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x143.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x287.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x430.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x574.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x861.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-202\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-201{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-201 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-203\"><p>Even with all of the performance options provided, Avada plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://bit.ly/3eJuUd1\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-53\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-202{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-202 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#feba12;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#feba12\">#feba12</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#000000;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#000000\">#000000</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#ff9800;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ff9800\">#ff9800</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#feba12;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#feba12\">#feba12</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#000000;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#000000\">#000000</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ff9800;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ff9800\">#ff9800</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#feba12;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#feba12\">#feba12</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#000000;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#000000\">#000000</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ff9800;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ff9800\">#ff9800</div></div></div></div><div class=\"fusion-text fusion-text-204\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/taxi/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Taxi</a> prebuilt website is a warm grouping, as seen above. If you would like to change the Avada Taxi color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-203{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-203 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-205\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/3eJuUd1\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a><a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\"> </a>website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/taxi/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Taxi</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-22 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-204{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-204 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-205{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-205 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: Poppins; font-weight: 600;\" data-fusion-font=\"true\" data-fusion-google-font=\"Poppins\" data-fusion-google-variant=\"600\">Poppins</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-206{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-206 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3,H4 Font Family: <span style=\"font-family: Poppins; font-weight: 600;\" data-fusion-font=\"true\" data-fusion-google-font=\"Poppins\" data-fusion-google-variant=\"600\">Poppins</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-207{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-207 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5, H6 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: Poppins; font-weight: 600;\" data-fusion-font=\"true\" data-fusion-google-font=\"Poppins\" data-fusion-google-variant=\"600\">Poppins</span><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-22{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-22 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-22{width:100% !important;order : 0;}.fusion-builder-nested-column-22 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-22{width:100% !important;order : 0;}.fusion-builder-nested-column-22 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-23 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-208{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-208 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-209{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-209 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: Roboto; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Roboto\" data-fusion-google-variant=\"400\">Roboto</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-23{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-23 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-23{width:100% !important;order : 0;}.fusion-builder-nested-column-23 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-23{width:100% !important;order : 0;}.fusion-builder-nested-column-23 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-206\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-210{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-210 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-207\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-54\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">The <a href=\"https://bit.ly/3eJuUd1\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-211{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-211 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-208\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/taxi/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Taxi</a> prebuilt website as an example: This prebuilt website was built without using any of the Avada bundled plugins.</p>\n<p>When an Avada prebuilt website is built without using bundled plugins, you can still install and activate any of them, should it be needed for your website. Any Avada prebuilt website can be modified to fit your project needs.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-212{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-212 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-209\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-55\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-envelope-open-text fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-register-for-avada-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Register for Avada support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comments fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/support/submit-a-ticket/\" target=\"_blank\" rel=\"noopener noreferrer\">Need to submit a support ticket?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cart-arrow-down fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/extending-and-renewing-envato-item-support/\" target=\"_blank\" rel=\"noopener noreferrer\">How to extend or renew support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-question fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/avada-grandfathered-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Are you eligible for Grandfathered support?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-columns fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-use-the-avada-support-desk/\" target=\"_blank\" rel=\"noopener noreferrer\">How to use the Avada support Dashboard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-alt fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Documentation</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-video fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://www.youtube.com/c/ThemeFusionVideos/videos\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Video Tutorials</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-213{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-213 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-210\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type. </p>\n<p><a href=\"https://bit.ly/3eJuUd1\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website. </p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-56\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">They are created to save you time when building a new website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A prebuilt website can be imported with a few clicks.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is mobile and SEO friendly.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">You can white-label any prebuilt website for client work.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Prebuilt websites are included with your <a href=\"https://bit.ly/3eJuUd1\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-214{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-214 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-211\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">86</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-87 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-30{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-30 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-30{width:100% !important;order : 0;}.fusion-builder-column-30 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-30{width:100% !important;order : 0;}.fusion-builder-column-30 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-31{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-32 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-31 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-215{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-215 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-212\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/taxi/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Taxi</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-57\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/taxi/\" target=\"_blank\" rel=\"noopener noreferrer\">Home Page &#8211; Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/taxi/pricing/\" target=\"_blank\" rel=\"noopener noreferrer\">Pricing &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/taxi/app/\" target=\"_blank\" rel=\"noopener noreferrer\">APP &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/taxi/news/\" target=\"_blank\" rel=\"noopener noreferrer\">News &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/taxi/contact-us/\" target=\"_blank\" rel=\"noopener noreferrer\">Contact Us &#8211; Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-31{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-31 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-31{width:100% !important;order : 0;}.fusion-builder-column-31 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-31{width:100% !important;order : 0;}.fusion-builder-column-31 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-32{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-33 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-32 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-216{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-216 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-213\"><p>Before we look at the specific Layouts on the Avada Taxi prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-88 hover-type-none\"><img width=\"1050\" height=\"1050\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x200.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x400.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x600.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x800.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1050w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-217{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-217 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-214\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-218{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-218 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-215\"><p>The <a href=\"https://avada.theme-fusion.com/taxi/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Taxi</a><a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\"> </a>prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-89 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Live-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[524b84e178169d179da]\" data-title=\"Avada Taxi Live Editing\" title=\"Avada Taxi Live Editing\"><img width=\"1920\" height=\"931\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Live-Editing.jpg\" class=\"img-responsive wp-image-869902\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Live-Editing-200x97.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Live-Editing-400x194.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Live-Editing-600x291.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Live-Editing-800x388.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Live-Editing-1200x582.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Live-Editing.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-216\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-90 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[3f716db46825dc959a6]\" data-title=\"Avada Taxi Backend Editing\" title=\"Avada Taxi Backend Editing\"><img width=\"1903\" height=\"792\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Backend-Editing.jpg\" class=\"img-responsive wp-image-869903\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Backend-Editing-200x83.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Backend-Editing-400x166.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Backend-Editing-600x250.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Backend-Editing-800x333.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Backend-Editing-1200x499.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Backend-Editing.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-219{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-219 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-217\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-58\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-32{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-32 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-32{width:100% !important;order : 0;}.fusion-builder-column-32 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-32{width:100% !important;order : 0;}.fusion-builder-column-32 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-33{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-34 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-33 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-220{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-220 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-218\"><p>If you type the base-level domain name of any particular website into the browser, you will, by default, arrive on the website&#8217;s homepage. The homepage serves as a vital landing page for your visitors by capturing their attention and letting them know what the website is all about. There is the conjectured &#8220;5 Second Rule&#8221; for Web Usability and how it translates the user reaction when landing on the site for the first time into either a positive or negative experience.</p>\n<p>For well over a decade, the main focus for web designers was to showcase style over function for the most part. As time has passed, <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">above the fold</a> content delivery and the impact on <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a> has shifted the focus over to mobile vs. desktop speed and <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>.</p>\n<p>Each of the Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">Prebuilt Websites</a> are meticulously designed with the ideal balance between style and function, and we use the Avada <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> to provide improved results.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-221{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-221 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-219\"><p>For the <a href=\"https://avada.theme-fusion.com/taxi/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Taxi</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Global-Header.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-91 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[efe01456f047742dc67]\" data-title=\"Avada Taxi Header\" title=\"Avada Taxi Header\"><img width=\"1900\" height=\"124\" alt=\"Avada Taxi Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Header.jpg\" class=\"img-responsive wp-image-869905\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Header-200x13.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Header-400x26.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Header-600x39.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Header-800x52.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Header-1200x78.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Header.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-222{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-222 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-220\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-59\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-33{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-33 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-33{width:100% !important;order : 0;}.fusion-builder-column-33 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-33{width:100% !important;order : 0;}.fusion-builder-column-33 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-34{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-35 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-34 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-223{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-223 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-92 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[ba5c432e07c4987ef75]\" data-title=\"Avada Taxi Hero\" title=\"Avada Taxi Hero\"><img width=\"1897\" height=\"875\" alt=\"Avada Taxi Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Hero.jpg\" class=\"img-responsive wp-image-869906\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Hero-200x92.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Hero-400x185.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Hero-600x277.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Hero-800x369.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Hero-1200x554.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Hero.jpg 1897w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-221\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. Added to the container are two 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> using two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns</a> Element. Simply put, Nested Columns are Columns within Columns. This is structured using one 1/3 (33.33% width) Column with a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a> and one 2/3 (66.67% width) Column, with the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Forms Element</a>.</p>\n<p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">The </span><a style=\"background-color: rgba(255, 255, 255, 0); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\" href=\"https://avada.theme-fusion.com/website-builder-features/avada-form-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Builder</a><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\"> is used to design and build this callback form. The Form Builder is very flexible and allows you to create many types of forms that you can use on your Avada website. For any form that you create, you can add them to a page or post as a single instance or you can set the form to display </span><a style=\"background-color: rgba(255, 255, 255, 0); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\" href=\"https://theme-fusion.com/documentation/avada/forms/avada-forms-global-options/\" target=\"_blank\" rel=\"noopener noreferrer\">globally </a><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">across the website, which then allows you to manage one form. If a form is showing on all pages, for example, and you edit the form, the same changes show across all form instances.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-224{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-224 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Ride Type &amp; Costs</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-93 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Ride-Type-Costs.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[272138b13ef3716f849]\" data-title=\"Avada Taxi Ride Type &#038; Costs\" title=\"Avada Taxi Ride Type &#038; Costs\"><img width=\"1894\" height=\"648\" alt=\"Avada Taxi Ride Type &amp; Cost\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Ride-Type-Costs.jpg\" class=\"img-responsive wp-image-869910\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Ride-Type-Costs-200x68.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Ride-Type-Costs-400x137.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Ride-Type-Costs-600x205.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Ride-Type-Costs-800x274.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Ride-Type-Costs-1200x411.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Ride-Type-Costs.jpg 1894w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-222\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This section was built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>and three 1/3 (33.33% width) Columns, each containing an <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, three <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, and two <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-225{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-225 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Company Statistics</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-94 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Company-Statistics.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[6b512bd478d1693309e]\" data-title=\"Avada Taxi Company Statistics\" title=\"Avada Taxi Company Statistics\"><img width=\"1899\" height=\"326\" alt=\"Avada Taxi Company Statistics\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Company-Statistics.jpg\" class=\"img-responsive wp-image-869913\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Company-Statistics-200x34.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Company-Statistics-400x69.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Company-Statistics-600x103.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Company-Statistics-800x137.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Company-Statistics-1200x206.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Company-Statistics.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-223\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image and three 1/3 (33.33% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, each containing two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-226{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-226 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Get the App &#8211; CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-95 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Get-The-App-CTA.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[081a71ed93e9c54d466]\" data-title=\"Avada Taxi Get The App &#8211; CTA\" title=\"Avada Taxi Get The App &#8211; CTA\"><img width=\"1899\" height=\"450\" alt=\"Avada Mechanic More Information\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Get-The-App-CTA.jpg\" class=\"img-responsive wp-image-869915\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Get-The-App-CTA-200x47.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Get-The-App-CTA-400x95.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Get-The-App-CTA-600x142.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Get-The-App-CTA-800x190.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Get-The-App-CTA-1200x284.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Get-The-App-CTA.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-224\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with four 1/2 (50% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, with the first two each containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>, and the last two an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-227{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-227 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Recent Articles</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-96 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Recent-Articles.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[942f092d83dc4d0b659]\" data-title=\"Avada Taxi Recent Articles\" title=\"Avada Taxi Recent Articles\"><img width=\"1897\" height=\"838\" alt=\"Avada Recent Articles\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Recent-Articles.jpg\" class=\"img-responsive wp-image-869917\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Recent-Articles-200x88.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Recent-Articles-400x177.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Recent-Articles-600x265.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Recent-Articles-800x353.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Recent-Articles-1200x530.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Recent-Articles.jpg 1897w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-225\"><p>For this example, this section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a> and two 1/2 (50% width) Columns, each containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/blog-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Blog Element</a>, finishing the section off with another 1/1 (100% width) Column with a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-34{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-34 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-34{width:100% !important;order : 0;}.fusion-builder-column-34 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-34{width:100% !important;order : 0;}.fusion-builder-column-34 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-35{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-36 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-35 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-228{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-228 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-226\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-60\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#feba12;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-227\"><p>For the Avada Taxi prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-229{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-229 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-97 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[429bd51b38c36f95f1d]\" data-title=\"Avada Taxi Footer\" title=\"Avada Taxi Footer\"><img width=\"1899\" height=\"899\" alt=\"Avada Mechanic Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Footer.jpg\" class=\"img-responsive wp-image-869920\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Footer-200x95.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Footer-400x189.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Footer-600x284.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Footer-800x379.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Footer-1200x568.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Footer.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-228\"><p>The Footer content is structured in a single <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image and multiple <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, with the use of <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/social-links-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Social Links Elements</a>, and<span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\"> the use of </span><a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"background-color: rgba(255, 255, 255, 0); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">Dynamic Data Options</a><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\"> to display the website information. You can check how this is structured on the backend by clicking this </span><span style=\"background-color: rgba(255, 255, 255, 0); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Taxi-Global-Footer.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a></span><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-230{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-230 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-229\"><p>There are <span class=\"fusion-cs-live-demos\">86</span> <a href=\"https://bit.ly/3eJuUd1\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/3eJuUd1\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style>.fusion-button.button-18{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-18 .fusion-button-text,.fusion-button.button-18 i,.fusion-button.button-18:hover .fusion-button-text,.fusion-button.button-18:hover i,.fusion-button.button-18:focus .fusion-button-text,.fusion-button.button-18:focus i,.fusion-button.button-18:active .fusion-button-text,.fusion-button.button-18:active i{color:#ffffff;}.fusion-button.button-18:hover,.fusion-button.button-18:active,.fusion-button.button-18:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-18 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3eJuUd1\"><span class=\"fusion-button-text\">Buy Avada Taxi For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-35{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-35 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-35{width:100% !important;order : 0;}.fusion-builder-column-35 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-35{width:100% !important;order : 0;}.fusion-builder-column-35 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-36{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-taxi-deconstructing-a-prebuilt-website/\">Avada Taxi: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://theme-fusion.com/avada-taxi-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:85:\"\n            \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Avada Driving: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://theme-fusion.com/avada-driving-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://theme-fusion.com/avada-driving-deconstructing-a-prebuilt-website/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Jan 2022 18:16:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Web Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=870518\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:614:\"<p>Say hello to Avada Driving School. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Driving School can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-driving-deconstructing-a-prebuilt-website/\">Avada Driving: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:143195:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-37 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-36 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-text fusion-text-230\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/driving/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Driving School</a>. This <a href=\"https://bit.ly/2TyRgXA\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Driving School can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/driving/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Driving School</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-fitness-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Fitness</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/2TyRgXA\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-24 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-19{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-19 .fusion-button-text,.fusion-button.button-19 i,.fusion-button.button-19:hover .fusion-button-text,.fusion-button.button-19:hover i,.fusion-button.button-19:focus .fusion-button-text,.fusion-button.button-19:focus i,.fusion-button.button-19:active .fusion-button-text,.fusion-button.button-19:active i{color:#ffffff;}.fusion-button.button-19:hover,.fusion-button.button-19:active,.fusion-button.button-19:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-19 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/driving/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-24{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-24 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-24{width:100% !important;order : 0;}.fusion-builder-nested-column-24 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-24{width:100% !important;order : 0;}.fusion-builder-nested-column-24 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-25 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-20{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-20 .fusion-button-text,.fusion-button.button-20 i,.fusion-button.button-20:hover .fusion-button-text,.fusion-button.button-20:hover i,.fusion-button.button-20:focus .fusion-button-text,.fusion-button.button-20:focus i,.fusion-button.button-20:active .fusion-button-text,.fusion-button.button-20:active i{color:#ffffff;}.fusion-button.button-20:hover,.fusion-button.button-20:active,.fusion-button.button-20:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-20 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/2TyRgXA\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-25{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-25 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-25{width:100% !important;order : 0;}.fusion-builder-nested-column-25 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-25{width:100% !important;order : 0;}.fusion-builder-nested-column-25 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-231{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-231 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-61\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-232{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-232 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-231\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-233{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-233 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-232\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-234{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-234 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-233\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/2TyRgXA\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-98 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-234\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-62\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-235{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-235 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-235\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-99 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-236\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/2TyRgXA\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-236{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-236 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-237\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-100 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"docs_generate_critical_css\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1327\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-874339\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x143.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x287.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x430.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x574.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x861.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-238\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-237{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-237 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-239\"><p>Even with all of the performance options provided, <a href=\"https://bit.ly/2TyRgXA\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://bit.ly/2TyRgXA\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-63\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-238{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-238 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#7abc64;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#7abc64\">#7abc64</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#929aa3;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#929aa3\">#929aa3</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#ffffff;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#7abc64;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#7abc64\">#7abc64</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#929aa3;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#929aa3\">#929aa3</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffffff;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#7abc64;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#7abc64\">#7abc64</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#929aa3;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#929aa3\">#929aa3</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffffff;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-text fusion-text-240\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/driving/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Driving School</a> prebuilt website is a set of pastel colors with soft tones, as seen above. If you would like to change the Avada Driving School color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-239{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-239 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-241\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/2TyRgXA\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/driving/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Driving School</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-26 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-240{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-240 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-241{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-241 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: Mulish; font-weight: 700;\" data-fusion-font=\"true\" data-fusion-google-font=\"Mulish\" data-fusion-google-variant=\"700\">Mulish</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-242{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-242 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3, H4 Font Family: <span style=\"font-family: Mulish; font-weight: 700;\" data-fusion-font=\"true\" data-fusion-google-font=\"Mulish\" data-fusion-google-variant=\"700\">Mulish</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-243{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-243 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5, H6 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: Heebo; font-weight: 700;\" data-fusion-font=\"true\" data-fusion-google-font=\"Heebo\" data-fusion-google-variant=\"700\">Mulish</span><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-26{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-26 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-26{width:100% !important;order : 0;}.fusion-builder-nested-column-26 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-26{width:100% !important;order : 0;}.fusion-builder-nested-column-26 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-27 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-244{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-244 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-245{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-245 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: Mulish; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Mulish\" data-fusion-google-variant=\"400\">Mulish</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-27{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-27 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-27{width:100% !important;order : 0;}.fusion-builder-nested-column-27 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-27{width:100% !important;order : 0;}.fusion-builder-nested-column-27 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-242\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-246{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-246 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-243\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-64\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>The <a href=\"https://bit.ly/2TyRgXA\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-247{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-247 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-244\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/driving/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Driving School</a> prebuilt website as an example: This prebuilt website was built without using any of the Avada bundled plugins.</p>\n<p>When an Avada prebuilt website is built without using bundled plugins, you can still install and activate any of them, should it be needed for your website. Any Avada prebuilt website can be modified to fit your project needs.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-248{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-248 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-245\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-65\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-249{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-249 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-246\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type.</p>\n<p><a href=\"https://bit.ly/2TyRgXA\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website.</p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-66\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">They are created to save you time when building a new website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A prebuilt website can be imported with a few clicks.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is mobile and SEO friendly.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">You can white-label any prebuilt website for client work.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Prebuilt websites are included with your <a href=\"https://bit.ly/3twTt1P\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-250{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-250 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-247\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">86</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-101 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-36{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-36 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-36{width:100% !important;order : 0;}.fusion-builder-column-36 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-36{width:100% !important;order : 0;}.fusion-builder-column-36 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-37{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-38 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-bottom: 0px;margin-top: 0px;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-37 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last\" style=\"margin-top:0px;margin-bottom:0px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-blend-mode: overlay;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-248\"></div><div class=\"fusion-clearfix\"></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-39 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-38 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-251{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-251 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-249\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/driving/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Driving School</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-67\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/driving/\" target=\"_blank\" rel=\"noopener noreferrer\">Homepage Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/driving/about/\" target=\"_blank\" rel=\"noopener noreferrer\">About Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/driving/prices/\" target=\"_blank\" rel=\"noopener noreferrer\">Prices Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/driving/courses/\" target=\"_blank\" rel=\"noopener noreferrer\">Courses Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/driving/courses/intensive-driving-course/\" target=\"_blank\" rel=\"noopener noreferrer\">Courses &gt; Intensive Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/driving/courses/pass-plus/\" target=\"_blank\" rel=\"noopener noreferrer\">Courses &gt; Poss Plus Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/driving/courses/instructor/\" target=\"_blank\" rel=\"noopener noreferrer\">Courses &gt; Instructor Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/driving/locations/\" target=\"_blank\" rel=\"noopener noreferrer\">Locations Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/driving/blog/\" target=\"_blank\" rel=\"noopener noreferrer\">Blog Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-38{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-38 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-38{width:100% !important;order : 0;}.fusion-builder-column-38 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-38{width:100% !important;order : 0;}.fusion-builder-column-38 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-39{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-40 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-39 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-252{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-252 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-250\"><p>Before we look at the specific Layouts on the Avada Driving School prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-102 hover-type-none\"><img width=\"1050\" height=\"1050\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x200.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x400.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x600.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x800.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1050w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-253{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-253 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-251\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-254{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-254 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-252\"><p>The <a href=\"https://avada.theme-fusion.com/driving/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Driving School</a> prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-103 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Live-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[931c673ab7665a7d0dc]\" data-title=\"Avada Driving School Live Editing\" title=\"Avada Driving School Live Editing\"><img width=\"1920\" height=\"934\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Live-Editing.jpg\" class=\"img-responsive wp-image-870824\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Live-Editing-200x97.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Live-Editing-400x195.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Live-Editing-600x292.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Live-Editing-800x389.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Live-Editing-1200x584.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Live-Editing.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-253\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-104 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[b22b26dd4d3a47f30c7]\" data-title=\"Avada Driving School Backend Editing\" title=\"Avada Driving School Backend Editing\"><img width=\"1903\" height=\"819\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Backend-Editing.jpg\" class=\"img-responsive wp-image-870825\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Backend-Editing-200x86.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Backend-Editing-400x172.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Backend-Editing-600x258.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Backend-Editing-800x344.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Backend-Editing-1200x516.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Backend-Editing.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-255{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-255 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-254\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-68\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-39{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-39 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-39{width:100% !important;order : 0;}.fusion-builder-column-39 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-39{width:100% !important;order : 0;}.fusion-builder-column-39 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-40{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-41 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-40 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-256{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-256 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-255\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-257{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-257 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-256\"><p>For the <a href=\"https://avada.theme-fusion.com/driving/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Driving School</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Global-Header.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-105 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[409740ebf452587eda8]\" data-title=\"Avada Driving School Header\" title=\"Avada Driving School Header\"><img width=\"1902\" height=\"164\" alt=\"Avada Driving School Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Header.jpg\" class=\"img-responsive wp-image-870827\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Header-200x17.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Header-400x34.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Header-600x52.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Header-800x69.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Header-1200x103.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Header.jpg 1902w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-258{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-258 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-257\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-69\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-40{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-40 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-40{width:100% !important;order : 0;}.fusion-builder-column-40 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-40{width:100% !important;order : 0;}.fusion-builder-column-40 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-41{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-42 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-41 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-259{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-259 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-106 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[32af4858fbd0ad0a10c]\" data-title=\"Avada Driving School Hero\" title=\"Avada Driving School Hero\"><img width=\"1900\" height=\"572\" alt=\"Avada Driving School Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Hero.jpg\" class=\"img-responsive wp-image-870829\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Hero-200x60.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Hero-400x120.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Hero-600x181.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Hero-800x241.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Hero-1200x361.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Hero.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-258\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. Added to the container is a single 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, a <a href=\"https://avada.theme-fusion.com/design-elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-260{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-260 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Intro and Callback</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-107 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Intro-and-Callback.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[58e2f0c9772350e82b7]\" data-title=\"Avada Driving School Intro and Callback\" title=\"Avada Driving School Intro and Callback\"><img width=\"1900\" height=\"711\" alt=\"Avada Driving School Intro and Callback\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Intro-and-Callback.jpg\" class=\"img-responsive wp-image-870830\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Intro-and-Callback-200x75.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Intro-and-Callback-400x150.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Intro-and-Callback-600x225.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Intro-and-Callback-800x299.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Intro-and-Callback-1200x449.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Intro-and-Callback.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-259\"><p>For this example, this section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/2 (50% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>containing two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Element</a>.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-form-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Builder</a> is used to design and build this subscription form. The Form Builder is very flexible and allows you to create many types of forms that you can use on your <a href=\"https://bit.ly/2TyRgXA\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. For any form that you create, you can add them to a page or post as a single instance or you can set the form to display <a href=\"https://theme-fusion.com/documentation/avada/forms/avada-forms-global-options/\" target=\"_blank\" rel=\"noopener noreferrer\">globally</a> across the website, which then allows you to manage one form. If a form is showing on all pages, for example, and you edit the form, the same changes show across all form instances.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-261{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-261 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Contact</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-108 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Start-Learning-Call-to-Action.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[7612e4bcc572dfb3979]\" data-title=\"Avada Driving School Start Learning Call to Action\" title=\"Avada Driving School Start Learning Call to Action\"><img width=\"1900\" height=\"204\" alt=\"Avada Driving School Start Learning Call to Action\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Start-Learning-Call-to-Action.jpg\" class=\"img-responsive wp-image-870831\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Start-Learning-Call-to-Action-200x21.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Start-Learning-Call-to-Action-400x43.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Start-Learning-Call-to-Action-600x64.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Start-Learning-Call-to-Action-800x86.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Start-Learning-Call-to-Action-1200x129.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Start-Learning-Call-to-Action.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-260\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 2/3 (66.67% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>and one 1/3 (33.33% width) Column, collectively containing two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/checklist-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Checklist Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-262{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-262 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Courses</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-109 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Courses.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[48911f82999c27dfb2a]\" data-title=\"Avada Driving School Courses\" title=\"Avada Driving School Courses\"><img width=\"1900\" height=\"484\" alt=\"Avada Driving School Courses\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Courses.jpg\" class=\"img-responsive wp-image-870832\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Courses-200x51.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Courses-400x102.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Courses-600x153.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Courses-800x204.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Courses-1200x306.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Courses.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-261\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image. Added to the container is one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, one 2/5 (40% width) Columns and three 1/5 (20% width) Column, collectively containing four <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Elements</a>, four Separator Elements, four <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and four <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Elements</a>. </p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-263{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-263 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Statistics</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-110 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Statistics.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[c3950f6d6ecb856279d]\" data-title=\"Avada Driving School Statistics\" title=\"Avada Driving School Statistics\"><img width=\"1899\" height=\"540\" alt=\"Avada Driving School Statistics\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Statistics.jpg\" class=\"img-responsive wp-image-870835\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Statistics-200x57.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Statistics-400x114.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Statistics-600x171.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Statistics-800x227.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Statistics-1200x341.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Statistics.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-262\"><p>To create this layout, two <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Containers</a> of which the first has one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/section-separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Section Separator Element</a> and the second has three 1/3 (33.33% width) Columns, each containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/counter-circles-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Counter Circles Element</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-264{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-264 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Your Instructors</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-111 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Your-Instructors.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[d15f6afe38e6fd45bdf]\" data-title=\"Avada Driving School Your Instructors\" title=\"Avada Driving School Your Instructors\"><img width=\"1899\" height=\"814\" alt=\"Avada Driving School Your Instructors\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Your-Instructors.jpg\" class=\"img-responsive wp-image-870836\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Your-Instructors-200x86.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Your-Instructors-400x171.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Your-Instructors-600x257.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Your-Instructors-800x343.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Your-Instructors-1200x514.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Your-Instructors.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-263\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a>, holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, one 2/3 (66.67% width) Column, holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and one 1/3 (33.33% width) Column, holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a> is used to create the top part of the layout. This is followed by three 1/3 (33.33% width) Columns, each containing an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, a Title Element, a <a href=\"https://theme-fusion.com/documentation/avada/elements/social-links-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Social Links Element</a>, and a Text Block Element.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-265{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-265 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Testimonials</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-112 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Testimonials.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[8fa7749e29806ee3069]\" data-title=\"Avada Driving School Testimonials\" title=\"Avada Driving School Testimonials\"><img width=\"1900\" height=\"679\" alt=\"Avada Driving School Testimonials\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Testimonials.jpg\" class=\"img-responsive wp-image-870838\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Testimonials-200x71.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Testimonials-400x143.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Testimonials-600x214.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Testimonials-800x286.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Testimonials-1200x429.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Testimonials.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-264\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image is used. The Inner content is made of one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, followed by two 1/6 (16.67% width) Columns on either side of a 2/3 (66.67% width) Column, containing a Title Element, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a Testimonials Element.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-266{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-266 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Latest News</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-113 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Latest-News.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[b6ccf748cbe8b2eeffa]\" data-title=\"Avada Driving School Latest News\" title=\"Avada Driving School Latest News\"><img width=\"1900\" height=\"926\" alt=\"Avada Driving School Latest News\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Latest-News.jpg\" class=\"img-responsive wp-image-870839\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Latest-News-200x97.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Latest-News-400x195.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Latest-News-600x292.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Latest-News-800x390.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Latest-News-1200x585.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Latest-News.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-265\"><p>For this example, a Container with a Background Image is used. The Inner content is made of two 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns </a>containing a Title Element, a <a href=\"https://theme-fusion.com/documentation/avada/elements/recent-posts-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Recent Posts Element</a>, two Separator Elements, a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, and an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-267{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-267 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Newsletter</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-114 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Newsletter.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[087e67006b5b37d1f19]\" data-title=\"Avada Driving School Newsletter\" title=\"Avada Driving School Newsletter\"><img width=\"1898\" height=\"386\" alt=\"Avada Driving School Newsletter\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Newsletter.jpg\" class=\"img-responsive wp-image-870840\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Newsletter-200x41.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Newsletter-400x81.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Newsletter-600x122.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Newsletter-800x163.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Newsletter-1200x244.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Newsletter.jpg 1898w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-266\"><p>This section is built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image. This is structured using two 1/5 (20% width) Columns on either side of a 3/5 (60% width) Column, containing a Title Element, the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Element</a>, a Separator Element, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-41{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-41 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-41{width:100% !important;order : 0;}.fusion-builder-column-41 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-41{width:100% !important;order : 0;}.fusion-builder-column-41 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-42{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-43 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-42 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-268{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-268 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-267\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-70\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#7abc64;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-268\"><p>For the <a href=\"https://avada.theme-fusion.com/driving/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Driving</a> School prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-269{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-269 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-115 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[1d4c054a5c7c9d82155]\" data-title=\"Avada Driving School Footer\" title=\"Avada Driving School Footer\"><img width=\"1899\" height=\"573\" alt=\"Avada Videographer Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Footer.jpg\" class=\"img-responsive wp-image-870841\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Footer-200x60.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Footer-400x121.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Footer-600x181.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Footer-800x241.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Footer-1200x362.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Footer.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-269\"><p>There are two <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Containers</a>, with the first containing four 1/4 (25% width) Columns, each containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/widget-area-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Widget Area Element</a><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">, and the use of the <a href=\"https://theme-fusion.com/documentation/avada/elements/social-links-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Social Links Element</a> and </span><a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"background-color: rgba(255, 255, 255, 0); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">Dynamic Data Options</a><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\"> to display the website copyright information. You can check how this is structured on the backend clicking this </span><span style=\"background-color: rgba(255, 255, 255, 0); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Driving-School-Global-Footer.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a></span><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-270{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-270 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-270\"><p>There are <span class=\"fusion-cs-live-demos\">86</span> <a href=\"https://bit.ly/2TyRgXA\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/2TyRgXA\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style>.fusion-button.button-21{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-21 .fusion-button-text,.fusion-button.button-21 i,.fusion-button.button-21:hover .fusion-button-text,.fusion-button.button-21:hover i,.fusion-button.button-21:focus .fusion-button-text,.fusion-button.button-21:focus i,.fusion-button.button-21:active .fusion-button-text,.fusion-button.button-21:active i{color:#ffffff;}.fusion-button.button-21:hover,.fusion-button.button-21:active,.fusion-button.button-21:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-21 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/2TyRgXA\"><span class=\"fusion-button-text\">Buy Avada Driving School For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-42{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-42 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-42{width:100% !important;order : 0;}.fusion-builder-column-42 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-42{width:100% !important;order : 0;}.fusion-builder-column-42 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-43{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-driving-deconstructing-a-prebuilt-website/\">Avada Driving: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://theme-fusion.com/avada-driving-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:85:\"\n            \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Avada Fitness: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://theme-fusion.com/avada-fitness-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://theme-fusion.com/avada-fitness-deconstructing-a-prebuilt-website/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Jan 2022 10:51:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Web Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=869384\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:613:\"<p>Say hello to Avada Fitness. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Fitness can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-fitness-deconstructing-a-prebuilt-website/\">Avada Fitness: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:158995:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-44 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-43 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-271\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/fitness/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Fitness</a>. This <a href=\"https://bit.ly/36VFJoo\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Fitness can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/fitness/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Fitness</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-beer-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Beer</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/36VFJoo\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-28 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-22{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-22 .fusion-button-text,.fusion-button.button-22 i,.fusion-button.button-22:hover .fusion-button-text,.fusion-button.button-22:hover i,.fusion-button.button-22:focus .fusion-button-text,.fusion-button.button-22:focus i,.fusion-button.button-22:active .fusion-button-text,.fusion-button.button-22:active i{color:#ffffff;}.fusion-button.button-22:hover,.fusion-button.button-22:active,.fusion-button.button-22:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-22 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/fitness/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-28{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-28 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-28{width:100% !important;order : 0;}.fusion-builder-nested-column-28 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-28{width:100% !important;order : 0;}.fusion-builder-nested-column-28 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-29 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-23{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-23 .fusion-button-text,.fusion-button.button-23 i,.fusion-button.button-23:hover .fusion-button-text,.fusion-button.button-23:hover i,.fusion-button.button-23:focus .fusion-button-text,.fusion-button.button-23:focus i,.fusion-button.button-23:active .fusion-button-text,.fusion-button.button-23:active i{color:#ffffff;}.fusion-button.button-23:hover,.fusion-button.button-23:active,.fusion-button.button-23:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-23 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/36VFJoo\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-29{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-29 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-29{width:100% !important;order : 0;}.fusion-builder-nested-column-29 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-29{width:100% !important;order : 0;}.fusion-builder-nested-column-29 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-271{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-271 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-71\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-272{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-272 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-272\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-273{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-273 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-273\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-274{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-274 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-274\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/36VFJoo\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-116 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-275\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-72\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-275{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-275 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-276\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-117 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-277\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/36VFJoo\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-276{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-276 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-278\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-118 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"docs_generate_critical_css\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1327\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-874339\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x143.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x287.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x430.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x574.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x861.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-279\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-277{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-277 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-280\"><p>Even with all of the performance options provided, <a href=\"https://bit.ly/36VFJoo\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://bit.ly/36VFJoo\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-73\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-278{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-278 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#4154ff;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#4154ff\">#4154ff</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#060607;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#060607\">#060607</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#ff414b;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ff414b\">#ff414b</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#4154ff;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#4154ff\">#4154ff</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#060607;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#060607\">#060607</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ff414b;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ff414b\">#ff414b</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#4154ff;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#4154ff\">#4154ff</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#060607;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#060607\">#060607</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ff414b;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ff414b\">#ff414b</div></div></div></div><div class=\"fusion-text fusion-text-281\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/fitness/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Fitness</a> prebuilt website is a bright warm grouping, as seen above. If you would like to change the Avada Fitness color palette, this can be done within the options panel, as explained in this <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-279{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-279 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-282\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/36VFJoo\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a><a href=\"https://bit.ly/3gCfqYB\" target=\"_blank\" rel=\"noopener noreferrer\"> </a>website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/fitness/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Fitness</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-30 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-280{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-280 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-281{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-281 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: \'Barlow Semi Condensed\'; font-weight: 500;\" data-fusion-font=\"true\" data-fusion-google-font=\"Barlow Semi Condensed\" data-fusion-google-variant=\"500\">Barlow Semi Condensed</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-282{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-282 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3,H4 Font Family: <span style=\"font-family: \'Barlow Semi Condensed\'; font-weight: 500;\" data-fusion-font=\"true\" data-fusion-google-font=\"Barlow Semi Condensed\" data-fusion-google-variant=\"500\">Barlow Semi Condensed</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-283{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-283 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5, H6 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: \'Barlow Semi Condensed\'; font-weight: 500;\" data-fusion-font=\"true\" data-fusion-google-font=\"Barlow Semi Condensed\" data-fusion-google-variant=\"500\">Barlow Semi Condensed</span><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-30{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-30 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-30{width:100% !important;order : 0;}.fusion-builder-nested-column-30 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-30{width:100% !important;order : 0;}.fusion-builder-nested-column-30 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-31 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-284{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-284 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-285{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-285 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: \'Barlow Semi Condensed\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Barlow Semi Condensed\" data-fusion-google-variant=\"400\">Barlow Semi Condensed</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-31{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-31 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-31{width:100% !important;order : 0;}.fusion-builder-nested-column-31 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-31{width:100% !important;order : 0;}.fusion-builder-nested-column-31 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-283\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-286{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-286 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-284\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-74\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">The <a href=\"https://bit.ly/36VFJoo\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-287{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-287 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-285\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/fitness/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Fitness</a> prebuilt website as an example:</p>\n<p> It is created as a <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-woocommerce-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">WooCommerce </a>focussed site, and therefore the WooCommerce plugin should be installed and activated at the point of installing the prebuilt site.</p>\n<p>If you decide not to install the WooCommerce plugin, the full site will still be imported, but the eCommerce aspect will not be active. The following plugins have been used with the <a href=\"https://avada.theme-fusion.com/fitness/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Fitness</a> website:</p>\n</div><div class=\"fusion-fss-plugins-used\"><div class=\"fusion-fss-plugins-wrapper\" style=\"flex-direction:row;margin:-7.5px;\"><div class=\"fusion-fss-plugin-wrapper\" style=\"margin:7.5px;flex-basis: calc(50% - 15px);justify-content:flex-start;padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em;background-color:#F2F7F8;border-radius:7px;font-size:1.2em;color:#333333;\"><div class=\"fusion-fss-plugin\"><span class=\"fusion-fss-plugin-icon\"><svg width=\"169\" height=\"100\" viewBox=\"0 0 169 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0)\"><path d=\"M16.4673 0H152.663C161.282 0 168.26 6.97713 168.26 15.5967V67.585C168.26 76.2039 161.283 83.1817 152.663 83.1817H103.822L110.526 99.5987L81.0431 83.1817H16.5366C7.91761 83.1817 0.93983 76.2046 0.93983 67.585V15.5967C0.871425 7.04575 7.84898 0 16.4679 0H16.4673Z\" fill=\"#9B5C8F\"/><path d=\"M10.4662 14.2157C11.4184 12.9234 12.8468 12.2432 14.7512 12.1072C18.2201 11.8351 20.1926 13.4675 20.6687 17.0044C22.7772 31.2201 25.0897 43.2586 27.5386 53.1214L42.4341 24.7586C43.7944 22.174 45.4948 20.8137 47.5353 20.6776C50.528 20.4736 52.3645 22.378 53.1126 26.391C54.813 35.4374 56.9896 43.1231 59.5742 49.6525C61.3426 32.376 64.3354 19.9296 68.5526 12.2433C69.5729 10.3389 71.0692 9.38666 73.0417 9.25058C74.6061 9.11455 76.0345 9.59066 77.3267 10.6109C78.619 11.6312 79.2992 12.9235 79.4352 14.4878C79.5032 15.7121 79.2992 16.7323 78.755 17.7526C76.1024 22.6498 73.9259 30.8801 72.1577 42.3062C70.4573 53.3931 69.8451 62.031 70.2532 68.2206C70.3892 69.921 70.1172 71.4174 69.437 72.7097C68.6208 74.206 67.3965 75.0222 65.8322 75.1582C64.0637 75.2943 62.2273 74.4781 60.4589 72.6416C54.1334 66.1801 49.1001 56.522 45.4275 43.6665C41.0065 52.3723 37.7419 58.9024 35.6334 63.2554C31.6205 70.941 28.2197 74.8861 25.3628 75.09C23.5263 75.226 21.962 73.6616 20.6016 70.3969C17.1328 61.4864 13.3918 44.2786 9.37876 18.7727C9.1067 17.0042 9.5148 15.4399 10.467 14.2155L10.4662 14.2157ZM156.636 24.8941C154.188 20.6091 150.583 18.0242 145.754 17.0039C144.462 16.7318 143.237 16.5958 142.081 16.5958C135.551 16.5958 130.246 19.9967 126.097 26.7984C122.56 32.5798 120.792 38.9736 120.792 45.9788C120.792 51.2161 121.88 55.705 124.057 59.4461C126.505 63.7312 130.11 66.3161 134.939 67.3363C136.231 67.6084 137.456 67.7444 138.612 67.7444C145.209 67.7444 150.515 64.3436 154.596 57.5418C158.132 51.6924 159.901 45.2987 159.901 38.2935C159.969 32.9882 158.813 28.5673 156.636 24.8941V24.8941ZM148.066 43.7346C147.114 48.2237 145.414 51.5562 142.897 53.8013C140.925 55.5697 139.088 56.3179 137.388 55.9778C135.755 55.6378 134.395 54.2094 133.375 51.5568C132.559 49.4483 132.15 47.3398 132.15 45.3673C132.15 43.6669 132.286 41.9665 132.627 40.4021C133.239 37.6135 134.395 34.8928 136.231 32.308C138.476 28.9752 140.856 27.6149 143.305 28.091C144.938 28.4311 146.298 29.8595 147.318 32.5121C148.134 34.6206 148.542 36.7291 148.542 38.7016C148.542 40.47 148.406 42.1704 148.066 43.7348L148.066 43.7346ZM114.058 24.8941C111.609 20.6091 107.936 18.0242 103.175 17.0039C101.883 16.7318 100.659 16.5958 99.5025 16.5958C92.973 16.5958 87.6679 19.9967 83.5188 26.7984C79.982 32.5798 78.2135 38.9736 78.2135 45.9788C78.2135 51.2161 79.3018 55.705 81.4783 59.4461C83.9269 63.7312 87.5318 66.3161 92.3607 67.3363C93.6529 67.6084 94.8773 67.7444 96.0335 67.7444C102.631 67.7444 107.936 64.3436 112.017 57.5418C115.554 51.6924 117.322 45.2987 117.322 38.2935C117.322 32.9882 116.234 28.5673 114.058 24.8941V24.8941ZM105.42 43.7346C104.468 48.2237 102.767 51.5562 100.251 53.8013C98.2781 55.5697 96.4417 56.3179 94.7413 55.9778C93.1088 55.6378 91.7485 54.2094 90.7283 51.5568C89.9121 49.4483 89.504 47.3398 89.504 45.3673C89.504 43.6669 89.64 41.9665 89.9801 40.4021C90.5923 37.6135 91.7486 34.8928 93.585 32.308C95.8295 28.9752 98.2101 27.6149 100.659 28.091C102.291 28.4311 103.652 29.8595 104.672 32.5121C105.488 34.6206 105.896 36.7291 105.896 38.7016C105.964 40.47 105.76 42.1704 105.42 43.7348L105.42 43.7346Z\" fill=\"white\"/></g><defs><clipPath id=\"clip0\"><rect width=\"167.32\" height=\"100\" fill=\"white\" transform=\"translate(0.93811)\"/></clipPath></defs></svg></span><span class=\"fusion-fss-plugin-text\">WooCommerce</span></div></div></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-286\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-7 fusion_builder_column_2_3 2_3 fusion-flex-column\">\n<div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\">\n<div class=\"fusion-text fusion-text-1\">\n<p>Slider Revolution is a beautifully animated slider that is 100% responsive and has amazing options that will allow you to create feature-rich and dynamic sliders for your pages and posts. This slider plugin comes bundled with Avada; you do not need additional licensing to use it and is always 100% compatible with Avada.</p>\n</div>\n</div>\n</div>\n</div><div class=\"fusion-fss-plugins-used\"><div class=\"fusion-fss-plugins-wrapper\" style=\"flex-direction:row;margin:-7.5px;\"><div class=\"fusion-fss-plugin-wrapper\" style=\"margin:7.5px;flex-basis: calc(50% - 15px);justify-content:flex-start;padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em;background-color:#F2F7F8;border-radius:7px;font-size:1.2em;color:#333333;\"><div class=\"fusion-fss-plugin\"><span class=\"fusion-fss-plugin-icon\"><svg width=\"101\" height=\"100\" viewBox=\"0 0 101 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"0.294312\" width=\"100\" height=\"100\" rx=\"10\" fill=\"#5E35B1\"/><path d=\"M18.4193 18.75H44.6693V45L36.1786 36.5093C33.6165 39.1901 31.8685 42.5478 31.1439 46.1907C30.3905 49.9783 30.7771 53.9043 32.255 57.4721C33.7328 61.04 36.2355 64.0895 39.4465 66.235C42.6574 68.3805 46.4325 69.5256 50.2943 69.5256V81.25C44.1136 81.25 38.0718 79.4172 32.9327 75.9834C27.7937 72.5496 23.7883 67.669 21.4231 61.9589C19.0578 56.2487 18.439 49.9653 19.6448 43.9034C20.8218 37.9861 23.6859 32.5392 27.8869 28.2176L18.4193 18.75Z\" fill=\"white\"/><path d=\"M82.1693 81.25L55.9193 81.25L55.9193 55L64.41 63.4907C66.9721 60.8099 68.7201 57.4522 69.4448 53.8093C70.1982 50.0217 69.8115 46.0957 68.3336 42.5279C66.8558 38.96 64.3531 35.9105 61.1422 33.765C57.9312 31.6195 54.1561 30.4744 50.2943 30.4744L50.2943 18.75C56.475 18.75 62.5168 20.5828 67.6559 24.0166C72.7949 27.4504 76.8003 32.331 79.1655 38.0411C81.5308 43.7513 82.1496 50.0347 80.9439 56.0966C79.7668 62.0139 76.9027 67.4608 72.7017 71.7824L82.1693 81.25Z\" fill=\"white\"/></svg></span><span class=\"fusion-fss-plugin-text\">Slider Revolution</span></div></div></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-288{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-288 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-287\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-75\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-envelope-open-text fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-register-for-avada-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Register for Avada support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comments fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/support/submit-a-ticket/\" target=\"_blank\" rel=\"noopener noreferrer\">Need to submit a support ticket?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cart-arrow-down fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/extending-and-renewing-envato-item-support/\" target=\"_blank\" rel=\"noopener noreferrer\">How to extend or renew support</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-question fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/avada-grandfathered-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Are you eligible for Grandfathered support?</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-columns fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/support/how-to-use-the-avada-support-desk/\" target=\"_blank\" rel=\"noopener noreferrer\">How to use the Avada support Dashboard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-alt fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Documentation</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-file-video fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://www.youtube.com/c/ThemeFusionVideos/videos\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Video Tutorials</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-289{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-289 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-288\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type. </p>\n<p><a href=\"https://bit.ly/36VFJoo\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website. </p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-76\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">They are created to save you time when building a new website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A prebuilt website can be imported with a few clicks.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is mobile and SEO friendly.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">You can white-label any prebuilt website for client work.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Prebuilt websites are included with your <a href=\"https://bit.ly/36VFJoo\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-290{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-290 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-289\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">86</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-119 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-43{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-43 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-43{width:100% !important;order : 0;}.fusion-builder-column-43 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-43{width:100% !important;order : 0;}.fusion-builder-column-43 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-44{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-45 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-44 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-291{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-291 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-290\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/fitness/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Fitness</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-77\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness\" target=\"_blank\" rel=\"noopener noreferrer\">Home Page &#8211; Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/services/\" target=\"_blank\" rel=\"noopener noreferrer\">Services &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/services/\" target=\"_blank\" rel=\"noopener noreferrer\">All Services &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/yoga-lessons/\" target=\"_blank\" rel=\"noopener noreferrer\">Services Single Page &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/mechanic/our-services/\" target=\"_blank\" rel=\"noopener noreferrer\">About &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/about/\" target=\"_blank\" rel=\"noopener noreferrer\">About Me &#8211; page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/sponsors/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Sponsors &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/contact/\" target=\"_blank\" rel=\"noopener noreferrer\">Contact &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/playlists/\" target=\"_blank\" rel=\"noopener noreferrer\">Videos &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/playlists/\" target=\"_blank\" rel=\"noopener noreferrer\">All Playlists &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/playlists/lift-firm-perk-up/\" target=\"_blank\" rel=\"noopener noreferrer\">Playlist Page &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/videos/10-minutes-full-body-workout/\" target=\"_blank\" rel=\"noopener noreferrer\">Videos Single Page &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/blog/\" target=\"_blank\" rel=\"noopener noreferrer\">Blog &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/shop/\" target=\"_blank\" rel=\"noopener noreferrer\">Store &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/product/water-bottle/\" target=\"_blank\" rel=\"noopener noreferrer\">Simple Product Page &#8211; Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/fitness/product/various-dumbbells/\" target=\"_blank\" rel=\"noopener noreferrer\">Variable Product &#8211; Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-44{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-44 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-44{width:100% !important;order : 0;}.fusion-builder-column-44 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-44{width:100% !important;order : 0;}.fusion-builder-column-44 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-45{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-46 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-45 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-292{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-292 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-291\"><p>Before we look at the specific Layouts on the Avada Fitness prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-120 hover-type-none\"><img width=\"1050\" height=\"1050\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x200.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x400.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x600.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x800.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1050w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-293{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-293 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-292\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-294{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-294 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-293\"><p>The <a href=\"https://avada.theme-fusion.com/fitness/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Fitness</a><a href=\"https://avada.theme-fusion.com/mechanic/\" target=\"_blank\" rel=\"noopener noreferrer\"> </a>prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-121 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Live-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[dcb8a8a9c31c2b4351e]\" data-title=\"Avada Fitness Live Editing\" title=\"Avada Fitness Live Editing\"><img width=\"1920\" height=\"876\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Live-Editing.jpg\" class=\"img-responsive wp-image-869718\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Live-Editing-200x91.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Live-Editing-400x183.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Live-Editing-600x274.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Live-Editing-800x365.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Live-Editing-1200x548.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Live-Editing.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-294\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-122 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[77976974cd7b4183bb8]\" data-title=\"Avada Fitness Backend Editing\" title=\"Avada Fitness Backend Editing\"><img width=\"1902\" height=\"856\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Backend-Editing.jpg\" class=\"img-responsive wp-image-869719\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Backend-Editing-200x90.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Backend-Editing-400x180.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Backend-Editing-600x270.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Backend-Editing-800x360.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Backend-Editing-1200x540.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Backend-Editing.jpg 1902w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-295{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-295 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-295\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-78\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-45{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-45 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-45{width:100% !important;order : 0;}.fusion-builder-column-45 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-45{width:100% !important;order : 0;}.fusion-builder-column-45 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-46{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-47 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-46 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-296{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-296 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-296\"><p>If you type the base-level domain name of any particular website into the browser, you will, by default, arrive on the website&#8217;s homepage. The homepage serves as a vital landing page for your visitors by capturing their attention and letting them know what the website is all about. There is the conjectured &#8220;5 Second Rule&#8221; for Web Usability and how it translates the user reaction when landing on the site for the first time into either a positive or negative experience.</p>\n<p>For well over a decade, the main focus for web designers was to showcase style over function for the most part. As time has passed, <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">above the fold</a> content delivery and the impact on <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a> has shifted the focus over to mobile vs. desktop speed and <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>.</p>\n<p>Each of the Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">Prebuilt Websites</a> are meticulously designed with the ideal balance between style and function, and we use the Avada <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> to provide improved results.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-297{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-297 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-297\"><p>For the <a href=\"https://avada.theme-fusion.com/fitness/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Fitness</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Global-Header.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-123 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[50272ad86a84bca3ddb]\" data-title=\"Avada Fitness Header\" title=\"Avada Fitness Header\"><img width=\"1900\" height=\"97\" alt=\"Avada Fitness Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Header.jpg\" class=\"img-responsive wp-image-869720\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Header-200x10.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Header-400x20.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Header-600x31.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Header-800x41.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Header-1200x61.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Header.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-298{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-298 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-298\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-79\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-46{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-46 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-46{width:100% !important;order : 0;}.fusion-builder-column-46 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-46{width:100% !important;order : 0;}.fusion-builder-column-46 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-47{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-48 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-47 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-299{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-299 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-124 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[d8ecc9125e1de4418a4]\" data-title=\"Avada Fitness Hero\" title=\"Avada Fitness Hero\"><img width=\"1900\" height=\"585\" alt=\"Avada Fitness Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Hero.jpg\" class=\"img-responsive wp-image-869721\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Hero-200x62.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Hero-400x123.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Hero-600x185.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Hero-800x246.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Hero-1200x369.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Hero.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-299\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. Added to the container is one 3/4 (75% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> with five <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, an <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a>, and three <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Elements</a> and one 1/4 (25% width) Column with an Icon Element.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-300{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-300 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Services &amp; Testimonials</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-125 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Services-Testimonials.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[452649f96efd79eb76f]\" data-title=\"Avada Fitness Services &#038; Testimonials\" title=\"Avada Fitness Services &#038; Testimonials\"><img width=\"1905\" height=\"819\" alt=\"Avada Fitness Services &amp; Testimonials\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Services-Testimonials.jpg\" class=\"img-responsive wp-image-869724\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Services-Testimonials-200x86.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Services-Testimonials-400x172.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Services-Testimonials-600x258.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Services-Testimonials-800x344.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Services-Testimonials-1200x516.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Services-Testimonials.jpg 1905w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-300\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This section was built using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Gradient Background and two 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>. Collectively, these columns structure the layout by using a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>, three <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, and an <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a>. Simply put, Nested Columns are Columns within Columns. In this example, the Nested Columns Element uses three 1/3 (33.33% width) Columns with Background Images, each containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, Icon element, and two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>. </span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-301{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-301 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Tune-up your workouts &#8211; CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-126 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Youtube-Section.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[a401ed1faa56489490d]\" data-title=\"Avada Fitness Youtube Section\" title=\"Avada Fitness Youtube Section\"><img width=\"1903\" height=\"745\" alt=\"Avada Fitness Workouts CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Youtube-Section.jpg\" class=\"img-responsive wp-image-869726\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Youtube-Section-200x78.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Youtube-Section-400x157.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Youtube-Section-600x235.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Youtube-Section-800x313.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Youtube-Section-1200x470.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Youtube-Section.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-301\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/2 (50% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>. The first column has a Background Image and <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a> and the second column has two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-302{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-302 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Featured Playlist</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-127 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Featured-Playlists.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[bcc826e38b5cf20313f]\" data-title=\"Avada Fitness Featured Playlists\" title=\"Avada Fitness Featured Playlists\"><img width=\"1902\" height=\"467\" alt=\"Avada Fitness Featured Playlist\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Featured-Playlists.jpg\" class=\"img-responsive wp-image-869729\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Featured-Playlists-200x49.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Featured-Playlists-400x98.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Featured-Playlists-600x147.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Featured-Playlists-800x196.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Featured-Playlists-1200x295.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Featured-Playlists.jpg 1902w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-302\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/2 (100% width) Columns with a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, followed by three 1/3 (33.33% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, each containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a> with an <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a> and two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-303{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-303 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Newsletter &#8211; Visual CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-128 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Newsletter.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[f657b1c248f2ce9f213]\" data-title=\"Avada Fitness Newsletter\" title=\"Avada Fitness Newsletter\"><img width=\"1903\" height=\"681\" alt=\"Avada Fitness Newsletter Visual CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Newsletter.jpg\" class=\"img-responsive wp-image-869731\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Newsletter-200x72.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Newsletter-400x143.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Newsletter-600x215.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Newsletter-800x286.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Newsletter-1200x429.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Newsletter.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-303\"><p>Using images as a way to highlight a call-to-action or for advertizing and promotion reasons is standard practice, and the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> makes this task even easier for you. To create this section, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container Element</a> with a Background Image is added to the page content. To create the inner section, one 2/3 (66.67% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, an <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a>, the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a> was used.</p>\n<p>Depending on the marketing goal, CTA&#8217;s can drive a variety of different actions and results for your website visitors. Check this article for some CTA inspiration, <a href=\"https://blog.hubspot.com/marketing/call-to-action-examples\" target=\"_blank\" rel=\"noopener noreferrer\">39 Call-to-Action Examples You Can&#8217;t Help But Click</a>.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-form-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Builder</a> is used to design and build this subscription form. The Form Builder is very flexible and allows you to create many types of forms that you can use on your <a href=\"https://bit.ly/2NhBSeq\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. For any form that you create, you can add them to a page or post as a single instance or you can set the form to display <a href=\"https://theme-fusion.com/documentation/avada/forms/avada-forms-global-options/\" target=\"_blank\" rel=\"noopener noreferrer\">globally</a> across the website, which then allows you to manage one form. If a form is showing on all pages, for example, and you edit the form, the same changes show across all form instances.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-304{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-304 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Service Boxes</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-129 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Boxed-Services.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[5bafb9a7e112d93fcbf]\" data-title=\"Avada Fitness Boxed Services\" title=\"Avada Fitness Boxed Services\"><img width=\"1897\" height=\"727\" alt=\"Avada Fitness Service Boxes\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Boxed-Services.jpg\" class=\"img-responsive wp-image-869734\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Boxed-Services-200x77.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Boxed-Services-400x153.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Boxed-Services-600x230.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Boxed-Services-800x307.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Boxed-Services-1200x460.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Boxed-Services.jpg 1897w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-304\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Color, with one 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, followed by three 1/3 (33.33% width) Columns, each containing an <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a>, a Separator Element, two <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-305{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-305 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Latest Articles</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-130 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Latest-Articles.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[3133fd3bfd57bbbd2ca]\" data-title=\"Avada Fitness Latest Articles\" title=\"Avada Fitness Latest Articles\"><img width=\"1898\" height=\"507\" alt=\"Avada Fitness Latest Articles\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Latest-Articles.jpg\" class=\"img-responsive wp-image-869736\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Latest-Articles-200x53.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Latest-Articles-400x107.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Latest-Articles-600x160.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Latest-Articles-800x214.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Latest-Articles-1200x321.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Latest-Articles.jpg 1898w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-305\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, this section uses two 1/2 (50% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, collectively containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, followed by one 1/1 (100% width) Column with a <a href=\"https://theme-fusion.com/documentation/avada/elements/blog-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Blog Element</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-306{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-306 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Info Banner &#8211; Visual CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-131 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Info-Banner.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[c033bcd9363c95e7b4d]\" data-title=\"Avada Fitness Info Banner\" title=\"Avada Fitness Info Banner\"><img width=\"1899\" height=\"736\" alt=\"Avada Fitness Info Banner Visual CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Info-Banner.jpg\" class=\"img-responsive wp-image-869739\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Info-Banner-200x78.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Info-Banner-400x155.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Info-Banner-600x233.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Info-Banner-800x310.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Info-Banner-1200x465.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Info-Banner.jpg 1899w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-306\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, this section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image and two 1/5 (20%% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, each with a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a> and one 3/5 (60% width) Column with three <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, an <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a>, a Separator Element, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-307{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-307 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Sponsors</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-132 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Sponsors.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[caf22bbad38d52c20d8]\" data-title=\"Avada Fitness Sponsors\" title=\"Avada Fitness Sponsors\"><img width=\"1896\" height=\"458\" alt=\"Avada Fitness Sponsors\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Sponsors.jpg\" class=\"img-responsive wp-image-869741\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Sponsors-200x48.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Sponsors-400x97.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Sponsors-600x145.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Sponsors-800x193.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Sponsors-1200x290.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Sponsors.jpg 1896w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-307\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">For this example, this section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with four 1/4 (25% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, collectively holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, four <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Elements</a>, four <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Elements</a>, four <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, and four <a href=\"https://theme-fusion.com/documentation/avada/elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Elements</a>.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-308{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-308 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Video of the day &#8211; Visual CTA</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-133 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Video-Of-The-Day.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[916ce866353d78effa1]\" data-title=\"Avada Fitness Video Of The Day\" title=\"Avada Fitness Video Of The Day\"><img width=\"1898\" height=\"634\" alt=\"Avada Fitness Video of the day - Visual CTA\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Video-Of-The-Day.jpg\" class=\"img-responsive wp-image-869742\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Video-Of-The-Day-200x67.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Video-Of-The-Day-400x134.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Video-Of-The-Day-600x200.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Video-Of-The-Day-800x267.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Video-Of-The-Day-1200x401.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Video-Of-The-Day.jpg 1898w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-308\"><p>For this example, this section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with a Background Image and two 1/5 (20%% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, each with a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a> and one 3/5 (60% width) Columns an <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, and two <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>.</p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-47{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-47 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-47{width:100% !important;order : 0;}.fusion-builder-column-47 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-47{width:100% !important;order : 0;}.fusion-builder-column-47 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-48{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-49 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-48 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-309{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-309 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-309\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-80\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#4154ff;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-310\"><p>For the <a href=\"https://avada.theme-fusion.com/fitness/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Fitness</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-310{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-310 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-134 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[ed2441af84f83056df6]\" data-title=\"Avada Fitness Footer\" title=\"Avada Fitness Footer\"><img width=\"1903\" height=\"609\" alt=\"Avada Fitness Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Footer.jpg\" class=\"img-responsive wp-image-869744\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Footer-200x64.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Footer-400x128.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Footer-600x192.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Footer-800x256.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Footer-1200x384.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Footer.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-311\"><p>The Footer content is divided into two <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Containers</a> with a couple of <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">columns </a>using <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Elements</a>, Title Elements, <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/social-links-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Social Links Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/widget-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Widget Elements</a>, with the use of <a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website information, in the second Container. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Fitness-Global-Footer.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-311{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-311 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-312\"><p>There are <span class=\"fusion-cs-live-demos\">86</span> <a href=\"https://bit.ly/36VFJoo\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/36VFJoo\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style>.fusion-button.button-24{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-24 .fusion-button-text,.fusion-button.button-24 i,.fusion-button.button-24:hover .fusion-button-text,.fusion-button.button-24:hover i,.fusion-button.button-24:focus .fusion-button-text,.fusion-button.button-24:focus i,.fusion-button.button-24:active .fusion-button-text,.fusion-button.button-24:active i{color:#ffffff;}.fusion-button.button-24:hover,.fusion-button.button-24:active,.fusion-button.button-24:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-24 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/36VFJoo\"><span class=\"fusion-button-text\">Buy Avada Fitness For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-48{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-48 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-48{width:100% !important;order : 0;}.fusion-builder-column-48 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-48{width:100% !important;order : 0;}.fusion-builder-column-48 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-49{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-fitness-deconstructing-a-prebuilt-website/\">Avada Fitness: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://theme-fusion.com/avada-fitness-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:85:\"\n          \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Avada Beer: Deconstructing a Prebuilt Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://theme-fusion.com/avada-beer-deconstructing-a-prebuilt-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://theme-fusion.com/avada-beer-deconstructing-a-prebuilt-website/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Dec 2021 19:03:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"Prebuilt Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Web Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"Branding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=870526\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:595:\"<p>Say hello to Avada Craft Beer. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Craft Beer can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to [...]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-beer-deconstructing-a-prebuilt-website/\">Avada Beer: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Schantel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:133319:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-50 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-49 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-text fusion-text-313\"><p>Say hello to <a href=\"https://avada.theme-fusion.com/beer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Craft Beer</a>. This <a href=\"https://bit.ly/3ByCukv\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Craft Beer can be imported at the click of a button and is highly flexible. Every aspect of the prebuilt website is easily customizable, and it can be adapted and branded to suit any business model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.theme-fusion.com/website-builder-features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.theme-fusion.com/beer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Craft Beer</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://theme-fusion.com/avada-electrician-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Beer</a> prebuilt website. It is important to highlight that <a href=\"https://bit.ly/3ByCukv\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-32 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-25{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-25 .fusion-button-text,.fusion-button.button-25 i,.fusion-button.button-25:hover .fusion-button-text,.fusion-button.button-25:hover i,.fusion-button.button-25:focus .fusion-button-text,.fusion-button.button-25:focus i,.fusion-button.button-25:active .fusion-button-text,.fusion-button.button-25:active i{color:#ffffff;}.fusion-button.button-25:hover,.fusion-button.button-25:active,.fusion-button.button-25:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-25 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.theme-fusion.com/beer/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-32{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-32 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-32{width:100% !important;order : 0;}.fusion-builder-nested-column-32 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-32{width:100% !important;order : 0;}.fusion-builder-nested-column-32 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-33 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><style>.fusion-button.button-26{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-26 .fusion-button-text,.fusion-button.button-26 i,.fusion-button.button-26:hover .fusion-button-text,.fusion-button.button-26:hover i,.fusion-button.button-26:focus .fusion-button-text,.fusion-button.button-26:focus i,.fusion-button.button-26:active .fusion-button-text,.fusion-button.button-26:active i{color:#ffffff;}.fusion-button.button-26:hover,.fusion-button.button-26:active,.fusion-button.button-26:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-26 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3ByCukv\"><span class=\"fusion-button-text\">Purchase For $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-33{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-33 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 3.84%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-33{width:100% !important;order : 0;}.fusion-builder-nested-column-33 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-33{width:100% !important;order : 0;}.fusion-builder-nested-column-33 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-312{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-312 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Overview</h2></div><ul class=\"fusion-checklist fusion-checklist-81\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#features\">Styling and Features</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#performance\">Performance &amp; Optimization</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#palette\">Color Palette</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#typography\">Typography</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#getstarted\">To Get Started You Will Need The Following</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#plugins\">Recommended Plugins</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#support\">World-Class Support And Resources</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#prebuiltwebsite\">What is a Prebuilt Website?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#install\">Fast One-Click Install</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#structure\">Website Structure</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#layouts\">Explaining Layouts &amp; Layout Sections</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#wordpresspages\">Explaining WordPress Pages vs. Posts</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#change\">What Can I Change? Is the Design Flexible?</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#comparison\">A Side By Side Comparison</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#homepage\">Exploring The Homepage Layout</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#footer\">The Footer</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-caret-right fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a class=\"fusion-one-page-text-link\" href=\"#summary\">In Summary</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-313{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-313 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"features\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-314\"><p>Creating a <a href=\"https://theme-fusion.com/how-to-create-a-style-guide-for-your-wordpress-website/\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://theme-fusion.com/documentation/avada/avada-for-developers/wcag-2-1-aa-accessibility-and-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-314{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-314 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"performance\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-315\"><p><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-315{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-315 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-316\"><p>The <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://bit.ly/3ByCukv\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-135 hover-type-none\"><img width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"Performance Wizard Start Screen\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-867928\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-200x142.jpg 200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-400x283.jpg 400w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-600x425.jpg 600w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-800x566.jpg 800w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-317\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-82\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-316{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-316 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-318\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-136 hover-type-none\"><img width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"Above The Fold Optimization\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png\" class=\"img-responsive wp-image-868004\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-200x63.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-400x126.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-600x189.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-800x253.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed-1200x379.png 1200w, https://theme-fusion.com/wp-content/uploads/2021/06/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-text fusion-text-319\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-optimize-above-the-fold-content-for-performance-video/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://bit.ly/3ByCukv\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-317{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-317 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-320\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-137 hover-type-none\" style=\"border:1px solid #e0dede;\"><a class=\"fusion-no-lightbox\" href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" aria-label=\"docs_generate_critical_css\" rel=\"noopener noreferrer\"><img width=\"1850\" height=\"1327\" alt=\"Critical CSS\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-874339\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-200x143.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-400x287.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-600x430.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-800x574.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css-1200x861.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-321\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-318{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-318 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.32;\">Resources</h3></div><div class=\"fusion-text fusion-text-322\"><p>Even with all of the performance options provided, <a href=\"https://bit.ly/3ByCukv\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://bit.ly/3ByCukv\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://theme-fusion.com/documentation/avada/performance/what-are-google-core-web-vitals-and-why-they-matter/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-83\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-319{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-319 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"palette\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#917852;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#917852\">#917852</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#747474;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#747474\">#747474</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:60px;padding-bottom:50px;padding-left:60px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#ffffff;border:10px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#917852;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#917852\">#917852</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#747474;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#747474\">#747474</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffffff;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#917852;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#917852\">#917852</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#747474;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#747474\">#747474</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffffff;border:5px solid #ffffff;border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-text fusion-text-323\"><p>The color palette selected for the <a href=\"https://avada.theme-fusion.com/beer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Craft Beer</a> <span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">prebuilt website is a natural set of pastel colors with bright and dark tones, as seen above. If you would like to change the Avada Craft Beer color palette, this can be done within the options panel, as explained in this </span><a style=\"background-color: rgba(255, 255, 255, 0); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\" href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-use-the-color-palette-feature/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">.</span></p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-320{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-320 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"typography\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Typography</h3></div><div class=\"fusion-text fusion-text-324\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://bit.ly/3ByCukv\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://theme-fusion.com/documentation/avada/options/typography-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.theme-fusion.com/beer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Craft Beer</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-34 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-321{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-321 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Headings</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-322{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-322 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H1, H2, Font Family: <span style=\"font-family: \'Roboto Slab\'; font-weight: 300;\" data-fusion-font=\"true\" data-fusion-google-font=\"Roboto Slab\" data-fusion-google-variant=\"300\">Roboto Slab</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-323{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-323 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H3, H4 Font Family: <span style=\"font-family: \'Roboto Slab\'; font-weight: 300;\" data-fusion-font=\"true\" data-fusion-google-font=\"Roboto Slab\" data-fusion-google-variant=\"300\">Roboto Slab</span></div></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-324{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-324 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">H5, H6 Font family: <span style=\"font-family: Zilla Slab; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Zilla Slab\" data-fusion-google-variant=\"400\"><span style=\"font-family: Heebo; font-weight: 300;\" data-fusion-font=\"true\" data-fusion-google-font=\"Heebo\" data-fusion-google-variant=\"300\">Roboto Slab</span><br />\n</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-34{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-34 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-34{width:100% !important;order : 0;}.fusion-builder-nested-column-34 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-34{width:100% !important;order : 0;}.fusion-builder-nested-column-34 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-35 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#f2f2f2;padding: 20px 20px 20px 20px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-325{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-325 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:20px;margin-top:0px;margin-bottom:20px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;color:#5e5e5e;--fontSize:20;--minFontSize:20px;line-height:1.32;\">Body</h3></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-326{margin-top:0px!important; margin-right:!important;margin-bottom:5px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-326 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:5px;\"><div class=\"title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;color:#5e5e5e;--fontSize:18;--minFontSize:18px;line-height:1.7;\">Font Family: <span style=\"font-family: \'Roboto Condensed\'; font-weight: 300;\" data-fusion-font=\"true\" data-fusion-google-font=\"Roboto Condensed\" data-fusion-google-variant=\"300\">Roboto Condensed</span></div></div></div><style type=\"text/css\">.fusion-body .fusion-builder-nested-column-35{width:50% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-nested-column-35 > .fusion-column-wrapper {padding-top : 20px !important;padding-right : 20px !important;margin-right : 3.84%;padding-bottom : 20px !important;padding-left : 20px !important;margin-left : 3.84%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-nested-column-35{width:100% !important;order : 0;}.fusion-builder-nested-column-35 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-nested-column-35{width:100% !important;order : 0;}.fusion-builder-nested-column-35 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><div class=\"fusion-text fusion-text-325\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-327{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-327 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"getstarted\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-326\"><p>To get started with the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul class=\"fusion-checklist fusion-checklist-84\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>A trusted <a href=\"https://theme-fusion.com/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-avada-mark\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p>The <a href=\"https://bit.ly/3ByCukv\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-328{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-328 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"plugins\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-327\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.theme-fusion.com/beer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Craft Beer</a> prebuilt website as an example: <span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This prebuilt website was build using</span> <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/the-events-calendar/\" target=\"_blank\" rel=\"noopener noreferrer\">The Events Calendar</a><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">. </span></p>\n<p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">All of the Events Calendar functionality is available to use with Avada, including an Avada Events Calendar Element. This Element is packed with features and options for you to use anywhere within your site. Alongside that, there is a dedicated Events Calendar Panel within the Avada Global Options, for you to control all aspects of design, layout, and display.</span></p>\n<p>If you decide not to install the Slider Revolution or The Event Calendar plugins, the full site will still be imported, but the aspects specific to each plugin will nor be active. The following plugins have been used with the <a href=\"https://avada.theme-fusion.com/beer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Craft Beer</a> website:</p>\n</div><div class=\"fusion-fss-plugins-used\"><div class=\"fusion-fss-plugins-wrapper\" style=\"flex-direction:row;margin:-7.5px;\"><div class=\"fusion-fss-plugin-wrapper\" style=\"margin:7.5px;flex-basis: calc(50% - 15px);justify-content:flex-start;padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em;background-color:#F2F7F8;border-radius:7px;font-size:1.2em;color:#333333;\"><div class=\"fusion-fss-plugin\"><span class=\"fusion-fss-plugin-icon\"><svg width=\"80\" height=\"100\" viewBox=\"0 0 80 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0)\"><path d=\"M43.0271 64.4074C39.8465 65.6977 36.9029 66.3938 34.7628 66.2785C31.9907 66.124 30.8071 64.9013 30.8029 64.4416C30.8007 64.1142 31.8341 63.0886 35.0247 62.8566C35.525 62.821 36.0531 62.7982 36.5968 62.7982C38.7768 62.7982 41.203 63.1569 43.0271 64.4074ZM48.9769 92.519C37.3142 95.7359 24.9897 92.7688 17.5745 84.9536C12.3271 79.4236 10.5677 72.503 12.7463 65.9667C17.1289 52.8159 38.1327 44.9224 51.5561 44.9224C51.7006 44.9224 51.8444 44.9231 51.9867 44.9252C56.9886 44.9893 60.4524 46.1985 61.0268 48.0824C61.3484 49.1364 60.5876 50.9818 58.9913 53.0173C56.1744 56.6093 51.8942 59.8646 47.5407 62.2524C44.7807 59.2241 40.3532 57.8462 34.6909 58.254C28.3874 58.7116 26.1654 61.7705 26.1882 64.4807C26.2131 67.4357 29.0784 70.585 34.5066 70.8867C37.7918 71.0661 41.7183 70.054 45.6611 68.3289C46.2397 70.5992 46.0604 73.5777 45.1138 77.1291C44.7857 78.3596 45.5173 79.625 46.7486 79.9531C47.9784 80.2812 49.2438 79.5496 49.5726 78.3176C50.8594 73.4923 50.9547 69.4448 49.863 66.2294C55.0107 63.3406 59.7692 59.5031 62.6224 55.8655C65.2998 52.4515 66.2478 49.3798 65.4415 46.7351C64.8557 44.8149 63.4764 43.2919 61.3983 42.2115C61.557 24.8716 64.6308 12.8943 67.3979 12.878H67.415C67.8214 12.878 68.3715 12.9691 69.0455 13.6388C71.2938 15.8735 73.9726 23.2098 73.9726 45.4711C73.9726 67.4364 72.0923 86.1378 48.9769 92.519ZM26.9597 41.2877C26.9568 41.2301 26.9639 41.1731 26.9568 41.1148C26.9469 41.0315 26.9369 40.9433 26.9262 40.8579C26.5946 36.1229 27.1625 32.3914 28.6066 30.3901C29.324 29.3966 30.2235 28.8642 31.4384 28.7148C33.1323 28.5105 34.5101 28.9475 35.6674 30.0592C37.9085 32.2135 39.2166 36.8716 39.0921 41.9674C35.2496 42.9154 31.3153 44.2655 27.5774 46.0035C27.2828 44.3495 27.0792 42.7738 26.9597 41.2877ZM46.8382 33.2476C47.688 32.3231 48.7719 31.8733 50.1548 31.8733C52.3525 31.8733 53.3076 32.5921 53.8357 33.133C55.0983 34.4262 55.7787 36.9342 55.8719 40.5867C54.6898 40.423 53.4151 40.3276 52.0458 40.3106C51.8899 40.3084 51.7348 40.3077 51.5775 40.3077C49.4943 40.3077 47.224 40.4885 44.854 40.833C44.7515 37.4858 45.4511 34.7586 46.8382 33.2476ZM72.2994 10.3657C70.9152 8.98923 69.2256 8.26258 67.4107 8.26258H67.3702C61.2901 8.29888 59.1927 17.3702 58.1429 24.1905C57.8355 26.1918 57.5978 28.2344 57.4127 30.2115C57.3223 30.1104 57.2334 30.0058 57.1387 29.909C55.4221 28.1504 53.0721 27.2586 50.1548 27.2586C47.4838 27.2586 45.1615 28.2493 43.4392 30.1254C42.9481 30.6606 42.526 31.2805 42.1446 31.9452C41.3838 29.9432 40.3198 28.1305 38.8658 26.732C36.705 24.6559 33.9443 23.7571 30.8755 24.1343C28.4023 24.4382 26.3234 25.6666 24.8637 27.6892C24.858 27.6985 24.853 27.7084 24.8466 27.7163C22.3179 15.1049 17.5104 -0.123418 9.12227 0.747707C7.05833 0.964776 5.23423 2.07574 3.84855 3.95891C-2.62226 12.7556 0.41387 38.9135 3.22723 52.9824C3.44715 54.0792 4.41008 54.8386 5.4876 54.8386C5.63777 54.8386 5.79007 54.8236 5.94309 54.793C7.19213 54.5432 8.00276 53.3276 7.75295 52.0779C3.04148 28.5205 4.09266 11.4154 7.56648 6.69398C8.38281 5.58444 9.12084 5.38801 9.60551 5.33748C14.2359 4.85566 19.9402 21.0341 22.3478 41.4536C22.5407 43.9822 22.9236 46.3501 23.293 48.1905C23.2944 48.1991 23.2987 48.2069 23.3001 48.2154C16.366 52.2124 10.6439 57.6775 8.36786 64.5077C5.63208 72.713 7.7679 81.3239 14.2266 88.1306C20.5323 94.7751 29.8357 98.4083 39.6017 98.4083C43.1153 98.4083 46.6902 97.9371 50.2046 96.9671C76.4173 89.7319 78.588 68.4798 78.588 45.4711C78.588 25.7854 76.5896 14.6309 72.2994 10.3657Z\" fill=\"#0F1031\"/></g><defs><clipPath id=\"clip0\"><rect width=\"79.3105\" height=\"100\" fill=\"white\"/></clipPath></defs></svg></span><span class=\"fusion-fss-plugin-text\">The Events Calendar</span></div></div></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-329{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-329 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:20px;\" id=\"support\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-328\"><p>Many facets set the <a href=\"https://avada.theme-fusion.com/avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-85\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/video-tutorials/how-to-use-the-performance-wizard-video/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-youtube\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/avada-speed-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon tficon-file-text\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-critical-css/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-330{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-330 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"prebuiltwebsite\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-329\"><p>Simply put, <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type.</p>\n<p><a href=\"https://bit.ly/3ByCukv\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website.</p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-86\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">They are created to save you time when building a new website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A prebuilt website can be imported with a few clicks.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is mobile and SEO friendly.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">You can white-label any prebuilt website for client work.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Prebuilt websites are included with your <a href=\"https://bit.ly/3ByCukv\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">Each prebuilt website is <a href=\"https://theme-fusion.com/documentation/avada/performance/avada-optimization-guide/\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://theme-fusion.com/documentation/avada/performance/how-to-use-the-performance-wizard/\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-331{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-331 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"install\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-330\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">86</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-138 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.theme-fusion.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"Avada Prebuilt Website Import\" rel=\"noopener noreferrer\"><img width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-867914\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-200x76.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-400x153.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-600x229.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed-800x305.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-49{width:100% !important;margin-top : 20px;margin-bottom : 0px;}.fusion-builder-column-49 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-49{width:100% !important;order : 0;}.fusion-builder-column-49 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-49{width:100% !important;order : 0;}.fusion-builder-column-49 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-50{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-51 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-bottom: 0px;margin-top: 0px;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-50 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last\" style=\"margin-top:0px;margin-bottom:0px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\" style=\"background-position:left top;background-blend-mode: overlay;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-331\"></div><div class=\"fusion-clearfix\"></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-52 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-51 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-332{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-332 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"structure\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-332\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.theme-fusion.com/beer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Craft Beer</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-87\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/beer/\" target=\"_blank\" rel=\"noopener noreferrer\">Homepage Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/beer/our-beers/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Beers Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/beer/events/\" target=\"_blank\" rel=\"noopener noreferrer\">Events Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/beer/our-story/\" target=\"_blank\" rel=\"noopener noreferrer\">Our Story Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/beer/news/\" target=\"_blank\" rel=\"noopener noreferrer\">News Page Layout</a></p>\n</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" style=\"color:#5e5e5e;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">\n<p><a href=\"https://avada.theme-fusion.com/beer/find-us/\" target=\"_blank\" rel=\"noopener noreferrer\">Find Us Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-51{width:100% !important;margin-top : 20px;margin-bottom : 10px;}.fusion-builder-column-51 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-51{width:100% !important;order : 0;}.fusion-builder-column-51 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-51{width:100% !important;order : 0;}.fusion-builder-column-51 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-52{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-53 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-52 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-333{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-333 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"layouts\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-333\"><p>Before we look at the specific Layouts on the Avada Craft Beer prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-layouts-and-layout-sections/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://theme-fusion.com/documentation/fusion-builder/theme-builder/understanding-conditional-layouts/\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-139 hover-type-none\"><img width=\"1050\" height=\"1050\" alt=\"Avada Layout Sections Legend\" title=\"Avada Layout Sections Legend\" src=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-867864\" srcset=\"https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-200x200.png 200w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-400x400.png 400w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-600x600.png 600w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image-800x800.png 800w, https://theme-fusion.com/wp-content/uploads/2021/06/builder-layout-schematic-post-image.png 1050w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-334{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-334 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"wordpresspages\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-334\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-335{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-335 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"change\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-335\"><p>The <a href=\"https://avada.theme-fusion.com/beer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Craft Beer</a> prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.theme-fusion.com/design-elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.theme-fusion.com/avada-live/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-140 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Live-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[aacf781a18dc1b75c33]\" data-title=\"Avada Beer Live Editing\" title=\"Avada Beer Live Editing\"><img width=\"1920\" height=\"935\" alt=\"Live Editor\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Live-Editing.jpg\" class=\"img-responsive wp-image-870972\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Live-Editing-200x97.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Live-Editing-400x195.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Live-Editing-600x292.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Live-Editing-800x390.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Live-Editing-1200x584.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Live-Editing.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-336\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-141 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[1598733f2362c613699]\" data-title=\"Avada Beer Backend Editing\" title=\"Avada Beer Backend Editing\"><img width=\"1903\" height=\"852\" alt=\"Back-end Editing\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Backend-Editing.jpg\" class=\"img-responsive wp-image-870973\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Backend-Editing-200x90.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Backend-Editing-400x179.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Backend-Editing-600x269.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Backend-Editing-800x358.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Backend-Editing-1200x537.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Backend-Editing.jpg 1903w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-336{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-336 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"comparison\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-337\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><ul class=\"fusion-checklist fusion-checklist-88\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\"><a href=\"https://avada.theme-fusion.com/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-52{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-52 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-52{width:100% !important;order : 0;}.fusion-builder-column-52 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-52{width:100% !important;order : 0;}.fusion-builder-column-52 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-53{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-54 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-53 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-337{margin-top:0px!important; margin-right:!important;margin-bottom:20px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-337 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:20px;\" id=\"homepage\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-338\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-338{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-338 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Header</h3></div><div class=\"fusion-text fusion-text-339\"><p>For the <a href=\"https://avada.theme-fusion.com/beer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Craft Beer</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Global-Header.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div ><span class=\" fusion-imageframe imageframe-none imageframe-142 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[ae1a5ec5831e1d3ee50]\" data-title=\"Avada Beer Header\" title=\"Avada Beer Header\"><img width=\"1914\" height=\"133\" alt=\"Avada Videographer Header\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Header.jpg\" class=\"img-responsive wp-image-870974\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Header-200x14.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Header-400x28.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Header-600x42.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Header-800x56.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Header-1200x83.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Header.jpg 1914w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-339{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-339 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"font-size:32px;margin-top:0px;margin-bottom:10px;\"><h3 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:32;line-height:1.32;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-340\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-89\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Containers, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">What are Nested Columns, and how to use them? Read more <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div><style type=\"text/css\">.fusion-body .fusion-builder-column-53{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-53 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-53{width:100% !important;order : 0;}.fusion-builder-column-53 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-53{width:100% !important;order : 0;}.fusion-builder-column-53 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-54{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-55 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-54 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-340{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-340 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">The Hero</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-143 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2a78388417eec0a7324]\" data-title=\"Avada Beer Hero\" title=\"Avada Beer Hero\"><img width=\"1916\" height=\"1558\" alt=\"Avada Beer Hero\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Hero.jpg\" class=\"img-responsive wp-image-870975\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Hero-200x163.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Hero-400x325.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Hero-600x488.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Hero-800x651.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Hero-1200x976.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Hero.jpg 1916w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-341\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a>, <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/slider-revolution/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a> or <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-third-party-integration/layer-slider/\" target=\"_blank\" rel=\"noopener noreferrer\">Layer Slider</a>, as the above-the-fold hero section, this prebuilt site uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. Added to the container are a single 1/1 (100% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column </a>with an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-341{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-341 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Introduction</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-144 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Intro.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[105b6d4a77b3a5fe811]\" data-title=\"Avada Beer Intro\" title=\"Avada Beer Intro\"><img width=\"1908\" height=\"1564\" alt=\"Avada Beer Intro\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Intro.jpg\" class=\"img-responsive wp-image-870976\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Intro-200x164.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Intro-400x328.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Intro-600x492.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Intro-800x656.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Intro-1200x984.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Intro.jpg 1908w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-342\"><p>For this example, this section is structured using a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image and one 3/5 (60% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> holding an <a href=\"https://theme-fusion.com/documentation/avada/elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, and a Text Block Element and one 1/1 (100% width) Column holding a <a href=\"https://theme-fusion.com/documentation/avada/elements/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. Simply put, Nested Columns are columns within columns. This Nested Column is structured using one 1/1 (100% width) Column with an Image Element.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-342{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-342 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Testimonials</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-145 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Testimonials.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[318ae19c77fd5048677]\" data-title=\"Avada Beer Testimonials\" title=\"Avada Beer Testimonials\"><img width=\"1906\" height=\"704\" alt=\"Avada Beer Testimonials\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Testimonials.jpg\" class=\"img-responsive wp-image-870977\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Testimonials-200x74.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Testimonials-400x148.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Testimonials-600x222.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Testimonials-800x295.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Testimonials-1200x443.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Testimonials.jpg 1906w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-343\"><p>For this example, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with one 1/2 (50% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> containing a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/testimonials-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Testimonials Element</a>. This is followed by one 1/1 (100% width) Column with a Separator Element.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-343{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-343 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Services</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-146 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Services.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[8a27a455d72fabaf5f0]\" data-title=\"Avada Beer Services\" title=\"Avada Beer Services\"><img width=\"1912\" height=\"368\" alt=\"Avada Beer Services\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Services.jpg\" class=\"img-responsive wp-image-870978\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Services-200x38.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Services-400x77.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Services-600x115.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Services-800x154.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Services-1200x231.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Services.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-344\"><p>This section uses a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with three 1/3 (33.33% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, each containing an <a href=\"https://theme-fusion.com/documentation/avada/elements/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a>, two <a href=\"https://theme-fusion.com/documentation/avada/elements/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Elements</a>, a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-344{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-344 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Newsletter signup</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-147 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Newsletter-Signup.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[a30e68ad244f25002d9]\" data-title=\"Avada Beer Newsletter Signup\" title=\"Avada Beer Newsletter Signup\"><img width=\"1908\" height=\"186\" alt=\"Avada Beer Newsletter Signup\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Newsletter-Signup.jpg\" class=\"img-responsive wp-image-870979\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Newsletter-Signup-200x19.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Newsletter-Signup-400x39.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Newsletter-Signup-600x58.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Newsletter-Signup-800x78.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Newsletter-Signup-1200x117.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Newsletter-Signup.jpg 1908w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-345\"><p>To create this layout, a <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with one 1/3 (33.33% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> with a <a href=\"https://theme-fusion.com/documentation/avada/elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a> and a <a href=\"https://theme-fusion.com/documentation/avada/elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a> and one 2/3 (66.67% width) Column with the <a href=\"https://theme-fusion.com/documentation/avada/elements/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Element</a>.</p>\n<p>Depending on the marketing goal, CTA&#8217;s can drive a variety of different actions and results for your website visitors. Check this article for some CTA inspiration, <a href=\"https://blog.hubspot.com/marketing/call-to-action-examples\" target=\"_blank\" rel=\"noopener noreferrer\">39 Call-to-Action Examples You Can&#8217;t Help But Click</a>.</p>\n<p>The <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-form-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Builder</a> is used to design and build this subscription form. The Form Builder is very flexible and allows you to create many types of forms that you can use on your <a href=\"https://bit.ly/3ByCukv\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. For any form that you create, you can add them to a page or post as a single instance or you can set the form to display <a href=\"https://theme-fusion.com/documentation/avada/forms/avada-forms-global-options/\" target=\"_blank\" rel=\"noopener noreferrer\">globally</a> across the website, which then allows you to manage one form. If a form is showing on all pages, for example, and you edit the form, the same changes show across all form instances.</p>\n</div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-54{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-54 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-54{width:100% !important;order : 0;}.fusion-builder-column-54 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-54{width:100% !important;order : 0;}.fusion-builder-column-54 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-55{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-56 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#eae9e9;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1352px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-55 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-345{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-345 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"footer\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">The Footer</h2></div><div class=\"fusion-text fusion-text-346\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul class=\"fusion-checklist fusion-checklist-90\" style=\"font-size:16px;line-height:27.2px;\"><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li style=\"background-color:rgba(255,255,255,0);\" class=\"fusion-li-item\"><span style=\"height:27.2px;width:27.2px;margin-right:11.2px;\" class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" style=\"color:#917852;\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\" style=\"margin-left:38.4px;color:#5e5e5e;\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-347\"><p>For the <a href=\"https://avada.theme-fusion.com/beer/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Craft Beer</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.theme-fusion.com/website-builder-features/avada-footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-346{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-346 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\" style=\"font-size:24px;margin-top:0px;margin-bottom:10px;\"><h4 class=\"title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;font-size:1em;--fontSize:24;--minFontSize:24px;line-height:1.4;\">Footer Content</h4></div><div ><span class=\" fusion-imageframe imageframe-none imageframe-148 hover-type-none\" style=\"border:1px solid #e0dede;\"><a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[d482b05333c68ee6606]\" data-title=\"Avada Beer Footer\" title=\"Avada Beer Footer\"><img width=\"1912\" height=\"730\" alt=\"Avada Beer Footer\" src=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Footer.jpg\" class=\"img-responsive wp-image-870981\" srcset=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Footer-200x76.jpg 200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Footer-400x153.jpg 400w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Footer-600x229.jpg 600w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Footer-800x305.jpg 800w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Footer-1200x458.jpg 1200w, https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Footer.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 800px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-348\"><p>The Footer content is structured using two <a href=\"https://theme-fusion.com/documentation/avada/elements/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Containers</a>, with the first containing three 1/3 (33.33% width) <a href=\"https://theme-fusion.com/documentation/avada/elements/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> and one 1/1 (100% width) Column. Within the Columns for these containers, you will find <a href=\"https://avada.theme-fusion.com/design-elements/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, <a href=\"https://avada.theme-fusion.com/design-elements/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, <a href=\"https://avada.theme-fusion.com/design-elements/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Elements</a>, <a href=\"https://avada.theme-fusion.com/design-elements/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Elements</a>, <a href=\"https://theme-fusion.com/documentation/avada/elements/social-links-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Social Links Element</a>, and the use of <a href=\"https://theme-fusion.com/documentation/avada/options/how-to-use-dynamic-content-options-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website copyright information. You can check how this is structured on the backend by clicking this <a href=\"https://theme-fusion.com/wp-content/uploads/2018/05/Avada-Beer-Global-Footer.jpg\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><style type=\"text/css\">@media only screen and (max-width:1024px) {.fusion-title.fusion-title-347{margin-top:0px!important; margin-right:!important;margin-bottom:10px!important;margin-left:!important;}}</style><div class=\"fusion-title title fusion-title-347 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"margin-top:0px;margin-bottom:10px;\" id=\"summary\"><h2 class=\"title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:48;line-height:1.2;\">In Summary</h2></div><div class=\"fusion-text fusion-text-349\"><p>There are <span class=\"fusion-cs-live-demos\">86</span> <a href=\"https://bit.ly/3ByCukv\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://bit.ly/3ByCukv\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div style=\"text-align:center;\"><style>.fusion-button.button-27{border-color:#ffffff;border-radius:2px 2px 2px 2px;background:#f86635;}.fusion-button.button-27 .fusion-button-text,.fusion-button.button-27 i,.fusion-button.button-27:hover .fusion-button-text,.fusion-button.button-27:hover i,.fusion-button.button-27:focus .fusion-button-text,.fusion-button.button-27:focus i,.fusion-button.button-27:active .fusion-button-text,.fusion-button.button-27:active i{color:#ffffff;}.fusion-button.button-27:hover,.fusion-button.button-27:active,.fusion-button.button-27:focus{border-color:#ffffff;background:#c84c22;}</style><a class=\"fusion-button button-flat button-xlarge button-custom button-27 fusion-button-span-yes fusion-button-default-type\" target=\"_blank\" href=\"https://bit.ly/3ByCukv\"><span class=\"fusion-button-text\">Buy Avada Craft Beer For Only $60</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div><style type=\"text/css\">.fusion-body .fusion-builder-column-55{width:100% !important;margin-top : 20px;margin-bottom : 20px;}.fusion-builder-column-55 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-55{width:100% !important;order : 0;}.fusion-builder-column-55 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-55{width:100% !important;order : 0;}.fusion-builder-column-55 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}</style></div></div><style type=\"text/css\">.fusion-body .fusion-flex-container.fusion-builder-row-56{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}</style></div></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theme-fusion.com/avada-beer-deconstructing-a-prebuilt-website/\">Avada Beer: Deconstructing a Prebuilt Website</a> appeared first on <a rel=\"nofollow\" href=\"https://theme-fusion.com\">ThemeFusion | Avada Website Builder</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://theme-fusion.com/avada-beer-deconstructing-a-prebuilt-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:30:\"https://theme-fusion.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n      hourly  \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n      1       \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:19:{s:4:\"date\";s:29:\"Thu, 24 Feb 2022 16:05:00 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:49:\"Accept-Encoding, Accept-Encoding, Accept-Encoding\";s:13:\"cf-edge-cache\";s:24:\"cache,platform=wordpress\";s:13:\"last-modified\";s:29:\"Thu, 24 Feb 2022 15:50:02 GMT\";s:4:\"link\";s:61:\"<https://theme-fusion.com/wp-json/>; rel=\"https://api.w.org/\"\";s:12:\"x-powered-by\";s:9:\"WP Engine\";s:11:\"x-cacheable\";s:17:\"CacheAlways: feed\";s:13:\"cache-control\";s:28:\"max-age=600, must-revalidate\";s:4:\"etag\";s:41:\"W/\"f9eb8f82523d2d08f68ec36a17cd45c0-gzip\"\";s:7:\"x-cache\";s:8:\"HIT: 376\";s:13:\"x-cache-group\";s:3:\"bot\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:16:\"content-encoding\";s:4:\"gzip\";s:15:\"cf-cache-status\";s:7:\"DYNAMIC\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"6e29eed47cf5913a-FRA\";}}s:5:\"build\";s:14:\"20211220193300\";}','no');
+INSERT INTO `wp_options` VALUES (16594,'_transient_timeout_feed_mod_2a09f5c5cc681cffa13dc8f7a0998b4c','1645761900','no'),(16595,'_transient_feed_mod_2a09f5c5cc681cffa13dc8f7a0998b4c','1645718700','no'),(16603,'_transient_timeout_fusion_tos_flat','1646323503','no'),(16604,'_transient_fusion_tos_flat','a:683:{s:6:\"layout\";a:7:{s:5:\"label\";s:6:\"Layout\";s:11:\"description\";s:30:\"Kontrolliert das Seitenlayout.\";s:2:\"id\";s:6:\"layout\";s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"boxed\";s:10:\"Eingerahmt\";s:4:\"wide\";s:5:\"Breit\";}s:6:\"output\";a:4:{i:0;a:6:{s:7:\"element\";s:4:\"html\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:11:\"toLowerCase\";b:1;s:13:\"value_pattern\";s:19:\"avada-html-layout-$\";s:12:\"remove_attrs\";a:2:{i:0;s:23:\"avada-html-layout-boxed\";i:1;s:22:\"avada-html-layout-wide\";}}i:1;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:11:\"toLowerCase\";b:1;s:13:\"value_pattern\";s:13:\"layout-$-mode\";s:12:\"remove_attrs\";a:2:{i:0;s:17:\"layout-boxed-mode\";i:1;s:16:\"layout-wide-mode\";}}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:11:\"site_layout\";s:7:\"trigger\";a:1:{i:0;s:22:\"fusionPositionSubmenus\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:11:\"layout_mode\";s:7:\"trigger\";a:2:{i:0;s:21:\"fusionSliderReTrigger\";i:1;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"site_width\";a:10:{s:5:\"label\";s:12:\"Seitenbreite\";s:11:\"description\";s:40:\"Kontrolliert die generelle Seitenbreite.\";s:2:\"id\";s:10:\"site_width\";s:7:\"default\";s:6:\"1200px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:4:\"desc\";s:0:\"\";s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:12:\"--site_width\";}i:1;a:2:{s:4:\"name\";s:16:\"--site_width-int\";s:8:\"callback\";a:2:{i:0;s:23:\"convert_font_size_to_px\";i:1;s:0:\"\";}}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:1:\"%\";i:1;s:8:\"contains\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:28:\"avada-has-site-width-percent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:4:\"100%\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:32:\"avada-has-site-width-100-percent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionTypographyVars\";s:2:\"id\";s:10:\"site_width\";s:7:\"trigger\";a:1:{i:0;s:20:\"fusionInitTypography\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:3:{s:36:\"site_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:35:\"site_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:17:\"site_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:13:\"margin_offset\";a:9:{s:5:\"label\";s:28:\"Boxed Mode Top/Bottom Offset\";s:11:\"description\";s:55:\"Controls the top/bottom offset of the boxed background.\";s:2:\"id\";s:13:\"margin_offset\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:7:\"default\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"boxed\";}}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:19:\"--margin_offset-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:22:\"--margin_offset-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:3:{s:4:\"name\";s:30:\"--margin_offset-top-no-percent\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vh\";}}}i:3;a:3:{s:4:\"name\";s:33:\"--margin_offset-bottom-no-percent\";s:6:\"choice\";s:6:\"bottom\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vh\";}}}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"is-zero-or-empty\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:32:\"avada-has-zero-margin-offset-top\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"scroll_offset\";a:8:{s:5:\"label\";s:29:\"Boxed Mode Offset Scroll Mode\";s:11:\"description\";s:145:\"Choose how the page will scroll. Framed scrolling will keep the offset in place, while Full scrolling removes the offset when scrolling the page.\";s:2:\"id\";s:13:\"scroll_offset\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:6:\"framed\";s:16:\"Framed Scrolling\";s:4:\"full\";s:14:\"Full Scrolling\";}s:7:\"default\";s:4:\"full\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"boxed\";}}s:6:\"output\";a:3:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:3:\"===\";i:1;s:6:\"framed\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:24:\"avada-html-layout-framed\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:11:\"toLowerCase\";b:1;s:13:\"value_pattern\";s:22:\"layout-scroll-offset-$\";s:12:\"remove_attrs\";a:2:{i:0;s:27:\"layout-scroll-offset-framed\";i:1;s:25:\"layout-scroll-offset-full\";}}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:13:\"scroll_offset\";s:7:\"trigger\";a:1:{i:0;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"boxed_modal_shadow\";a:8:{s:5:\"label\";s:22:\"Boxed Mode Shadow Type\";s:11:\"description\";s:53:\"Controls the type of shadow your boxed mode displays.\";s:2:\"id\";s:18:\"boxed_modal_shadow\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:4:\"none\";s:13:\"Kein Schatten\";s:5:\"light\";s:17:\"Leichter Schatten\";s:6:\"medium\";s:18:\"Mittlerer Schatten\";s:4:\"hard\";s:15:\"Harter Schatten\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"boxed\";}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:30:\"avada-has-boxed-modal-shadow-$\";s:12:\"remove_attrs\";a:4:{i:0;s:33:\"avada-has-boxed-modal-shadow-none\";i:1;s:34:\"avada-has-boxed-modal-shadow-light\";i:2;s:35:\"avada-has-boxed-modal-shadow-medium\";i:3;s:33:\"avada-has-boxed-modal-shadow-hard\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:12:\"main_padding\";a:7:{s:5:\"label\";s:26:\"Seiten Inhalt Innenabstand\";s:11:\"description\";s:45:\"Oberer/unterer Abstand für den Seiteninhalt.\";s:2:\"id\";s:12:\"main_padding\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:7:\"default\";a:2:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"60px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:3:{i:0;a:2:{s:4:\"name\";s:18:\"--main_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:26:\"--main_padding-top-or-55px\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:26:\"fallback_to_value_if_empty\";i:1;s:4:\"55px\";}}i:2;a:2:{s:4:\"name\";s:21:\"--main_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}}}s:16:\"hundredp_padding\";a:7:{s:5:\"label\";s:24:\"100% Breite Innenabstand\";s:11:\"description\";s:179:\"Controls the left and right padding for page content when using 100% site width, 100% width page template or 100% width post option. This does not affect Avada Builder containers.\";s:2:\"id\";s:16:\"hundredp_padding\";s:7:\"default\";s:4:\"30px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:4:{i:0;a:1:{s:4:\"name\";s:18:\"--hundredp_padding\";}i:1;a:2:{s:4:\"name\";s:35:\"--hundredp_padding-fallback_to_zero\";s:8:\"callback\";s:16:\"fallback_to_zero\";}i:2;a:2:{s:4:\"name\";s:38:\"--hundredp_padding-fallback_to_zero_px\";s:8:\"callback\";a:2:{i:0;s:26:\"fallback_to_value_if_empty\";i:1;s:3:\"0px\";}}i:3;a:2:{s:4:\"name\";s:50:\"--hundredp_padding-hundred_percent_negative_margin\";s:8:\"callback\";a:2:{i:0;s:31:\"hundred_percent_negative_margin\";i:1;s:0:\"\";}}}}s:27:\"single_sidebar_layouts_info\";a:4:{s:5:\"label\";s:29:\"Einzelnes Seitenleiste Layout\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"single_sidebar_layouts_info\";s:4:\"type\";s:4:\"info\";}s:13:\"sidebar_width\";a:7:{s:5:\"label\";s:28:\"Einzelne Seitenleiste Breite\";s:11:\"description\";s:68:\"Steuert die Breite der Sidebar, wenn nur eine Sidebar vorhanden ist.\";s:2:\"id\";s:13:\"sidebar_width\";s:7:\"default\";s:3:\"24%\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:15:\"--sidebar_width\";}}}s:14:\"sidebar_gutter\";a:6:{s:5:\"label\";s:29:\"Einzelne Seitenleiste Abstand\";s:11:\"description\";s:78:\"Steuert den Abstand zwischen dem Hauptinhalt und einer einzelnen Seitenleiste.\";s:2:\"id\";s:14:\"sidebar_gutter\";s:7:\"default\";s:2:\"6%\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--sidebar_gutter\";}}}s:25:\"dual_sidebar_layouts_info\";a:4:{s:5:\"label\";s:27:\"Duales Seitenleisten Layout\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"dual_sidebar_layouts_info\";s:4:\"type\";s:4:\"info\";}s:17:\"sidebar_2_1_width\";a:7:{s:5:\"label\";s:26:\"Dual Seitenleiste Breite 1\";s:11:\"description\";s:63:\"Controls the width of sidebar 1 when dual sidebars are present.\";s:2:\"id\";s:17:\"sidebar_2_1_width\";s:7:\"default\";s:3:\"20%\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--sidebar_2_1_width\";}}}s:17:\"sidebar_2_2_width\";a:7:{s:5:\"label\";s:26:\"Dual Seitenleiste Breite 2\";s:11:\"description\";s:63:\"Controls the width of sidebar 2 when dual sidebars are present.\";s:2:\"id\";s:17:\"sidebar_2_2_width\";s:7:\"default\";s:3:\"20%\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--sidebar_2_2_width\";}}}s:19:\"dual_sidebar_gutter\";a:6:{s:5:\"label\";s:25:\"Dual Seitenleiste Abstand\";s:11:\"description\";s:107:\"Steuert den Abstand zwischen dem Hauptinhalt und den Seitenleisten, wenn zwei Seitenleisten vorhanden sind.\";s:2:\"id\";s:19:\"dual_sidebar_gutter\";s:7:\"default\";s:2:\"4%\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:21:\"--dual_sidebar_gutter\";}}}s:10:\"responsive\";a:6:{s:5:\"label\";s:17:\"Responsive Design\";s:11:\"description\";s:87:\"Turn on to use the responsive design features. If set to off, the fixed layout is used.\";s:2:\"id\";s:10:\"responsive\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{i:1;s:2:\"An\";i:0;s:3:\"Aus\";}}s:21:\"grid_main_break_point\";a:9:{s:5:\"label\";s:26:\"Grid Responsive Breakpoint\";s:11:\"description\";s:121:\"Controls when grid layouts (blog/portfolio) start to break into smaller columns. Further breakpoints are auto calculated.\";s:2:\"id\";s:21:\"grid_main_break_point\";s:7:\"default\";s:4:\"1000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:3:\"360\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:23:\"--grid_main_break_point\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"side_header_break_point\";a:9:{s:5:\"label\";s:28:\"Header Responsive Breakpoint\";s:11:\"description\";s:62:\"Controls when the desktop header changes to the mobile header.\";s:2:\"id\";s:23:\"side_header_break_point\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:25:\"--side_header_break_point\";}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"content_break_point\";a:9:{s:5:\"label\";s:34:\"Site Content Responsive Breakpoint\";s:11:\"description\";s:130:\"Controls when the site content area changes to the mobile layout. This includes all content below the header including the footer.\";s:2:\"id\";s:19:\"content_break_point\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:21:\"--content_break_point\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"sidebar_break_point\";a:8:{s:5:\"label\";s:29:\"Sidebar Responsive Breakpoint\";s:11:\"description\";s:51:\"Controls when sidebars change to the mobile layout.\";s:2:\"id\";s:19:\"sidebar_break_point\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"mobile_zoom\";a:8:{s:5:\"label\";s:18:\"Mobile Device Zoom\";s:11:\"description\";s:50:\"Turn on to enable pinch to zoom on mobile devices.\";s:2:\"id\";s:11:\"mobile_zoom\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:7:\"choices\";a:2:{s:2:\"on\";s:2:\"An\";s:3:\"off\";s:3:\"Aus\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:41:\"element_responsive_breakpoints_info_title\";a:5:{s:5:\"label\";s:30:\"Element Responsive Breakpoints\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:41:\"element_responsive_breakpoints_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:16:\"visibility_small\";a:8:{s:5:\"label\";s:12:\"Small Screen\";s:11:\"description\";s:73:\"Controls when the small screen options and visibility should take effect.\";s:2:\"id\";s:16:\"visibility_small\";s:7:\"default\";s:3:\"640\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:4:\"2000\";}s:11:\"option_name\";s:14:\"fusion_options\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:34:\"fusionRecalcVisibilityMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"visibility_medium\";a:8:{s:5:\"label\";s:13:\"Medium Screen\";s:11:\"description\";s:74:\"Controls when the medium screen options and visibility should take effect.\";s:2:\"id\";s:17:\"visibility_medium\";s:7:\"default\";s:4:\"1024\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:4:\"2000\";}s:11:\"option_name\";s:14:\"fusion_options\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:34:\"fusionRecalcVisibilityMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"visibility_large\";a:7:{s:5:\"label\";s:12:\"Large Screen\";s:11:\"description\";s:100:\"Any screen larger than that which is defined as the medium screen will be counted as a large screen.\";s:2:\"id\";s:16:\"visibility_large\";s:10:\"full_width\";b:0;s:4:\"type\";s:3:\"raw\";s:7:\"content\";s:59:\"<div id=\"fusion-visibility-large\">> <span>1024</span></div>\";s:11:\"option_name\";s:14:\"fusion_options\";}s:32:\"responsive_typography_info_title\";a:5:{s:5:\"label\";s:21:\"Responsive Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:32:\"responsive_typography_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:22:\"typography_sensitivity\";a:9:{s:5:\"label\";s:33:\"Responsive Typography Sensitivity\";s:11:\"description\";s:83:\"Set to 0 to disable responsive typography. Increase the value for a greater effect.\";s:2:\"id\";s:22:\"typography_sensitivity\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:3:\".01\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionTypographyVars\";s:2:\"id\";s:22:\"typography_sensitivity\";s:7:\"trigger\";a:1:{i:0;s:20:\"fusionInitTypography\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:24:\"--typography_sensitivity\";}}}s:17:\"typography_factor\";a:9:{s:5:\"label\";s:24:\"Minimum Font Size Factor\";s:11:\"description\";s:112:\"The minimum font-size of elements affected by responsive typography is body font-size multiplied by this factor.\";s:2:\"id\";s:17:\"typography_factor\";s:7:\"default\";s:3:\"1.5\";s:4:\"type\";s:6:\"slider\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"4\";s:4:\"step\";s:3:\".01\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionTypographyVars\";s:2:\"id\";s:17:\"typography_factor\";s:7:\"trigger\";a:1:{i:0;s:20:\"fusionInitTypography\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--typography_factor\";}}}s:13:\"color_palette\";a:5:{s:5:\"label\";s:13:\"Color Palette\";s:11:\"description\";s:537:\"Set your global color palette. The colors defined here can be used from other global options, from page options and element options. For best results, the 8 colors of the core palette should be set from lightest to darkest. <strong>IMPORTANT NOTE:</strong> If a global color that is used by other options gets deleted, these corresponding options will display a default color instead. Colors are internally stored with a fixed counter. Thus, adding a new color after deleting an old one, will set the same internal name to the new color.\";s:2:\"id\";s:13:\"color_palette\";s:7:\"default\";a:8:{s:6:\"color1\";a:2:{s:5:\"color\";s:19:\"rgba(255,255,255,1)\";s:5:\"label\";s:7:\"Color 1\";}s:6:\"color2\";a:2:{s:5:\"color\";s:19:\"rgba(249,249,251,1)\";s:5:\"label\";s:7:\"Color 2\";}s:6:\"color3\";a:2:{s:5:\"color\";s:19:\"rgba(242,243,245,1)\";s:5:\"label\";s:7:\"Color 3\";}s:6:\"color4\";a:2:{s:5:\"color\";s:19:\"rgba(101,189,125,1)\";s:5:\"label\";s:7:\"Color 4\";}s:6:\"color5\";a:2:{s:5:\"color\";s:18:\"rgba(25,143,217,1)\";s:5:\"label\";s:7:\"Color 5\";}s:6:\"color6\";a:2:{s:5:\"color\";s:16:\"rgba(67,69,73,1)\";s:5:\"label\";s:7:\"Color 6\";}s:6:\"color7\";a:2:{s:5:\"color\";s:16:\"rgba(33,35,38,1)\";s:5:\"label\";s:7:\"Color 7\";}s:6:\"color8\";a:2:{s:5:\"color\";s:16:\"rgba(20,22,23,1)\";s:5:\"label\";s:7:\"Color 8\";}}s:4:\"type\";s:13:\"color-palette\";}s:13:\"primary_color\";a:6:{s:5:\"label\";s:10:\"Grundfarbe\";s:11:\"description\";s:57:\"Controls the main highlight color throughout the website.\";s:2:\"id\";s:13:\"primary_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:6:{i:0;a:2:{s:4:\"name\";s:15:\"--primary_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:19:\"--primary_color-85a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.85\";}}i:2;a:2:{s:4:\"name\";s:18:\"--primary_color-7a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.7\";}}i:3;a:2:{s:4:\"name\";s:18:\"--primary_color-5a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.5\";}}i:4;a:2:{s:4:\"name\";s:19:\"--primary_color-35a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.35\";}}i:5;a:2:{s:4:\"name\";s:18:\"--primary_color-2a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.2\";}}}}s:44:\"header_global_header_template_content_notice\";a:4:{s:2:\"id\";s:44:\"header_global_header_template_content_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:15:\"header_position\";a:8:{s:5:\"label\";s:26:\"Position des Kopfbereiches\";s:11:\"description\";s:205:\"Controls the position of the header to be in the top, left or right of the site. The main menu height, header padding and logo margin options will auto adjust based off your selection for ideal aesthetics.\";s:2:\"id\";s:15:\"header_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:3:\"top\";s:4:\"Oben\";s:4:\"left\";s:5:\"Links\";s:5:\"right\";s:6:\"Rechts\";}s:15:\"partial_refresh\";a:2:{s:34:\"header_position_remove_before_hook\";a:3:{s:8:\"selector\";s:112:\".avada-hook-before-header-wrapper, .fusion-header-wrapper, #side-header-sticky, #side-header, #sliders-container\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:34:\"header_position_replace_after_hook\";a:4:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:15:\"header_position\";}s:21:\"success_trigger_event\";s:40:\"header-rendered fusion-partial-wooslider\";}}s:6:\"output\";a:3:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:15:\"header_position\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:21:\"avadaFusionSliderVars\";s:2:\"id\";s:15:\"header_position\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:1:{s:11:\"js_callback\";a:1:{i:0;s:22:\"change_header_position\";}}}}s:13:\"header_layout\";a:10:{s:5:\"label\";s:27:\"Wähle das Kopfzeilenlayout\";s:11:\"description\";s:322:\"Controls the general layout of the header. Headers 2-5 allow additional content areas via the header content options 1-3. Header 6 only allows parent level menu items, no child levels will display. The main menu height, header padding and logo margin options will auto adjust based off your selection for ideal aesthetics.\";s:2:\"id\";s:13:\"header_layout\";s:7:\"default\";s:2:\"v3\";s:4:\"type\";s:11:\"radio-image\";s:7:\"choices\";a:7:{s:2:\"v1\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header1.jpg\";s:2:\"v2\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header2.jpg\";s:2:\"v3\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header3.jpg\";s:2:\"v4\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header4.jpg\";s:2:\"v5\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header5.jpg\";s:2:\"v6\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header6.jpg\";s:2:\"v7\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header7.jpg\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:15:\"partial_refresh\";a:3:{s:47:\"header_content_header_layout_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:46:\"header_content_header_layout_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:28:\"header_content_header_layout\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:14:\".fusion-header\";i:1;s:33:\"#side-header .side-header-wrapper\";}s:9:\"shortcuts\";a:3:{i:0;a:4:{s:10:\"aria_label\";s:18:\"Edit Header Layout\";s:4:\"icon\";s:14:\"fusiona-header\";s:11:\"open_parent\";b:1;s:5:\"order\";i:1;}i:1;a:5:{s:10:\"aria_label\";s:18:\"Slider hinzufügen\";s:4:\"icon\";s:15:\"fusiona-uniF61C\";s:4:\"link\";s:1:\"#\";s:9:\"css_class\";s:10:\"add-slider\";s:5:\"order\";i:4;}i:2;a:5:{s:10:\"aria_label\";s:18:\"Add Page Title Bar\";s:4:\"icon\";s:18:\"fusiona-page_title\";s:4:\"link\";s:1:\"#\";s:9:\"css_class\";s:7:\"add-ptb\";s:5:\"order\";i:5;}}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:22:\"fusion-header-layout-$\";s:12:\"remove_attrs\";a:7:{i:0;s:23:\"fusion-header-layout-v1\";i:1;s:23:\"fusion-header-layout-v2\";i:2;s:23:\"fusion-header-layout-v3\";i:3;s:23:\"fusion-header-layout-v4\";i:4;s:23:\"fusion-header-layout-v5\";i:5;s:23:\"fusion-header-layout-v6\";i:6;s:23:\"fusion-header-layout-v7\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:13:\"header_layout\";s:7:\"trigger\";a:1:{i:0;s:31:\"fusionReSettStickySidebarStatus\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"slider_position\";a:9:{s:5:\"label\";s:15:\"Slider Position\";s:11:\"description\";s:58:\"Controls if the slider displays below or above the header.\";s:2:\"id\";s:15:\"slider_position\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"below\";s:8:\"Darunter\";s:5:\"above\";s:8:\"Darüber\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:9:\"transport\";s:11:\"postMessage\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:22:\"change_slider_position\";i:1;a:1:{s:7:\"element\";s:18:\"#sliders-container\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"header_left_content\";a:9:{s:5:\"label\";s:25:\"Inhalt für Kopfbereich 1\";s:11:\"description\";s:59:\"Controls the content that displays in the top left section.\";s:2:\"id\";s:19:\"header_left_content\";s:7:\"default\";s:12:\"social_links\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:12:\"contact_info\";s:20:\"Kontaktinformationen\";s:12:\"social_links\";s:12:\"Social Links\";s:10:\"navigation\";s:10:\"Navigation\";s:11:\"leave_empty\";s:11:\"Leer lassen\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:15:\"partial_refresh\";a:3:{s:53:\"header_content_header_left_content_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:52:\"header_content_header_left_content_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:34:\"header_content_header_left_content\";a:4:{s:8:\"selector\";s:57:\".fusion-header-wrapper, #side-header-sticky, #side-header\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:22:\"header-rendered resize\";}}}s:20:\"header_right_content\";a:9:{s:5:\"label\";s:25:\"Inhalt für Kopfbereich 2\";s:11:\"description\";s:60:\"Controls the content that displays in the top right section.\";s:2:\"id\";s:20:\"header_right_content\";s:7:\"default\";s:10:\"navigation\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:12:\"contact_info\";s:20:\"Kontaktinformationen\";s:12:\"social_links\";s:12:\"Social Links\";s:10:\"navigation\";s:10:\"Navigation\";s:11:\"leave_empty\";s:11:\"Leer lassen\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:15:\"partial_refresh\";a:3:{s:54:\"header_content_header_right_content_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:53:\"header_content_header_right_content_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:35:\"header_content_header_right_content\";a:4:{s:8:\"selector\";s:57:\".fusion-header-wrapper, #side-header-sticky, #side-header\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:22:\"header-rendered resize\";}}}s:17:\"header_v4_content\";a:9:{s:5:\"label\";s:25:\"Inhalt für Kopfbereich 3\";s:11:\"description\";s:63:\"Controls the content that displays in the middle right section.\";s:2:\"id\";s:17:\"header_v4_content\";s:7:\"default\";s:18:\"tagline_and_search\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:7:\"tagline\";s:7:\"Tagline\";s:6:\"search\";s:5:\"Suche\";s:18:\"tagline_and_search\";s:18:\"Tagline And Search\";s:6:\"banner\";s:6:\"Banner\";s:4:\"none\";s:11:\"Leer lassen\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}}s:15:\"partial_refresh\";a:3:{s:51:\"header_content_header_v4_content_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:50:\"header_content_header_v4_content_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:32:\"header_content_header_v4_content\";a:4:{s:8:\"selector\";s:57:\".fusion-header-wrapper, #side-header-sticky, #side-header\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:22:\"header-rendered resize\";}}}s:13:\"header_number\";a:8:{s:5:\"label\";s:39:\"Telefonnummer für Kontaktinformationen\";s:11:\"description\";s:115:\"This content will display if you have &quot;Contact Info&quot; selected for the Header Content 1 or 2 option above.\";s:2:\"id\";s:13:\"header_number\";s:7:\"default\";s:28:\"Call Us Today! 1.555.555.555\";s:4:\"type\";s:4:\"text\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:33:\".fusion-contact-info-phone-number\";s:8:\"function\";s:4:\"html\";}}}s:12:\"header_email\";a:8:{s:5:\"label\";s:40:\"E-Mail-Adresse für Kontaktinformationen\";s:11:\"description\";s:115:\"This content will display if you have &quot;Contact Info&quot; selected for the Header Content 1 or 2 option above.\";s:2:\"id\";s:12:\"header_email\";s:7:\"default\";s:19:\"info@yourdomain.com\";s:4:\"type\";s:4:\"text\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:34:\".fusion-contact-info-email-address\";s:8:\"function\";s:4:\"html\";s:13:\"value_pattern\";s:24:\"<a href=\"mailto:$\">$</a>\";}}}s:14:\"header_tagline\";a:8:{s:5:\"label\";s:26:\"Tagline für Kopfbereich 3\";s:11:\"description\";s:105:\"This content will display if you have &quot;Tagline&quot; selected for the Header Content 3 option above.\";s:2:\"id\";s:14:\"header_tagline\";s:7:\"default\";s:19:\"Insert Tagline Here\";s:4:\"type\";s:8:\"textarea\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:8:\"contains\";s:5:\"value\";s:7:\"tagline\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:2;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:8:\"contains\";s:5:\"value\";s:7:\"tagline\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:22:\".fusion-header-tagline\";s:8:\"function\";s:4:\"html\";}}}s:18:\"header_banner_code\";a:9:{s:5:\"label\";s:29:\"Bannercode für Kopfbereich 3\";s:11:\"description\";s:194:\"This content will display if you have &quot;Banner&quot; selected for the Header Content 3 option above. Add HTML banner code for Header Content 3. Elements, like buttons, can be used here also.\";s:2:\"id\";s:18:\"header_banner_code\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:2:{s:8:\"language\";s:4:\"html\";s:5:\"theme\";s:6:\"chrome\";}s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"banner\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:2;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"banner\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:15:\"partial_refresh\";a:1:{s:26:\"header_content_banner_code\";a:4:{s:8:\"selector\";s:32:\".fusion-header-content-3-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:22:\"avada_header_content_3\";s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:39:\"header_global_header_template_bg_notice\";a:4:{s:2:\"id\";s:39:\"header_global_header_template_bg_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:15:\"header_bg_image\";a:8:{s:5:\"label\";s:39:\"Hintergrundbild für den  Kopfbereiches\";s:11:\"description\";s:384:\"Select an image for the header background. If left empty, the header background color will be used. For top headers the image displays on top of the header background color and will only display if header background color opacity is set to 1. For side headers the image displays behind the header background color so the header background opacity must be set below 1 to see the image.\";s:2:\"id\";s:15:\"header_bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--header_bg_image\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:0:\"\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:25:\"avada-has-header-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:14:\"header_bg_full\";a:7:{s:5:\"label\";s:20:\"100% Hintergrundbild\";s:11:\"description\";s:109:\"Turn on to have the header background image display at 100% in width and height according to the window size.\";s:2:\"id\";s:14:\"header_bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:24:\"avada-has-header-bg-full\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"header_bg_parallax\";a:7:{s:5:\"label\";s:24:\"Parallax Hintergrundbild\";s:11:\"description\";s:103:\"Turn on to use a parallax scrolling effect on the background image. Only works for top header position.\";s:2:\"id\";s:18:\"header_bg_parallax\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:2;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:3;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:28:\"avada-has-header-bg-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"header_bg_repeat\";a:9:{s:5:\"label\";s:23:\"Hintergrund wiederholen\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:16:\"header_bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:16:\"Alle Wiederholen\";s:8:\"repeat-x\";s:22:\"Horizontal Wiederholen\";s:8:\"repeat-y\";s:20:\"Vertikal Wiederholen\";s:9:\"no-repeat\";s:18:\"Keine Wiederholung\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:18:\"--header_bg_repeat\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"avada-header-bg-$\";s:12:\"remove_attrs\";a:4:{i:0;s:22:\"avada-header-bg-repeat\";i:1;s:24:\"avada-header-bg-repeat-x\";i:2;s:24:\"avada-header-bg-repeat-y\";i:3;s:25:\"avada-header-bg-no-repeat\";}}}}s:44:\"header_global_header_template_styling_notice\";a:4:{s:2:\"id\";s:44:\"header_global_header_template_styling_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:17:\"side_header_width\";a:9:{s:5:\"label\";s:55:\"Breite des Kopfbereiches für die linke/rechte Position\";s:11:\"description\";s:52:\"Controls the width of the left or right side header.\";s:2:\"id\";s:17:\"side_header_width\";s:7:\"default\";s:3:\"280\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"800\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:19:\"--side_header_width\";s:13:\"value_pattern\";s:3:\"$px\";}i:1;a:1:{s:4:\"name\";s:23:\"--side_header_width-int\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:6:\"resize\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:14:\"header_padding\";a:8:{s:5:\"label\";s:25:\"Kopfbereich Innen Abstand\";s:11:\"description\";s:58:\"Controls the top/right/bottom/left padding for the header.\";s:2:\"id\";s:14:\"header_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:20:\"--header_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:23:\"--header_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:21:\"--header_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:22:\"--header_padding-right\";s:6:\"choice\";s:5:\"right\";}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:18:\"header_padding_top\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:6:\"bottom\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:21:\"header_padding_bottom\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"header_shadow\";a:6:{s:5:\"label\";s:26:\"Schatten des Kopfbereiches\";s:11:\"description\";s:40:\"Turn on to display a header drop shadow.\";s:2:\"id\";s:13:\"header_shadow\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:55:\".fusion-top-header .fusion-header-wrapper, #side-header\";s:9:\"className\";s:20:\"fusion-header-shadow\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"header_100_width\";a:7:{s:5:\"label\";s:29:\"100% Breite des Kopfbereiches\";s:11:\"description\";s:114:\"Turn on to have the header area display at 100% width according to the window size. Turn off to follow site width.\";s:2:\"id\";s:16:\"header_100_width\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"wide\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:26:\"avada-has-header-100-width\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"header_bg_color\";a:7:{s:5:\"label\";s:28:\"Kopfbereich Hintergrundfarbe\";s:11:\"description\";s:288:\"Controls the background color and opacity for the header. For top headers, opacity set below 1 will remove the header height completely. For side headers, opacity set below 1 will display a color overlay. Transparent headers are disabled on all archive pages due to technical limitations.\";s:2:\"id\";s:15:\"header_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--header_bg_color\";s:7:\"element\";s:27:\"#side-header,.fusion-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:17:\"header-not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:29:\"avada-header-color-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"archive_header_bg_color\";a:7:{s:5:\"label\";s:31:\"Archive Header Background Color\";s:11:\"description\";s:247:\"Controls the background color and opacity for the header on archive pages, search page and 404 page. For top headers, opacity set below 1 will remove the header height completely. For side headers, opacity set below 1 will display a color overlay.\";s:2:\"id\";s:23:\"archive_header_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--archive_header_bg_color\";s:7:\"element\";s:27:\"#side-header,.fusion-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:17:\"header-not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:29:\"avada-header-color-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"header_border_color\";a:9:{s:5:\"label\";s:29:\"Rahmenfarbe des Kopfbereiches\";s:11:\"description\";s:117:\"Controls the border colors for the header. If using left or right header position it controls the menu divider lines.\";s:2:\"id\";s:19:\"header_border_color\";s:7:\"default\";s:19:\"rgba(226,226,226,0)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--header_border_color\";s:7:\"element\";s:35:\".fusion-header-wrapper,#side-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:42:\"avada-header-border-color-full-transparent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"header_top_bg_color\";a:8:{s:5:\"label\";s:41:\"Hintergrundfarbe des oberen Kopfbereiches\";s:11:\"description\";s:86:\"Steuert die Hintergrundfarbe des in Überschriften 2-5 genutzten oberen Kopfbereiches.\";s:2:\"id\";s:19:\"header_top_bg_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v1\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--header_top_bg_color\";s:7:\"element\";s:24:\".fusion-secondary-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:10:\"not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:30:\"avada-header-top-bg-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"tagline_font_size\";a:9:{s:5:\"label\";s:41:\"Schriftgrösse der Tagline im Kopfbereich\";s:11:\"description\";s:64:\"Controls the font size for the tagline text when using header 4.\";s:2:\"id\";s:17:\"tagline_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--tagline_font_size\";s:7:\"element\";s:22:\".fusion-header-tagline\";}}}s:18:\"tagline_font_color\";a:8:{s:5:\"label\";s:38:\"Schriftfarbe des Tagline Kopfbereiches\";s:11:\"description\";s:65:\"Controls the font color for the tagline text when using header 4.\";s:2:\"id\";s:18:\"tagline_font_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--tagline_font_color\";s:7:\"element\";s:22:\".fusion-header-tagline\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:43:\"header_global_header_template_sticky_notice\";a:4:{s:2:\"id\";s:43:\"header_global_header_template_sticky_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:13:\"header_sticky\";a:7:{s:5:\"label\";s:18:\"Fixierte Kopfzeile\";s:11:\"description\";s:34:\"Turn on to enable a sticky header.\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"default\";i:1;s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:3:{s:40:\"header_content_sticky_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:39:\"header_content_sticky_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:21:\"header_content_sticky\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:43:\"fusion-reinit-sticky-header header-rendered\";}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"fusion-sticky-header\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"header_sticky_tablet\";a:7:{s:5:\"label\";s:30:\"Fixierte Kopfzeile auf Tablets\";s:11:\"description\";s:60:\"Turn on to enable a sticky header when scrolling on tablets.\";s:2:\"id\";s:20:\"header_sticky_tablet\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:23:\"no-tablet-sticky-header\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"header_sticky_tablet\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:20:\"header_sticky_tablet\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:20:\"header_sticky_tablet\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"header_sticky_mobile\";a:7:{s:5:\"label\";s:36:\"Fixierte Kopfzeile auf Mobilgeräten\";s:11:\"description\";s:60:\"Turn on to enable a sticky header when scrolling on mobiles.\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:23:\"no-mobile-sticky-header\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"header_sticky_shrinkage\";a:7:{s:5:\"label\";s:28:\"Fixierte Kopfzeile Animation\";s:11:\"description\";s:124:\"Turn on to allow the sticky header to animate to a smaller height when activated. Only works with header v1 - v3, v6 and v7.\";s:2:\"id\";s:23:\"header_sticky_shrinkage\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:22:\"avada-sticky-shrinkage\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"header_sticky_type2_layout\";a:8:{s:5:\"label\";s:40:\"Sticky Header Display For Headers 4 - 5 \";s:11:\"description\";s:70:\"Controls what displays in the sticky header when using header v4 - v5.\";s:2:\"id\";s:26:\"header_sticky_type2_layout\";s:7:\"default\";s:9:\"menu_only\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:9:\"menu_only\";s:9:\"Nur Menü\";s:13:\"menu_and_logo\";s:22:\"Menü und Logo Bereich\";}s:8:\"required\";a:7:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v1\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v2\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v3\";}i:5;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:6;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v7\";}}s:15:\"partial_refresh\";a:3:{s:45:\"header_sticky_type2_layout_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:44:\"header_sticky_type2_layout_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:33:\"header_sticky_type2_layout_layout\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:43:\"fusion-reinit-sticky-header header-rendered\";}}}s:20:\"header_sticky_shadow\";a:7:{s:5:\"label\";s:20:\"Sticky Header Shadow\";s:11:\"description\";s:47:\"Turn on to display a sticky header drop shadow.\";s:2:\"id\";s:20:\"header_sticky_shadow\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"header_sticky_shadow\";s:7:\"trigger\";a:2:{i:0;s:5:\"ready\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:14:\".fusion-header\";s:9:\"className\";s:20:\"fusion-sticky-shadow\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"header_sticky_bg_color\";a:8:{s:5:\"label\";s:30:\"Sticky Header Background Color\";s:11:\"description\";s:52:\"Controls the background color for the sticky header.\";s:2:\"id\";s:22:\"header_sticky_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--header_sticky_bg_color\";s:7:\"element\";s:53:\".fusion-arrow-svg,.fusion-header-wrapper,#side-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:9:\"globalVar\";s:19:\"fusionContainerVars\";s:2:\"id\";s:28:\"is_sticky_header_transparent\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:46:\"fusion-element-render-fusion_builder_container\";}s:8:\"callback\";s:25:\"fusionReturnColorAlphaInt\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"header_sticky_menu_color\";a:7:{s:5:\"label\";s:29:\"Sticky Header Menu Font Color\";s:11:\"description\";s:59:\"Controls the color for main menu text in the sticky header.\";s:2:\"id\";s:24:\"header_sticky_menu_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--header_sticky_menu_color\";s:7:\"element\";s:17:\".fusion-main-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"header_sticky_nav_padding\";a:8:{s:5:\"label\";s:52:\"Abstand der Menüelemente des fixierten Kopfbereichs\";s:11:\"description\";s:63:\"Controls the space between each menu item in the sticky header.\";s:2:\"id\";s:25:\"header_sticky_nav_padding\";s:7:\"default\";s:2:\"35\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:27:\"--header_sticky_nav_padding\";s:7:\"element\";s:41:\".fusion-main-menu,.fusion-logo-background\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:27:\"header_sticky_nav_font_size\";a:8:{s:5:\"label\";s:57:\"Schriftgrösse der Navigation des fixierten Kopfbereiches\";s:11:\"description\";s:62:\"Controls the font size of the menu items in the sticky header.\";s:2:\"id\";s:27:\"header_sticky_nav_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:29:\"--header_sticky_nav_font_size\";s:7:\"element\";s:17:\".fusion-main-menu\";}}}s:34:\"menu_global_header_template_notice\";a:4:{s:2:\"id\";s:34:\"menu_global_header_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:10:\"nav_height\";a:11:{s:5:\"label\";s:16:\"Hauptmenü Höhe\";s:11:\"description\";s:155:\"Kontrolliert die Menühöhe.<span id=\"fusion-menu-height-hint\" style=\"display:inline\">  Um an Logogröße anzupassen setze auf <strong>370</strong>.</span>\";s:2:\"id\";s:10:\"nav_height\";s:7:\"default\";s:2:\"94\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"300\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"--nav_height\";s:7:\"element\";s:17:\".fusion-main-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:10:\"nav_height\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:14:\".fusion-header\";i:1;s:33:\"#side-header .side-header-wrapper\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:20:\"Hauptmenu bearbeiten\";s:4:\"link\";s:73:\"https://unternehmen.wir-noi.org/wp-admin/nav-menus.php?action=edit&menu=3\";s:5:\"order\";i:3;}}}}s:20:\"menu_highlight_style\";a:10:{s:5:\"label\";s:27:\"Hauptmenu Hervorhebungsstil\";s:11:\"description\";s:508:\"Controls the highlight style for main menu links and also affects the look of menu dropdowns. Arrow style cannot work with a transparent header background. Bar highlights will display vertically on side header layouts. <strong>IMPORTANT:</strong> Arrow & Background style can require configuration of other options depending on desired effect. <a href=\"https://theme-fusion.com/documentation/avada/main-menu-highlight-styles/\" target=\"_blank\" rel=\"noopener noreferrer\">See this post for more information</a>.\";s:2:\"id\";s:20:\"menu_highlight_style\";s:7:\"default\";s:3:\"bar\";s:7:\"choices\";a:5:{s:3:\"bar\";s:12:\"Obere Leiste\";s:9:\"bottombar\";s:13:\"Untere Leiste\";s:5:\"arrow\";s:5:\"Pfeil\";s:10:\"background\";s:11:\"Hintergrund\";s:9:\"textcolor\";s:9:\"Nur Farbe\";}s:4:\"type\";s:6:\"select\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:28:\"avada-menu-highlight-style-$\";s:12:\"remove_attrs\";a:5:{i:0;s:30:\"avada-menu-highlight-style-bar\";i:1;s:36:\"avada-menu-highlight-style-bottombar\";i:2;s:32:\"avada-menu-highlight-style-arrow\";i:3;s:37:\"avada-menu-highlight-style-background\";i:4;s:36:\"avada-menu-highlight-style-textcolor\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:19:\"nav_highlight_style\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:3:{s:46:\"menu_highlight_style_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:45:\"menu_highlight_style_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:27:\"menu_highlight_style_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:25:\"menu_highlight_background\";a:8:{s:5:\"label\";s:36:\"Main Menu Highlight Background Color\";s:11:\"description\";s:53:\"Controls the background color of main menu highlight.\";s:2:\"id\";s:25:\"menu_highlight_background\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:10:\"background\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:10:\"background\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--menu_highlight_background\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:15:\"menu_arrow_size\";a:9:{s:5:\"label\";s:23:\"Hauptmenü Pfeilgrösse\";s:11:\"description\";s:53:\"Controls the width and height of the main menu arrow.\";s:2:\"id\";s:15:\"menu_arrow_size\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"23px\";s:6:\"height\";s:4:\"12px\";}s:4:\"type\";s:10:\"dimensions\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"arrow\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"arrow\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:3:{i:0;a:2:{s:4:\"name\";s:23:\"--menu_arrow_size-width\";s:6:\"choice\";s:5:\"width\";}i:1;a:2:{s:4:\"name\";s:24:\"--menu_arrow_size-height\";s:6:\"choice\";s:6:\"height\";}i:2;a:3:{s:4:\"name\";s:55:\"--menu_arrow_size-width-header_border_color_condition_5\";s:6:\"choice\";s:5:\"width\";s:8:\"callback\";a:2:{i:0;s:31:\"header_border_color_condition_5\";i:1;s:0:\"\";}}}}s:20:\"nav_highlight_border\";a:10:{s:5:\"label\";s:51:\"Grösse des hervorgehobenen Balkens des Hauptmenüs\";s:11:\"description\";s:44:\"Controls the size of the menu highlight bar.\";s:2:\"id\";s:20:\"nav_highlight_border\";s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"40\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:38:\"fusion-gutter-and-or-and-or-and-or-and\";s:8:\"required\";a:8:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:4;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:5;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:6;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:7;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--nav_highlight_border\";s:13:\"value_pattern\";s:3:\"$px\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;s:1:\"0\";}}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"nav_highlight_border\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:5:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:10:\"nav_height\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}s:9:\"condition\";a:5:{i:0;s:20:\"menu_highlight_style\";i:1;s:3:\"===\";i:2;s:3:\"bar\";i:3;s:1:\"$\";i:4;s:1:\"0\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"nav_padding\";a:8:{s:5:\"label\";s:25:\"Abstand der Menüelemente\";s:11:\"description\";s:55:\"Controls the right padding for menu text (left on RTL).\";s:2:\"id\";s:11:\"nav_padding\";s:7:\"default\";s:2:\"48\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:13:\"--nav_padding\";s:13:\"value_pattern\";s:3:\"$px\";}i:1;a:2:{s:4:\"name\";s:21:\"--nav_padding-no-zero\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:3:\"$px\";i:1;s:0:\"\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:11:\"nav_padding\";i:1;s:2:\"==\";i:2;s:1:\"0\";}}}}}}}s:18:\"mobile_nav_padding\";a:8:{s:5:\"label\";s:32:\"Main Menu Item Padding On Mobile\";s:11:\"description\";s:110:\"Controls the right padding for menu text (left on RTL) when the normal desktop menu is used on mobile devices.\";s:2:\"id\";s:18:\"mobile_nav_padding\";s:7:\"default\";s:2:\"25\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--mobile_nav_padding\";s:7:\"element\";s:17:\".fusion-main-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:15:\"megamenu_shadow\";a:8:{s:5:\"label\";s:21:\"Main Menu Drop Shadow\";s:11:\"description\";s:51:\"Turn on to display a drop shadow on menu dropdowns.\";s:2:\"id\";s:15:\"megamenu_shadow\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:25:\"avada-has-megamenu-shadow\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:28:\"main_menu_sub_menu_animation\";a:9:{s:5:\"label\";s:40:\"Main Menu Dropdown / Mega Menu Animation\";s:11:\"description\";s:46:\"Controls the animation type for all sub-menus.\";s:2:\"id\";s:28:\"main_menu_sub_menu_animation\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:4:\"fade\";s:7:\"choices\";a:2:{s:4:\"fade\";s:10:\"Verblassen\";s:5:\"slide\";s:5:\"Folie\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"fusion-sub-menu-$\";s:12:\"remove_attrs\";a:2:{i:0;s:20:\"fusion-sub-menu-fade\";i:1;s:21:\"fusion-sub-menu-slide\";}}}s:29:\"dropdown_menu_top_border_size\";a:9:{s:5:\"label\";s:34:\"Main Menu Dropdown Top Border Size\";s:11:\"description\";s:58:\"Controls top border size of dropdown menus and mega menus.\";s:2:\"id\";s:29:\"dropdown_menu_top_border_size\";s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:38:\"fusion-gutter-and-or-and-or-and-or-and\";s:8:\"required\";a:8:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:4;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:5;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:6;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:7;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--dropdown_menu_top_border_size\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:19:\"dropdown_menu_width\";a:9:{s:5:\"label\";s:30:\"Breite des Hauptmenü Dropdown\";s:11:\"description\";s:35:\"Controls the width of the dropdown.\";s:2:\"id\";s:19:\"dropdown_menu_width\";s:7:\"default\";s:3:\"200\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--dropdown_menu_width\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:34:\"mainmenu_dropdown_vertical_padding\";a:9:{s:5:\"label\";s:31:\"Main Menu Dropdown Item Padding\";s:11:\"description\";s:56:\"Controls the top/bottom padding for dropdown menu items.\";s:2:\"id\";s:34:\"mainmenu_dropdown_vertical_padding\";s:7:\"default\";s:2:\"12\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:36:\"--mainmenu_dropdown_vertical_padding\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:33:\"mainmenu_dropdown_display_divider\";a:8:{s:5:\"label\";s:25:\"Hauptmenu Dropdown Teiler\";s:11:\"description\";s:57:\"Turn on to display a divider line on dropdown menu items.\";s:2:\"id\";s:33:\"mainmenu_dropdown_display_divider\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:35:\"avada-has-mainmenu-dropdown-divider\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:31:\"menu_display_dropdown_indicator\";a:9:{s:5:\"label\";s:28:\"Hauptmenu Dropdown Indikator\";s:11:\"description\";s:68:\"Turn on to display arrow indicators next to parent level menu items.\";s:2:\"id\";s:31:\"menu_display_dropdown_indicator\";s:7:\"default\";s:4:\"none\";s:7:\"choices\";a:3:{s:6:\"parent\";s:13:\"Übergeordnet\";s:12:\"parent_child\";s:13:\"Eltern + Kind\";s:4:\"none\";s:5:\"Keine\";}s:4:\"type\";s:6:\"select\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:15:\"partial_refresh\";a:3:{s:57:\"header_menu_display_dropdown_indicator_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:56:\"header_menu_display_dropdown_indicator_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:38:\"header_menu_display_dropdown_indicator\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:20:\"main_nav_search_icon\";a:7:{s:5:\"label\";s:27:\"Hauptmenu Symbol für Suche\";s:11:\"description\";s:52:\"Turn on to display the search icon in the main menu.\";s:2:\"id\";s:20:\"main_nav_search_icon\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:3:{s:46:\"header_main_nav_search_icon_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:45:\"header_main_nav_search_icon_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:27:\"header_main_nav_search_icon\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:30:\"avada-has-main-nav-search-icon\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"main_nav_search_layout\";a:9:{s:5:\"label\";s:22:\"Hauptmenu Suche Layout\";s:11:\"description\";s:55:\"Controls the layout of the search bar in the main menu.\";s:2:\"id\";s:22:\"main_nav_search_layout\";s:7:\"default\";s:7:\"overlay\";s:7:\"choices\";a:2:{s:8:\"dropdown\";s:8:\"Dropdown\";s:7:\"overlay\";s:12:\"Menu Overlay\";}s:4:\"type\";s:15:\"radio-buttonset\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:20:\"main_nav_search_icon\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:15:\"partial_refresh\";a:1:{s:30:\"main_nav_search_layout_refresh\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:8:\"dropdown\";i:1;s:7:\"overlay\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";a:2:{i:0;s:32:\"fusion-main-menu-search-dropdown\";i:1;s:31:\"fusion-main-menu-search-overlay\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"main_nav_icon_circle\";a:6:{s:5:\"label\";s:29:\"Main Menu Icon Circle Borders\";s:11:\"description\";s:64:\"Turn on to display a circle border on the cart and search icons.\";s:2:\"id\";s:20:\"main_nav_icon_circle\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"fusion-has-main-nav-icon-circle\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"main_nav_highlight_radius\";a:6:{s:5:\"label\";s:27:\"Menu Highlight Label Radius\";s:11:\"description\";s:61:\"Controls the border radius of all your menu highlight labels.\";s:2:\"id\";s:25:\"main_nav_highlight_radius\";s:7:\"default\";s:3:\"2px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--main_nav_highlight_radius\";s:7:\"element\";s:28:\".fusion-menu-highlight-label\";}}}s:17:\"menu_sub_bg_color\";a:8:{s:5:\"label\";s:35:\"Main Menu Dropdown Background Color\";s:11:\"description\";s:56:\"Controls the background color of the main menu dropdown.\";s:2:\"id\";s:17:\"menu_sub_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--menu_sub_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"menu_bg_hover_color\";a:8:{s:5:\"label\";s:41:\"Main Menu Dropdown Background Hover Color\";s:11:\"description\";s:62:\"Controls the background hover color of the main menu dropdown.\";s:2:\"id\";s:19:\"menu_bg_hover_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--menu_bg_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"menu_sub_sep_color\";a:9:{s:5:\"label\";s:34:\"Main Menu Dropdown Separator Color\";s:11:\"description\";s:63:\"Controls the color of the separators in the main menu dropdown.\";s:2:\"id\";s:18:\"menu_sub_sep_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--menu_sub_sep_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";a:3:{i:0;s:76:\".fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents\";i:1;s:74:\".fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents\";i:2;s:74:\".fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents\";}s:8:\"property\";s:6:\"border\";s:11:\"js_callback\";a:2:{i:0;s:31:\"fusionReturnStringIfTransparent\";i:1;a:2:{s:11:\"transparent\";s:1:\"0\";s:6:\"opaque\";s:0:\"\";}}s:17:\"sanitize_callback\";a:2:{i:0;s:22:\"Avada_Output_Callbacks\";i:1;s:18:\"menu_sub_sep_color\";}}}}s:17:\"menu_h45_bg_color\";a:8:{s:5:\"label\";s:59:\"Hintergrundfarbe des Hauptmenüs für Kopfbereich 4 &amp; 5\";s:11:\"description\";s:72:\"Controls the background color of the main menu when using header 4 or 5.\";s:2:\"id\";s:17:\"menu_h45_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--menu_h45_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"main_menu_typography_info\";a:4:{s:5:\"label\";s:20:\"Main Menu Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"main_menu_typography_info\";s:4:\"type\";s:4:\"info\";}s:14:\"nav_typography\";a:8:{s:2:\"id\";s:14:\"nav_typography\";s:5:\"label\";s:16:\"Menus Typography\";s:11:\"description\";s:72:\"These settings control the typography for all main menu top-level items.\";s:4:\"type\";s:10:\"typography\";s:5:\"class\";s:17:\"avada-no-fontsize\";s:7:\"choices\";a:5:{s:11:\"font-family\";b:1;s:11:\"font-weight\";b:1;s:9:\"font-size\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:5:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:8:\"css_vars\";a:8:{i:0;a:3:{s:4:\"name\";s:28:\"--nav_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:14:\"nav_typography\";}}i:1;a:3:{s:4:\"name\";s:28:\"--nav_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:26:\"--nav_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:3;a:2:{s:4:\"name\";s:27:\"--nav_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:4;a:3:{s:4:\"name\";s:31:\"--nav_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:5;a:2:{s:4:\"name\";s:22:\"--nav_typography-color\";s:6:\"choice\";s:5:\"color\";}i:6;a:3:{s:4:\"name\";s:26:\"--nav_typography-color-65a\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;d:0.65;}}i:7;a:3:{s:4:\"name\";s:26:\"--nav_typography-color-35a\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;d:0.35;}}}}s:15:\"menu_text_align\";a:11:{s:5:\"label\";s:20:\"Main Menu Text Align\";s:11:\"description\";s:75:\"Controls the main menu text alignment for top headers 4-5 and side headers.\";s:2:\"id\";s:15:\"menu_text_align\";s:7:\"default\";s:6:\"center\";s:7:\"choices\";a:3:{s:4:\"left\";s:5:\"Links\";s:6:\"center\";s:9:\"Zentriert\";s:5:\"right\";s:6:\"Rechts\";}s:4:\"type\";s:6:\"select\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v5\";}i:2;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:17:\"--menu_text_align\";s:7:\"element\";s:17:\".fusion-main-menu\";}}s:6:\"output\";a:3:{i:0;a:0:{}i:1;a:0:{}i:2;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"menu-text-align-$\";s:12:\"remove_attrs\";a:3:{i:0;s:20:\"menu-text-align-left\";i:1;s:22:\"menu-text-align-center\";i:2;s:21:\"menu-text-align-right\";}}}s:15:\"partial_refresh\";a:3:{s:41:\"menu_text_align_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:40:\"menu_text_align_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:22:\"menu_text_align_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:22:\"menu_hover_first_color\";a:6:{s:5:\"label\";s:33:\"Main Menu Font Hover/Active Color\";s:11:\"description\";s:97:\"Controls the color for main menu text hover and active states, highlight bar and dropdown border.\";s:2:\"id\";s:22:\"menu_hover_first_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:24:\"--menu_hover_first_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:28:\"--menu_hover_first_color-65a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.65\";}}}}s:14:\"menu_sub_color\";a:8:{s:5:\"label\";s:29:\"Main Menu Dropdown Font Color\";s:11:\"description\";s:47:\"Controls the color for main menu dropdown text.\";s:2:\"id\";s:14:\"menu_sub_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--menu_sub_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"nav_dropdown_font_size\";a:9:{s:5:\"label\";s:38:\"Schriftgrösse des Hauptmenü Dropdown\";s:11:\"description\";s:51:\"Controls the font size for main menu dropdown text.\";s:2:\"id\";s:22:\"nav_dropdown_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:24:\"--nav_dropdown_font_size\";}}}s:18:\"side_nav_font_size\";a:7:{s:5:\"label\";s:25:\"Side Navigation Font Size\";s:11:\"description\";s:86:\"Controls the font size for the menu text when using the side navigation page template.\";s:2:\"id\";s:18:\"side_nav_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--side_nav_font_size\";s:7:\"element\";s:9:\".side-nav\";}}}s:31:\"flyout_menu_important_note_info\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:224:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Flyout Menu Options are only available when using Header Layout #6 or Mobile Flyout Menu. Your current setup does not utilize the flyout menu.</div>\";s:2:\"id\";s:31:\"flyout_menu_important_note_info\";s:4:\"type\";s:6:\"custom\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:3;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}}s:26:\"flyout_menu_icon_font_size\";a:9:{s:5:\"label\";s:26:\"Flyout Menu Icon Font Size\";s:11:\"description\";s:49:\"Controls the font size for the flyout menu icons.\";s:2:\"id\";s:26:\"flyout_menu_icon_font_size\";s:7:\"default\";s:4:\"20px\";s:4:\"type\";s:9:\"dimension\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:28:\"--flyout_menu_icon_font_size\";}i:1;a:2:{s:4:\"name\";s:31:\"--flyout_menu_icon_font_size_px\";s:8:\"callback\";a:1:{i:0;s:11:\"units_to_px\";}}}}s:24:\"flyout_nav_icons_padding\";a:9:{s:5:\"label\";s:24:\"Flyout Menu Icon Padding\";s:11:\"description\";s:63:\"Controls the right padding for flyout menu icons (left on RTL).\";s:2:\"id\";s:24:\"flyout_nav_icons_padding\";s:7:\"default\";s:2:\"32\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--flyout_nav_icons_padding\";s:7:\"element\";s:25:\".fusion-flyout-menu-icons\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"flyout_menu_icon_color\";a:8:{s:5:\"label\";s:22:\"Flyout Menu Icon Color\";s:11:\"description\";s:44:\"Controls the color of the flyout menu icons.\";s:2:\"id\";s:22:\"flyout_menu_icon_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--flyout_menu_icon_color\";s:7:\"element\";s:25:\".fusion-flyout-menu-icons\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"flyout_menu_icon_hover_color\";a:8:{s:5:\"label\";s:28:\"Flyout Menu Icon Hover Color\";s:11:\"description\";s:50:\"Controls the hover color of the flyout menu icons.\";s:2:\"id\";s:28:\"flyout_menu_icon_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--flyout_menu_icon_hover_color\";s:7:\"element\";s:25:\".fusion-flyout-menu-icons\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"flyout_menu_background_color\";a:8:{s:5:\"label\";s:28:\"Flyout Menu Background Color\";s:11:\"description\";s:48:\"Controls the background color of the flyout menu\";s:2:\"id\";s:28:\"flyout_menu_background_color\";s:7:\"default\";s:96:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 6%))\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--flyout_menu_background_color\";s:7:\"element\";s:22:\".fusion-flyout-menu-bg\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"flyout_menu_direction\";a:9:{s:5:\"label\";s:21:\"Flyout Menu Direction\";s:11:\"description\";s:51:\"Controls the direction the flyout menu starts from.\";s:2:\"id\";s:21:\"flyout_menu_direction\";s:7:\"default\";s:4:\"fade\";s:4:\"type\";s:6:\"select\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:7:\"choices\";a:5:{s:4:\"fade\";s:10:\"Verblassen\";s:4:\"left\";s:5:\"Links\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:3:\"top\";s:4:\"Oben\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:22:\".fusion-logo-alignment\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:29:\"avada-flyout-menu-direction-$\";s:12:\"remove_attrs\";a:5:{i:0;s:32:\"avada-flyout-menu-direction-fade\";i:1;s:32:\"avada-flyout-menu-direction-left\";i:2;s:33:\"avada-flyout-menu-direction-right\";i:3;s:34:\"avada-flyout-menu-direction-bottom\";i:4;s:31:\"avada-flyout-menu-direction-top\";}}}}s:24:\"flyout_menu_item_padding\";a:9:{s:5:\"label\";s:24:\"Flyout Menu Item Padding\";s:11:\"description\";s:47:\"Controls the padding between flyout menu items.\";s:2:\"id\";s:24:\"flyout_menu_item_padding\";s:7:\"default\";s:2:\"32\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--flyout_menu_item_padding\";s:7:\"element\";s:19:\".fusion-flyout-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"no_secondary_menu_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:227:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Secondary Top Menu Options are only available when using Header Layouts #2-5. Your current Header Layout does not utilize the secondary top menu.</div>\";s:2:\"id\";s:22:\"no_secondary_menu_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}}}s:23:\"topmenu_dropwdown_width\";a:9:{s:5:\"label\";s:29:\"Secondary Menu Dropdown Width\";s:11:\"description\";s:50:\"Controls the width of the secondary menu dropdown.\";s:2:\"id\";s:23:\"topmenu_dropwdown_width\";s:7:\"default\";s:3:\"200\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--topmenu_dropwdown_width\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:29:\"header_top_first_border_color\";a:8:{s:5:\"label\";s:28:\"Secondary Menu Divider Color\";s:11:\"description\";s:62:\"Steuert die Trennlinienfarbe der Untermenüs auf erster Ebene.\";s:2:\"id\";s:29:\"header_top_first_border_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--header_top_first_border_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"header_top_sub_bg_color\";a:8:{s:5:\"label\";s:40:\"Secondary Menu Dropdown Background Color\";s:11:\"description\";s:61:\"Controls the background color of the secondary menu dropdown.\";s:2:\"id\";s:23:\"header_top_sub_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--header_top_sub_bg_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"header_top_menu_bg_hover_color\";a:8:{s:5:\"label\";s:46:\"Secondary Menu Dropdown Background Hover Color\";s:11:\"description\";s:67:\"Controls the background hover color of the secondary menu dropdown.\";s:2:\"id\";s:30:\"header_top_menu_bg_hover_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--header_top_menu_bg_hover_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:29:\"header_top_menu_sub_sep_color\";a:8:{s:5:\"label\";s:39:\"Secondary Menu Dropdown Separator Color\";s:11:\"description\";s:68:\"Controls the color of the separators in the secondary menu dropdown.\";s:2:\"id\";s:29:\"header_top_menu_sub_sep_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--header_top_menu_sub_sep_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"secondary_menu_typography_info\";a:5:{s:5:\"label\";s:29:\"Secondary Top Menu Typography\";s:2:\"id\";s:30:\"secondary_menu_typography_info\";s:4:\"type\";s:4:\"info\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}}s:14:\"snav_font_size\";a:9:{s:5:\"label\";s:24:\"Secondary Menu Font Size\";s:11:\"description\";s:47:\"Controls the font size for secondary menu text.\";s:2:\"id\";s:14:\"snav_font_size\";s:7:\"default\";s:4:\"12px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--snav_font_size\";}}}s:11:\"sec_menu_lh\";a:9:{s:5:\"label\";s:27:\"Linienhöhe des Untermenüs\";s:11:\"description\";s:44:\"Controls the line height for secondary menu.\";s:2:\"id\";s:11:\"sec_menu_lh\";s:7:\"default\";s:4:\"48px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:13:\"--sec_menu_lh\";}i:1;a:3:{s:4:\"name\";s:16:\"--top-bar-height\";s:7:\"element\";s:14:\".fusion-header\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:11:\"calc($ / 2)\";i:1;s:6:\"21.5px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:11:\"sec_menu_lh\";i:1;s:1:\">\";i:2;s:2:\"43\";}}}}}}}s:10:\"snav_color\";a:8:{s:5:\"label\";s:25:\"Secondary Menu Font Color\";s:11:\"description\";s:43:\"Controls the color for secondary menu text.\";s:2:\"id\";s:10:\"snav_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"--snav_color\";s:7:\"element\";s:24:\".fusion-secondary-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"header_top_menu_sub_color\";a:8:{s:5:\"label\";s:34:\"Secondary Menu Dropdown Font Color\";s:11:\"description\";s:52:\"Controls the color for secondary menu dropdown text.\";s:2:\"id\";s:25:\"header_top_menu_sub_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--header_top_menu_sub_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:31:\"header_top_menu_sub_hover_color\";a:8:{s:5:\"label\";s:40:\"Secondary Menu Dropdown Font Hover Color\";s:11:\"description\";s:58:\"Controls the hover color for secondary menu dropdown text.\";s:2:\"id\";s:31:\"header_top_menu_sub_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:33:\"--header_top_menu_sub_hover_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"no_responsive_mode_info_1\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:280:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Please enable responsive mode. Mobile menus are only available when you\'re using the responsive mode. To enable it please go to the \"Responsive\" section and set the \"Responsive Design\" option to ON.</div>\";s:2:\"id\";s:25:\"no_responsive_mode_info_1\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"0\";}}}s:19:\"no_mobile_menu_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:319:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Because of the design of your Header Layout #6, only a few options are available here. More options are available when using Header Layouts #1-5 or 7. The rest of the options for Header Layout #6 are on the Flyout Menu and Main Menu tab.</div>\";s:2:\"id\";s:19:\"no_mobile_menu_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}}s:18:\"mobile_menu_design\";a:10:{s:5:\"label\";s:21:\"Mobilmenü Gestaltung\";s:11:\"description\";s:96:\"Controls the design of the mobile menu. Flyout design style only allows parent level menu items.\";s:2:\"id\";s:18:\"mobile_menu_design\";s:7:\"default\";s:7:\"classic\";s:4:\"type\";s:6:\"select\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:7:\"choices\";a:3:{s:7:\"classic\";s:9:\"Klassisch\";s:6:\"modern\";s:6:\"Modern\";s:6:\"flyout\";s:6:\"Flyout\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:6:\"output\";a:1:{i:0;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"mobile-menu-design-$\";s:12:\"remove_attrs\";a:3:{i:0;s:26:\"mobile-menu-design-classic\";i:1;s:25:\"mobile-menu-design-modern\";i:2;s:25:\"mobile-menu-design-flyout\";}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:3:{s:44:\"mobile_menu_design_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"mobile_menu_design_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"mobile_menu_design_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:28:\"mobile_menu_icons_top_margin\";a:9:{s:5:\"label\";s:28:\"Mobile Menu Icons Top Margin\";s:11:\"description\";s:82:\"Controls the top margin for the icons in the modern and flyout mobile menu design.\";s:2:\"id\";s:28:\"mobile_menu_icons_top_margin\";s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"classic\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"classic\";}i:5;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--mobile_menu_icons_top_margin\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"mobile_menu_nav_height\";a:9:{s:5:\"label\";s:32:\"Mobile Menu Dropdown Item Height\";s:11:\"description\";s:47:\"Controls the height of each dropdown menu item.\";s:2:\"id\";s:22:\"mobile_menu_nav_height\";s:7:\"default\";s:2:\"42\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--mobile_menu_nav_height\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:27:\"mobile_nav_submenu_slideout\";a:8:{s:5:\"label\";s:31:\"Mobile Menu Dropdown Slide Outs\";s:11:\"description\";s:60:\"Turn on to allow dropdown sections to slide out when tapped.\";s:2:\"id\";s:27:\"mobile_nav_submenu_slideout\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:16:\"submenu_slideout\";s:7:\"trigger\";a:1:{i:0;s:16:\"fusionMobileMenu\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"mobile_menu_search\";a:7:{s:5:\"label\";s:37:\"Display Mobile Menu Search Icon/Field\";s:11:\"description\";s:60:\"Turn on to display the search icon/field in the mobile menu.\";s:2:\"id\";s:18:\"mobile_menu_search\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:3:{s:44:\"mobile_menu_search_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"mobile_menu_search_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"mobile_menu_search_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:29:\"mobile_menu_submenu_indicator\";a:7:{s:5:\"label\";s:30:\"Mobile Menu Sub-Menu Indicator\";s:11:\"description\";s:69:\"Turn on to display the mobile menu sub-menu indicator: &quot;-&quot;.\";s:2:\"id\";s:29:\"mobile_menu_submenu_indicator\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:25:\".fusion-mobile-nav-holder\";s:9:\"className\";s:33:\"fusion-mobile-menu-indicator-hide\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"mobile_header_bg_color\";a:9:{s:5:\"label\";s:33:\"Mobil Kopfzeilen Hintergrundfarbe\";s:11:\"description\";s:62:\"Controls the background color of the header on mobile devices.\";s:2:\"id\";s:22:\"mobile_header_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--mobile_header_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:10:\"not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:36:\"avada-mobile-header-color-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:0;}}}s:30:\"mobile_archive_header_bg_color\";a:8:{s:5:\"label\";s:38:\"Mobile Archive Header Background Color\";s:11:\"description\";s:75:\"Controls the background color of the archive page header on mobile devices.\";s:2:\"id\";s:30:\"mobile_archive_header_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--mobile_header_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:28:\"mobile_menu_background_color\";a:8:{s:5:\"label\";s:27:\"Mobilmenü Hintergrundfarbe\";s:11:\"description\";s:86:\"Controls the background color of the mobile menu dropdown and classic mobile menu box.\";s:2:\"id\";s:28:\"mobile_menu_background_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--mobile_menu_background_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"mobile_menu_hover_color\";a:8:{s:5:\"label\";s:34:\"Mobile Menu Background Hover Color\";s:11:\"description\";s:64:\"Controls the background hover color of the mobile menu dropdown.\";s:2:\"id\";s:23:\"mobile_menu_hover_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--mobile_menu_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"mobile_menu_border_color\";a:8:{s:5:\"label\";s:20:\"Mobilmenü Randfarbe\";s:11:\"description\";s:95:\"Controls the border and divider colors of the mobile menu dropdown and classic mobile menu box.\";s:2:\"id\";s:24:\"mobile_menu_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--mobile_menu_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"mobile_menu_toggle_color\";a:8:{s:5:\"label\";s:24:\"Mobile Menu Toggle Color\";s:11:\"description\";s:50:\"Controls the color of the mobile menu toggle icon.\";s:2:\"id\";s:24:\"mobile_menu_toggle_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--mobile_menu_toggle_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"mobile_menu_typography_info\";a:5:{s:5:\"label\";s:22:\"Mobile Menu Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"mobile_menu_typography_info\";s:4:\"type\";s:4:\"info\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}}s:22:\"mobile_menu_typography\";a:9:{s:2:\"id\";s:22:\"mobile_menu_typography\";s:5:\"label\";s:22:\"Mobile Menu Typography\";s:11:\"description\";s:54:\"These settings control the typography for mobile menu.\";s:4:\"type\";s:10:\"typography\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography3-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:36:\"--mobile_menu_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:22:\"mobile_menu_typography\";}}i:1;a:2:{s:4:\"name\";s:34:\"--mobile_menu_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:36:\"--mobile_menu_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:3;a:2:{s:4:\"name\";s:36:\"--mobile_menu_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:4;a:3:{s:4:\"name\";s:39:\"--mobile_menu_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:5;a:2:{s:4:\"name\";s:30:\"--mobile_menu_typography-color\";s:6:\"choice\";s:5:\"color\";}i:6;a:2:{s:4:\"name\";s:35:\"--mobile_menu_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:7;a:2:{s:4:\"name\";s:36:\"--mobile_menu_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";}i:8;a:3:{s:4:\"name\";s:45:\"--mobile_menu_typography-font-size-30-or-24px\";s:6:\"choice\";s:9:\"font-size\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:4:\"30px\";i:1;s:4:\"24px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:33:\"mobile_menu_typography[font-size]\";i:1;s:1:\">\";i:2;s:2:\"35\";}}}}}i:9;a:3:{s:4:\"name\";s:47:\"--mobile_menu_typography-font-size-open-submenu\";s:6:\"choice\";s:9:\"font-size\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:4:\"20px\";i:1;s:45:\"var(--mobile_menu_typography-font-size, 13px)\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:33:\"mobile_menu_typography[font-size]\";i:1;s:1:\">\";i:2;s:2:\"30\";}}}}}}}s:28:\"mobile_menu_font_hover_color\";a:8:{s:5:\"label\";s:45:\"Hover-Farbe des Menüs in der mobilen Ansicht\";s:11:\"description\";s:99:\"Controls the hover color of the mobile menu item. Also, used to highlight current mobile menu item.\";s:2:\"id\";s:28:\"mobile_menu_font_hover_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--mobile_menu_font_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"mobile_menu_text_align\";a:9:{s:5:\"label\";s:22:\"Mobile Menu Text Align\";s:11:\"description\";s:40:\"Controls the mobile menu text alignment.\";s:2:\"id\";s:22:\"mobile_menu_text_align\";s:7:\"default\";s:4:\"left\";s:7:\"choices\";a:3:{s:4:\"left\";s:5:\"Links\";s:6:\"center\";s:9:\"Zentriert\";s:5:\"right\";s:6:\"Rechts\";}s:4:\"type\";s:6:\"select\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:4:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:6:{s:7:\"element\";s:28:\"nav.fusion-mobile-nav-holder\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:31:\"fusion-mobile-menu-text-align-$\";s:12:\"remove_attrs\";a:3:{i:0;s:34:\"fusion-mobile-menu-text-align-left\";i:1;s:36:\"fusion-mobile-menu-text-align-center\";i:2;s:35:\"fusion-mobile-menu-text-align-right\";}s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:1:{s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:18:\"mobile_menu_design\";i:1;s:3:\"!==\";i:2;s:6:\"flyout\";}}}}}}}s:19:\"header_v6_used_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:212:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Mega Menu Options are only available when using Header Layouts #1-5. Your current Header Layout #6 does not utilize the mega menu.</div>\";s:2:\"id\";s:19:\"header_v6_used_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v6\";}}}s:22:\"megamenu_disabled_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:178:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Mega Menu is disabled in Advanced > Theme Features section. Please enable it to see the options.</div>\";s:2:\"id\";s:22:\"megamenu_disabled_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}}s:14:\"megamenu_width\";a:10:{s:5:\"label\";s:27:\"Mega Menu Wrapper Max Width\";s:11:\"description\";s:132:\"Controls the max width of the mega menu. On boxed side header layouts, &quot;Viewport Width&quot; will match &quot;Site Width&quot;.\";s:2:\"id\";s:14:\"megamenu_width\";s:4:\"type\";s:6:\"select\";s:7:\"default\";s:10:\"site_width\";s:7:\"choices\";a:3:{s:10:\"site_width\";s:12:\"Seitenbreite\";s:14:\"viewport_width\";s:11:\"100% Breite\";s:12:\"custom_width\";s:12:\"Custom Width\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:19:\"megamenu_base_width\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:9:\"transport\";s:7:\"refresh\";s:15:\"partial_refresh\";a:3:{s:40:\"megamenu_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:39:\"megamenu_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:22:\"mmegamenu_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:18:\"megamenu_max_width\";a:8:{s:5:\"label\";s:19:\"Mega Menu Max-Width\";s:11:\"description\";s:40:\"Controls the max width of the mega menu.\";s:2:\"id\";s:18:\"megamenu_max_width\";s:7:\"default\";s:4:\"1200\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"4096\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:14:\"megamenu_width\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:12:\"custom_width\";}}s:15:\"partial_refresh\";a:3:{s:44:\"megamenu_max_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"megamenu_max_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"megamenu_max_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:31:\"megamenu_interior_content_width\";a:8:{s:5:\"label\";s:32:\"Mega Menu Interior Content Width\";s:11:\"description\";s:103:\"For full width mega menus select if the interior menu content is contained to site width or 100% width.\";s:2:\"id\";s:31:\"megamenu_interior_content_width\";s:4:\"type\";s:6:\"select\";s:7:\"default\";s:14:\"viewport_width\";s:7:\"choices\";a:2:{s:10:\"site_width\";s:12:\"Seitenbreite\";s:14:\"viewport_width\";s:11:\"100% Breite\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:14:\"megamenu_width\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:14:\"viewport_width\";}}s:15:\"partial_refresh\";a:3:{s:40:\"megamenu_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:39:\"megamenu_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:22:\"mmegamenu_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:19:\"megamenu_title_size\";a:8:{s:5:\"label\";s:29:\"Megamenü Spaltentitelgrösse\";s:11:\"description\";s:51:\"Controls the font size for mega menu column titles.\";s:2:\"id\";s:19:\"megamenu_title_size\";s:7:\"default\";s:4:\"18px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--megamenu_title_size\";s:7:\"element\";s:22:\".fusion-megamenu-title\";}}}s:30:\"megamenu_item_vertical_padding\";a:8:{s:5:\"label\";s:31:\"Mega Menu Dropdown Item Padding\";s:11:\"description\";s:61:\"Controls the top/bottom padding for mega menu dropdown items.\";s:2:\"id\";s:30:\"megamenu_item_vertical_padding\";s:7:\"default\";s:1:\"7\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--megamenu_item_vertical_padding\";s:7:\"element\";s:24:\".fusion-megamenu-submenu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:29:\"megamenu_item_display_divider\";a:7:{s:5:\"label\";s:24:\"Mega Menu Widget Bereich\";s:11:\"description\";s:62:\"Turn on to display a divider between mega menu dropdown items.\";s:2:\"id\";s:29:\"megamenu_item_display_divider\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-has-megamenu-item-divider\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"menu_icons_note\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:381:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Icons are available for both the main and dropdown menus. However, the options below only apply to the main menu. Dropdown menu icons do not use these options below, they follow the dropdown font size and color. The icons themselves can be added to your menu items in the Appearance > Menus section.</div>\";s:2:\"id\";s:15:\"menu_icons_note\";s:4:\"type\";s:6:\"custom\";}s:18:\"menu_icon_position\";a:8:{s:5:\"label\";s:23:\"Main Menu Icon Position\";s:11:\"description\";s:37:\"Controls the main menu icon position.\";s:2:\"id\";s:18:\"menu_icon_position\";s:7:\"default\";s:4:\"left\";s:7:\"choices\";a:4:{s:3:\"top\";s:4:\"Oben\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:4:\"left\";s:5:\"Links\";}s:4:\"type\";s:6:\"select\";s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:26:\"avada-menu-icon-position-$\";s:12:\"remove_attrs\";a:4:{i:0;s:28:\"avada-menu-icon-position-top\";i:1;s:30:\"avada-menu-icon-position-right\";i:2;s:31:\"avada-menu-icon-position-bottom\";i:3;s:29:\"avada-menu-icon-position-left\";}}}s:15:\"partial_refresh\";a:3:{s:44:\"menu_icon_position_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"menu_icon_position_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"menu_icon_position_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:14:\"menu_icon_size\";a:7:{s:5:\"label\";s:19:\"Main Menu Icon Size\";s:11:\"description\";s:46:\"Controls the size of the top-level menu icons.\";s:2:\"id\";s:14:\"menu_icon_size\";s:7:\"default\";s:2:\"14\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--menu_icon_size\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:15:\"menu_icon_color\";a:6:{s:5:\"label\";s:20:\"Main Menu Icon Color\";s:11:\"description\";s:52:\"Controls the color of the top-level main menu icons.\";s:2:\"id\";s:15:\"menu_icon_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--menu_icon_color\";s:7:\"element\";s:21:\".fusion-megamenu-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"menu_icon_hover_color\";a:6:{s:5:\"label\";s:26:\"Main Menu Icon Hover Color\";s:11:\"description\";s:58:\"Controls the hover color of the top-level main menu icons.\";s:2:\"id\";s:21:\"menu_icon_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--menu_icon_hover_color\";s:7:\"element\";s:21:\".fusion-megamenu-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"menu_thumbnail_size\";a:8:{s:5:\"label\";s:24:\"Mega Menu Thumbnail Size\";s:11:\"description\";s:149:\"Controls the width and height of the top-level mega menu thumbnails. Use &quot;auto&quot; for automatic resizing if you added either width or height.\";s:2:\"id\";s:19:\"menu_thumbnail_size\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"26px\";s:6:\"height\";s:4:\"14px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:27:\"--menu_thumbnail_size-width\";s:6:\"choice\";s:5:\"width\";s:7:\"element\";s:17:\".fusion-main-menu\";}i:1;a:3:{s:4:\"name\";s:28:\"--menu_thumbnail_size-height\";s:6:\"choice\";s:6:\"height\";s:7:\"element\";s:17:\".fusion-main-menu\";}}}s:14:\"logo_alignment\";a:9:{s:5:\"label\";s:16:\"Logo Ausrichtung\";s:11:\"description\";s:119:\"Kontrolliert die Ausrichtung des Logos. &quot;Zentriert&quot; funktioniert nur mit Option Kopf 5 und Kopf an der Seite.\";s:2:\"id\";s:14:\"logo_alignment\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"left\";s:5:\"Links\";s:6:\"center\";s:9:\"Zentriert\";s:5:\"right\";s:6:\"Rechts\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--logo_alignment\";}}s:6:\"output\";a:5:{i:0;a:5:{s:7:\"element\";s:22:\".fusion-logo-alignment\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:13:\"fusion-logo-$\";s:12:\"remove_attrs\";a:3:{i:0;s:16:\"fusion-logo-left\";i:1;s:18:\"fusion-logo-center\";i:2;s:17:\"fusion-logo-right\";}}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:14:\"logo_alignment\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"mobile-logo-pos-$\";s:12:\"remove_attrs\";a:3:{i:0;s:20:\"mobile-logo-pos-left\";i:1;s:22:\"mobile-logo-pos-center\";i:2;s:21:\"mobile-logo-pos-right\";}}i:3;a:5:{s:7:\"element\";s:41:\".side-header-wrapper .side-header-content\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:13:\"fusion-logo-$\";s:12:\"remove_attrs\";a:3:{i:0;s:16:\"fusion-logo-left\";i:1;s:18:\"fusion-logo-center\";i:2;s:17:\"fusion-logo-right\";}}i:4;a:5:{s:7:\"element\";s:48:\".side-header-wrapper .fusion-main-menu-container\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:18:\"fusion-logo-menu-$\";s:12:\"remove_attrs\";a:3:{i:0;s:21:\"fusion-logo-menu-left\";i:1;s:23:\"fusion-logo-menu-center\";i:2;s:22:\"fusion-logo-menu-right\";}}}}s:11:\"logo_margin\";a:9:{s:5:\"label\";s:14:\"Logo Abstände\";s:11:\"description\";s:69:\"Kontrolliert die oberen/rechten/unteren/linken Ränder für das Logo.\";s:2:\"id\";s:11:\"logo_margin\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"34px\";s:6:\"bottom\";s:4:\"34px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:8:\"css_vars\";a:4:{i:0;a:4:{s:4:\"name\";s:17:\"--logo_margin-top\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}i:1;a:4:{s:4:\"name\";s:20:\"--logo_margin-bottom\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:6:\"bottom\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}i:2;a:4:{s:4:\"name\";s:18:\"--logo_margin-left\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:4:\"left\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}i:3;a:4:{s:4:\"name\";s:19:\"--logo_margin-right\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:5:\"right\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}}s:6:\"output\";a:6:{i:0;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:3:\"top\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:15:\"data-margin-top\";}i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:18:\"header_padding_top\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:6:\"bottom\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:18:\"data-margin-bottom\";}i:3;a:3:{s:6:\"choice\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:18:\"logo_margin_bottom\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:4;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:4:\"left\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:16:\"data-margin-left\";}i:5;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:5:\"right\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:17:\"data-margin-right\";}}}s:15:\"logo_background\";a:9:{s:5:\"label\";s:16:\"Logo Hintergrund\";s:11:\"description\";s:68:\"Einschalten, um einen farbigen Hintergrund für das Logo anzuzeigen.\";s:2:\"id\";s:15:\"logo_background\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:28:\"fusion-gutter-and-and-or-and\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:4;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}s:15:\"partial_refresh\";a:1:{s:20:\"partial_refresh_logo\";a:3:{s:8:\"selector\";s:36:\".fusion-logo,.fusion-logo-background\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:9:\"body,html\";s:9:\"className\";s:25:\"avada-has-logo-background\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:21:\"logo_background_color\";a:8:{s:5:\"label\";s:21:\"Logo Hintergrundfarbe\";s:11:\"description\";s:48:\"Kontrolliert die Hintergrundfarbe für das Logo.\";s:2:\"id\";s:21:\"logo_background_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:36:\"fusion-gutter-and-and-and-or-and-and\";s:8:\"required\";a:7:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}i:2;a:3:{s:7:\"setting\";s:15:\"logo_background\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:4;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:5;a:3:{s:7:\"setting\";s:15:\"logo_background\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:6;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--logo_background_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"logo_custom_link\";a:6:{s:5:\"label\";s:33:\"Logo Benutzerdefinierter Link URL\";s:11:\"description\";s:95:\"Enter a custom URL the site logo should link to. Leave empty to let logo link to the home page.\";s:2:\"id\";s:16:\"logo_custom_link\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:17:\".fusion-logo-link\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:4:\"href\";s:13:\"value_pattern\";s:1:\"$\";}}}s:23:\"default_logo_info_title\";a:5:{s:5:\"label\";s:13:\"Standard Logo\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"default_logo_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:4:\"logo\";a:9:{s:5:\"label\";s:13:\"Standard Logo\";s:11:\"description\";s:37:\"Wähle eine Bilddatei für dein Logo.\";s:2:\"id\";s:4:\"logo\";s:7:\"default\";s:78:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/logo.png\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:15:\"partial_refresh\";a:1:{s:20:\"partial_refresh_logo\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:14:\".fusion-header\";i:1;s:33:\"#side-header .side-header-wrapper\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:15:\"Logo bearbeiten\";s:4:\"icon\";s:19:\"fusiona-plus-circle\";s:5:\"order\";i:2;}}}}s:11:\"logo_retina\";a:9:{s:5:\"label\";s:19:\"Retina Default Logo\";s:11:\"description\";s:107:\"Select an image file for the retina version of the logo. It should be exactly 2x the size of the main logo.\";s:2:\"id\";s:11:\"logo_retina\";s:7:\"default\";s:81:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/logo@2x.png\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:15:\"partial_refresh\";a:1:{s:27:\"partial_refresh_logo_retina\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:22:\"sticky_logo_info_title\";a:5:{s:5:\"label\";s:26:\"Fixierter Kopfbereich Logo\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"sticky_logo_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:18:\"sticky_header_logo\";a:9:{s:5:\"label\";s:26:\"Fixierter Kopfbereich Logo\";s:11:\"description\";s:49:\"Select an image file for your sticky header logo.\";s:2:\"id\";s:18:\"sticky_header_logo\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:15:\"partial_refresh\";a:1:{s:34:\"partial_refresh_sticky_header_logo\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:22:\".fusion-logo-alignment\";s:9:\"className\";s:20:\"fusion-sticky-logo-1\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"sticky_header_logo_retina\";a:9:{s:5:\"label\";s:25:\"Retina Sticky Header Logo\";s:11:\"description\";s:130:\"Select an image file for the retina version of the sticky header logo. It should be exactly 2x the size of the sticky header logo.\";s:2:\"id\";s:25:\"sticky_header_logo_retina\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"sticky_header_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:18:\"sticky_header_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:18:\"sticky_header_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:15:\"partial_refresh\";a:1:{s:41:\"partial_refresh_sticky_header_logo_retina\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:22:\"mobile_logo_info_title\";a:5:{s:5:\"label\";s:22:\"Logo für Mobilgeräte\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"mobile_logo_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:11:\"mobile_logo\";a:8:{s:5:\"label\";s:22:\"Logo für Mobilgeräte\";s:11:\"description\";s:37:\"Wähle ein Bild für das Mobile Logo.\";s:2:\"id\";s:11:\"mobile_logo\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:15:\"partial_refresh\";a:1:{s:27:\"partial_refresh_mobile_logo\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:18:\"mobile_logo_retina\";a:9:{s:5:\"label\";s:18:\"Retina Mobile Logo\";s:11:\"description\";s:116:\"Select an image file for the retina version of the mobile logo. It should be exactly 2x the size of the mobile logo.\";s:2:\"id\";s:18:\"mobile_logo_retina\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"mobile_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:11:\"mobile_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:11:\"mobile_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:15:\"partial_refresh\";a:1:{s:34:\"partial_refresh_mobile_logo_retina\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:7:\"favicon\";a:7:{s:5:\"label\";s:7:\"Favicon\";s:11:\"description\";s:55:\"Favicon for your website at 32px x 32px or 64px x 64px.\";s:2:\"id\";s:7:\"favicon\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:11:\"iphone_icon\";a:7:{s:5:\"label\";s:32:\"Apple iPhone Icon Icon hochladen\";s:11:\"description\";s:42:\"Favicon for Apple iPhone at 120px x 120px.\";s:2:\"id\";s:11:\"iphone_icon\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:18:\"iphone_icon_retina\";a:8:{s:5:\"label\";s:34:\"Apple iPhone Retina Icon hochladen\";s:11:\"description\";s:57:\"Favicon for Apple iPhone Retina Version at 180px x 180px.\";s:2:\"id\";s:18:\"iphone_icon_retina\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"iphone_icon\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:11:\"iphone_icon\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:11:\"iphone_icon\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:9:\"transport\";s:11:\"postMessage\";}s:9:\"ipad_icon\";a:7:{s:5:\"label\";s:25:\"Apple iPad Icon hochladen\";s:11:\"description\";s:40:\"Favicon for Apple iPad at 152px x 152px.\";s:2:\"id\";s:9:\"ipad_icon\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:16:\"ipad_icon_retina\";a:8:{s:5:\"label\";s:32:\"Apple iPad Retina Icon hochladen\";s:11:\"description\";s:55:\"Favicon for Apple iPad Retina Version at 167px x 167px.\";s:2:\"id\";s:16:\"ipad_icon_retina\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:9:\"ipad_icon\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:9:\"ipad_icon\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:9:\"ipad_icon\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:9:\"transport\";s:11:\"postMessage\";}s:39:\"page_title_bar_template_override_notice\";a:5:{s:2:\"id\";s:39:\"page_title_bar_template_override_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:334:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Page Title Bar override is currently used. To edit your global layout please visit <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:6:\"hidden\";b:1;s:4:\"type\";s:6:\"custom\";}s:30:\"page_title_bar_template_notice\";a:4:{s:2:\"id\";s:30:\"page_title_bar_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:345:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Page Title Bar Builder. To create a custom Page Title Bar Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:14:\"page_title_bar\";a:9:{s:5:\"label\";s:20:\"Kopfzeilen-Container\";s:11:\"description\";s:41:\"Controls how the page title bar displays.\";s:2:\"id\";s:14:\"page_title_bar\";s:7:\"default\";s:15:\"bar_and_content\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:15:\"bar_and_content\";s:24:\"Zeige Leiste und Inhalte\";s:12:\"content_only\";s:17:\"Zeige nur Inhalte\";s:4:\"hide\";s:10:\"Ausblenden\";}s:4:\"type\";s:6:\"select\";s:15:\"partial_refresh\";a:1:{s:38:\"page_title_bar_contents_page_title_bar\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"avada-has-titlebar-$\";s:12:\"remove_attrs\";a:3:{i:0;s:23:\"avada-has-titlebar-hide\";i:1;s:34:\"avada-has-titlebar-bar_and_content\";i:2;s:31:\"avada-has-titlebar-content_only\";}}}}s:17:\"page_title_bar_bs\";a:9:{s:5:\"label\";s:40:\"Breadcrumbs / Search Bar Content Display\";s:11:\"description\";s:337:\"Controls what displays in the breadcrumbs area.   <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"page_title_bar_bs\";s:7:\"default\";s:11:\"breadcrumbs\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"none\";s:5:\"Keine\";s:11:\"breadcrumbs\";s:11:\"Breadcrumbs\";s:10:\"search_box\";s:10:\"Suchleiste\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:57:\"page_title_bar_contents_breadcrumb_show_post_type_archive\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}}s:19:\"page_title_bar_text\";a:8:{s:5:\"label\";s:23:\"Page Title Bar Headings\";s:11:\"description\";s:336:\"Turn on to display the page title bar headings.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"page_title_bar_text\";s:7:\"default\";s:1:\"1\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:43:\"page_title_bar_contents_page_title_bar_text\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}}s:28:\"page_title_bar_styling_title\";a:6:{s:5:\"label\";s:22:\"Page Title Bar Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:28:\"page_title_bar_styling_title\";s:6:\"hidden\";b:0;s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:20:\"page_title_100_width\";a:8:{s:5:\"label\";s:25:\"Page Title Bar 100% Width\";s:11:\"description\";s:413:\"Turn on to have the page title bar area display at 100% width according to the viewport size. Turn off to follow site width.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"page_title_100_width\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:29:\"avada-has-pagetitle-100-width\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"page_title_height\";a:8:{s:5:\"label\";s:31:\"Höhe des Kopfzeilen-Containers\";s:11:\"description\";s:342:\"Controls the height of the page title bar on desktop.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"page_title_height\";s:7:\"default\";s:5:\"300px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--page_title_height\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:24:\"page_title_mobile_height\";a:9:{s:5:\"label\";s:43:\"Kopfzeilen Titelleiste Höhe mobile Geräte\";s:11:\"description\";s:341:\"Controls the height of the page title bar on mobile.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:24:\"page_title_mobile_height\";s:7:\"default\";s:5:\"240px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--page_title_mobile_height\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:2:{i:0;s:23:\"convert_font_size_to_px\";i:1;a:2:{s:7:\"setting\";s:20:\"page_title_font_size\";s:8:\"addUnits\";b:1;}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:4:\"auto\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:39:\"avada-has-page-title-mobile-height-auto\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"page_title_bg_color\";a:8:{s:5:\"label\";s:42:\"Hintergrundfarbe des Kopfzeilen-Containers\";s:11:\"description\";s:341:\"Controls the background color of the page title bar.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"page_title_bg_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--page_title_bg_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"page_title_border_color\";a:9:{s:5:\"label\";s:37:\"Rahmenfarbe des Kopfzeilen-Containers\";s:11:\"description\";s:338:\"Controls the border colors of the page title bar.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:23:\"page_title_border_color\";s:7:\"default\";s:19:\"rgba(226,226,226,0)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--page_title_border_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"property\";s:6:\"border\";s:11:\"js_callback\";a:2:{i:0;s:31:\"fusionReturnStringIfTransparent\";i:1;a:2:{s:11:\"transparent\";s:4:\"none\";s:6:\"opaque\";s:0:\"\";}}s:17:\"sanitize_callback\";a:2:{i:0;s:22:\"Avada_Output_Callbacks\";i:1;s:23:\"page_title_border_color\";}}}}s:20:\"page_title_font_size\";a:9:{s:5:\"label\";s:32:\"Page Title Bar Heading Font Size\";s:11:\"description\";s:348:\"Controls the font size for the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"page_title_font_size\";s:7:\"default\";s:4:\"54px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--page_title_font_size\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:22:\"page_title_line_height\";a:9:{s:5:\"label\";s:34:\"Page Title Bar Heading Line Height\";s:11:\"description\";s:350:\"Controls the line height for the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:22:\"page_title_line_height\";s:7:\"default\";s:6:\"normal\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--page_title_line_height\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:16:\"page_title_color\";a:8:{s:5:\"label\";s:33:\"Page Title Bar Heading Font Color\";s:11:\"description\";s:348:\"Controls the text color of the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:16:\"page_title_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--page_title_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"page_title_subheader_font_size\";a:9:{s:5:\"label\";s:35:\"Page Title Bar Subheading Font Size\";s:11:\"description\";s:345:\"Controls the font size for the page titlebar subheading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:30:\"page_title_subheader_font_size\";s:7:\"default\";s:4:\"18px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--page_title_subheader_font_size\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:26:\"page_title_subheader_color\";a:8:{s:5:\"label\";s:36:\"Page Title Bar Subheading Font Color\";s:11:\"description\";s:346:\"Controls the text color of the page title bar subheading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:26:\"page_title_subheader_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--page_title_subheader_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"page_title_alignment\";a:9:{s:5:\"label\";s:32:\"Titel- und Untertitelausrichtung\";s:11:\"description\";s:454:\"Choose the title and subhead text alignment. Breadcrumbs / search field will be on opposite side for left / right alignment and below the title for center alignment.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"page_title_alignment\";s:7:\"default\";s:6:\"center\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"left\";s:5:\"Links\";s:6:\"center\";s:9:\"Zentriert\";s:5:\"right\";s:6:\"Rechts\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:44:\"page_title_bar_contents_page_title_alignment\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}}s:29:\"page_title_bar_bg_image_title\";a:6:{s:5:\"label\";s:31:\"Page Title Bar Background Image\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:29:\"page_title_bar_bg_image_title\";s:4:\"icon\";b:1;s:6:\"hidden\";b:0;s:4:\"type\";s:4:\"info\";}s:13:\"page_title_bg\";a:9:{s:5:\"label\";s:31:\"Page Title Bar Background Image\";s:11:\"description\";s:404:\"Select an image for the page title bar background. If left empty, the page title bar background color will be used.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:13:\"page_title_bg\";s:7:\"default\";s:0:\"\";s:6:\"hidden\";b:0;s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:15:\"--page_title_bg\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:4:\"none\";}}}}}s:20:\"page_title_bg_retina\";a:10:{s:5:\"label\";s:38:\"Retina Page Title Bar Background Image\";s:11:\"description\";s:428:\"Select an image for the retina version of the page title bar background. It should be exactly 2x the size of the page title bar background.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"page_title_bg_retina\";s:7:\"default\";s:0:\"\";s:6:\"hidden\";b:0;s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:22:\"--page_title_bg_retina\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:20:\"var(--page_title_bg)\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:38:\"avada-has-pagetitlebar-retina-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"page_title_bg_full\";a:8:{s:5:\"label\";s:20:\"100% Hintergrundbild\";s:11:\"description\";s:406:\"Turn on to have the page title bar background image display at 100% in width and height according to the window size.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:18:\"page_title_bg_full\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-pagetitle-bg-full\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"page_title_bg_parallax\";a:8:{s:5:\"label\";s:24:\"Parallax Hintergrundbild\";s:11:\"description\";s:356:\"Turn on to use a parallax scrolling effect on the background image.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:22:\"page_title_bg_parallax\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-has-pagetitle-bg-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"page_title_fading\";a:8:{s:5:\"label\";s:22:\"Verblassende Animation\";s:11:\"description\";s:340:\"Turn on to have the page title text fade on scroll.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"page_title_fading\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaFadeVars\";s:2:\"id\";s:17:\"page_title_fading\";s:7:\"trigger\";a:1:{i:0;s:27:\"avadaTriggerPageTitleFading\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"breadcrumb_mobile\";a:7:{s:5:\"label\";s:41:\"Brotkrumennavigation auf mobilen Geräten\";s:11:\"description\";s:338:\"Turn on to display breadcrumbs on mobile devices.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"breadcrumb_mobile\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:34:\"avada-has-breadcrumb-mobile-hidden\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"breacrumb_prefix\";a:7:{s:5:\"label\";s:18:\"Breadcrumbs Prefix\";s:11:\"description\";s:334:\"Controls the text before the breadcrumb menu.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:16:\"breacrumb_prefix\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:40:\"page_title_bar_contents_breacrumb_prefix\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:20:\"breadcrumb_separator\";a:7:{s:5:\"label\";s:21:\"Breadcrumbs Separator\";s:11:\"description\";s:344:\"Controls the type of separator between each breadcrumb.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"breadcrumb_separator\";s:7:\"default\";s:1:\"/\";s:4:\"type\";s:4:\"text\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:44:\"page_title_bar_contents_breadcrumb_separator\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:21:\"breadcrumbs_font_size\";a:8:{s:5:\"label\";s:39:\"Schriftgrösse der Brotkrumennavigation\";s:11:\"description\";s:337:\"Controls the font size for the breadcrumbs text.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:21:\"breadcrumbs_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--breadcrumbs_font_size\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:22:\"breadcrumbs_text_color\";a:7:{s:5:\"label\";s:34:\"Textfarbe der Brotkrumennavigation\";s:11:\"description\";s:337:\"Controls the text color of the breadcrumbs font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:22:\"breadcrumbs_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--breadcrumbs_text_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"breadcrumbs_text_hover_color\";a:7:{s:5:\"label\";s:28:\"Breadcrumbs Text Hover Color\";s:11:\"description\";s:343:\"Controls the text hover color of the breadcrumbs font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:28:\"breadcrumbs_text_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--breadcrumbs_text_hover_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"breadcrumb_show_categories\";a:7:{s:5:\"label\";s:30:\"Post Categories on Breadcrumbs\";s:11:\"description\";s:352:\"Turn on to display the post categories in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:26:\"breadcrumb_show_categories\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:50:\"page_title_bar_contents_breadcrumb_show_categories\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:33:\"breadcrumb_show_post_type_archive\";a:7:{s:5:\"label\";s:33:\"Post Type Archives on Breadcrumbs\";s:11:\"description\";s:351:\"Turn on to display post type archives in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:33:\"breadcrumb_show_post_type_archive\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:57:\"page_title_bar_contents_breadcrumb_show_post_type_archive\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:18:\"slidingbar_widgets\";a:8:{s:5:\"label\";s:23:\"Sliding Bar on Desktops\";s:11:\"description\";s:47:\"Turn on to display the sliding bar on desktops.\";s:2:\"id\";s:18:\"slidingbar_widgets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:24:\".fusion-sliding-bar-area\";}s:9:\"shortcuts\";a:2:{i:0;a:2:{s:10:\"aria_label\";s:16:\"Edit Sliding Bar\";s:4:\"icon\";s:18:\"fusiona-arrow-down\";}i:1;a:2:{s:10:\"aria_label\";s:24:\"Edit Sliding Bar Widgets\";s:4:\"link\";s:52:\"https://unternehmen.wir-noi.org/wp-admin/widgets.php\";}}}s:15:\"partial_refresh\";a:2:{s:38:\"sliding_bar_content_slidingbar_widgets\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}s:33:\"header_content_slidingbar_widgets\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:28:\"avada-has-slidingbar-widgets\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"mobile_slidingbar_widgets\";a:7:{s:5:\"label\";s:21:\"Sliding Bar On Mobile\";s:11:\"description\";s:258:\"Turn on to display the sliding bar on mobiles. <strong>IMPORTANT:</strong> Due to mobile screen sizes and overlapping issues, when this option is enabled the triangle toggle style in the top right position will be forced for square and circle desktop styles.\";s:2:\"id\";s:25:\"mobile_slidingbar_widgets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"no-mobile-slidingbar\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"slidingbar_open_on_load\";a:7:{s:5:\"label\";s:40:\"Sliding Bar öffnet beim Laden der Seite\";s:11:\"description\";s:57:\"Turn on to have the sliding bar open when the page loads.\";s:2:\"id\";s:23:\"slidingbar_open_on_load\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:19:\"slidingbar_position\";a:9:{s:5:\"label\";s:20:\"Sliding Bar Position\";s:11:\"description\";s:93:\"Controls the position of the sliding bar to be in the top, right, bottom or left of the site.\";s:2:\"id\";s:19:\"slidingbar_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:3:\"top\";s:4:\"Oben\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:4:\"left\";s:5:\"Links\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:39:\"sliding_bar_content_slidingbar_position\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:31:\"avada-has-slidingbar-position-$\";s:12:\"remove_attrs\";a:4:{i:0;s:33:\"avada-has-slidingbar-position-top\";i:1;s:35:\"avada-has-slidingbar-position-right\";i:2;s:36:\"avada-has-slidingbar-position-bottom\";i:3;s:34:\"avada-has-slidingbar-position-left\";}}}}s:16:\"slidingbar_width\";a:8:{s:5:\"label\";s:17:\"Sliding Bar Width\";s:11:\"description\";s:60:\"Controls the width of the sliding bar on left/right layouts.\";s:2:\"id\";s:16:\"slidingbar_width\";s:7:\"default\";s:5:\"300px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"bottom\";}}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:18:\"--slidingbar_width\";}i:1;a:2:{s:4:\"name\";s:32:\"--slidingbar_width-percent_to_vw\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vw\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:1:\"%\";i:1;s:8:\"contains\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:34:\"avada-has-slidingbar-width-percent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"slidingbar_sticky\";a:7:{s:5:\"label\";s:18:\"Sticky Sliding Bar\";s:11:\"description\";s:39:\"Turn on to enable a sticky sliding bar.\";s:2:\"id\";s:17:\"slidingbar_sticky\";s:7:\"default\";i:1;s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:5:\"right\";}i:2;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"left\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-slidingbar-sticky\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:16:\"#slidingbar-area\";s:9:\"className\";s:25:\"fusion-sliding-bar-sticky\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"slidingbar_widgets_columns\";a:8:{s:5:\"label\";s:32:\"Anzahl Spalte in der Sliding Bar\";s:11:\"description\";s:50:\"Controls the number of columns in the sliding bar.\";s:2:\"id\";s:26:\"slidingbar_widgets_columns\";s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"6\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:46:\"sliding_bar_content_slidingbar_widgets_columns\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}}}s:27:\"slidingbar_column_alignment\";a:8:{s:5:\"label\";s:28:\"Sliding Bar Column Alignment\";s:11:\"description\";s:132:\"Allows your sliding bar columns to be stacked (one above the other) or floated (side by side) when using the left or right position.\";s:2:\"id\";s:27:\"slidingbar_column_alignment\";s:7:\"default\";s:7:\"stacked\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"stacked\";s:7:\"Stacked\";s:7:\"floated\";s:7:\"Floated\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"bottom\";}}s:15:\"partial_refresh\";a:1:{s:47:\"sliding_bar_content_slidingbar_column_alignment\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}}}s:26:\"slidingbar_content_padding\";a:8:{s:5:\"label\";s:27:\"Sliding Bar Content Padding\";s:11:\"description\";s:68:\"Controls the top/right/bottom/left paddings of the sliding bar area.\";s:2:\"id\";s:26:\"slidingbar_content_padding\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"60px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:32:\"--slidingbar_content_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:35:\"--slidingbar_content_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:33:\"--slidingbar_content_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:34:\"--slidingbar_content_padding-right\";s:6:\"choice\";s:5:\"right\";}}}s:24:\"slidingbar_content_align\";a:8:{s:5:\"label\";s:29:\"Sliding Bar Content Alignment\";s:11:\"description\";s:39:\"Controls sliding bar content alignment.\";s:2:\"id\";s:24:\"slidingbar_content_align\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"left\";s:5:\"Links\";s:6:\"center\";s:9:\"Zentriert\";s:5:\"right\";s:6:\"Rechts\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--slidingbar_content_align\";s:7:\"element\";s:19:\".fusion-sliding-bar\";}}}s:25:\"sliding_bar_styling_title\";a:5:{s:5:\"label\";s:19:\"Sliding Bar Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"sliding_bar_styling_title\";s:4:\"type\";s:4:\"info\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:23:\"slidingbar_toggle_style\";a:10:{s:5:\"label\";s:24:\"Sliding Bar Toggle Style\";s:11:\"description\";s:50:\"Controls the appearance of the sliding bar toggle.\";s:2:\"id\";s:23:\"slidingbar_toggle_style\";s:7:\"default\";s:6:\"circle\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:4:{s:8:\"triangle\";s:8:\"Triangle\";s:9:\"rectangle\";s:9:\"Rectangle\";s:6:\"circle\";s:6:\"Circle\";s:4:\"menu\";s:14:\"Main Menu Icon\";}s:5:\"icons\";a:4:{s:8:\"triangle\";s:210:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><g transform=\"translate(-54.320053,-196.29156)\"><path d=\"m 54.320053,196.29156 h 24 v 24 z\" style=\"stroke-width:0\" /></g></svg>\";s:9:\"rectangle\";s:121:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><path d=\"M24 0h-24v24h24v-24z\"/></svg>\";s:6:\"circle\";s:121:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><circle cx=\"12\" cy=\"12\" r=\"12\"/></svg>\";s:4:\"menu\";s:176:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><path d=\"M24 10h-10v-10h-4v10h-10v4h10v10h4v-10h10z\"/></svg><span class=\"screen-reader-text\">\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:3:{s:43:\"sliding_bar_content_slidingbar_toggle_style\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}s:49:\"slidingbar_toggle_style_header_remove_before_hook\";a:3:{s:8:\"selector\";s:112:\".avada-hook-before-header-wrapper, .fusion-header-wrapper, #side-header-sticky, #side-header, #sliders-container\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:49:\"slidingbar_toggle_style_header_replace_after_hook\";a:4:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:15:\"header_position\";}s:21:\"success_trigger_event\";s:40:\"header-rendered fusion-partial-wooslider\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:32:\"avada-slidingbar-toggle-style--$\";s:12:\"remove_attrs\";a:4:{i:0;s:38:\"avada-slidingbar-toggle-style-triangle\";i:1;s:39:\"avada-slidingbar-toggle-style-rectangle\";i:2;s:36:\"avada-slidingbar-toggle-style-circle\";i:3;s:34:\"avada-slidingbar-toggle-style-menu\";}}}}s:19:\"slidingbar_bg_color\";a:7:{s:5:\"label\";s:28:\"Sliding Bar Background Color\";s:11:\"description\";s:49:\"Controls the background color of the sliding bar.\";s:2:\"id\";s:19:\"slidingbar_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--slidingbar_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"slidingbar_divider_color\";a:7:{s:5:\"label\";s:39:\"Farbe der Trennlinie in der Sliding Bar\";s:11:\"description\";s:49:\"Steuert die Trennlinienfarbe in den Sliding Bars.\";s:2:\"id\";s:24:\"slidingbar_divider_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--slidingbar_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"slidingbar_toggle_icon_color\";a:7:{s:5:\"label\";s:35:\"Sliding Bar Toggle/Close Icon Color\";s:11:\"description\";s:118:\"Controls the color of the sliding bar toggle icon and of the close icon when using the main menu icon as toggle style.\";s:2:\"id\";s:28:\"slidingbar_toggle_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--slidingbar_toggle_icon_color\";s:7:\"element\";s:25:\".fusion-sb-toggle-wrapper\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"slidingbar_font_size\";a:8:{s:5:\"label\";s:29:\"Sliding Bar Heading Font Size\";s:11:\"description\";s:56:\"Controls the font size for the sliding bar heading text.\";s:2:\"id\";s:20:\"slidingbar_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--slidingbar_font_size\";s:7:\"element\";s:11:\"#slidingbar\";}}}s:25:\"slidingbar_headings_color\";a:7:{s:5:\"label\";s:47:\"Schriftfarbe der Überschriften der Sliding Bar\";s:11:\"description\";s:62:\"Steuert die Schriftfarbe der Überschrift in den Sliding Bars.\";s:2:\"id\";s:25:\"slidingbar_headings_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:27:\"--slidingbar_headings_color\";s:7:\"element\";s:16:\"#slidingbar-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"slidingbar_text_color\";a:7:{s:5:\"label\";s:28:\"Schriftfarbe der Sliding Bar\";s:11:\"description\";s:48:\"Controls the text color of the sliding bar font.\";s:2:\"id\";s:21:\"slidingbar_text_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 40%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--slidingbar_text_color\";s:7:\"element\";s:16:\"#slidingbar-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"slidingbar_link_color\";a:7:{s:5:\"label\";s:25:\"Linkfarbe der Sliding Bar\";s:11:\"description\";s:52:\"Steuert die Textfarbe der Links in den Sliding Bars.\";s:2:\"id\";s:21:\"slidingbar_link_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 14%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--slidingbar_link_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"slidingbar_link_color_hover\";a:7:{s:5:\"label\";s:28:\"Sliding Bar Link Hover Color\";s:11:\"description\";s:59:\"Controls the text hover color of the sliding bar link font.\";s:2:\"id\";s:27:\"slidingbar_link_color_hover\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:29:\"--slidingbar_link_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:17:\"slidingbar_border\";a:7:{s:5:\"label\";s:21:\"Border on Sliding Bar\";s:11:\"description\";s:82:\"Turn on to display a border line on the sliding bar which makes it stand out more.\";s:2:\"id\";s:17:\"slidingbar_border\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-slidingbar-border\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:16:\"#slidingbar-area\";s:9:\"className\";s:25:\"fusion-sliding-bar-border\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:38:\"footer_options_template_content_notice\";a:4:{s:2:\"id\";s:38:\"footer_options_template_content_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:14:\"footer_widgets\";a:7:{s:5:\"label\";s:18:\"Fusszeilen Widgets\";s:11:\"description\";s:42:\"Anzeige von Fußleistenwidgets anschalten.\";s:2:\"id\";s:14:\"footer_widgets\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:29:\"footer_content_footer_widgets\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:14:\".fusion-footer\";}s:9:\"shortcuts\";a:2:{i:0;a:4:{s:10:\"aria_label\";s:21:\"Fußleiste bearbeiten\";s:4:\"icon\";s:14:\"fusiona-footer\";s:11:\"open_parent\";b:1;s:35:\"link_to_template_if_override_active\";s:6:\"footer\";}i:1;a:4:{s:10:\"aria_label\";s:29:\"Fußleistenwidgets bearbeiten\";s:9:\"css_class\";s:19:\"fusion-edit-sidebar\";s:4:\"link\";s:52:\"https://unternehmen.wir-noi.org/wp-admin/widgets.php\";s:28:\"disable_on_template_override\";s:6:\"footer\";}}}}s:22:\"footer_widgets_columns\";a:8:{s:5:\"label\";s:30:\"Anzahl Spalte in der Fusszeile\";s:11:\"description\";s:343:\"Kontrolliert die Anzahl der Spalten in der Fußleiste.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:22:\"footer_widgets_columns\";s:7:\"default\";s:1:\"4\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"6\";s:4:\"step\";s:1:\"1\";}s:4:\"type\";s:6:\"slider\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:37:\"footer_content_footer_widgets_columns\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:29:\"footer_widgets_center_content\";a:7:{s:5:\"label\";s:29:\"Center Footer Widgets Content\";s:11:\"description\";s:333:\"Turn on to center the footer widget content.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:29:\"footer_widgets_center_content\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:45:\".fusion-footer-widget-area.fusion-widget-area\";s:9:\"className\";s:32:\"fusion-footer-widget-area-center\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"footer_special_effects\";a:8:{s:5:\"label\";s:22:\"Footer Special Effects\";s:11:\"description\";s:44:\"Select a special effect for the footer area.\";s:2:\"id\";s:22:\"footer_special_effects\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:5:\"radio\";s:7:\"choices\";a:5:{s:4:\"none\";s:5:\"Keine\";s:22:\"footer_parallax_effect\";a:2:{i:0;s:22:\"Footer Parallax Effect\";i:1;s:59:\"This enables a fixed footer with parallax scrolling effect.\";}s:23:\"footer_area_bg_parallax\";a:2:{i:0;s:24:\"Parallax Hintergrundbild\";i:1;s:125:\"This enables a parallax effect on the background image selected in &quot;Background Image For Footer Widget Area&quot; field.\";}s:13:\"footer_sticky\";a:2:{i:0;s:18:\"Fixierte Fusszeile\";i:1;s:317:\"This enables a sticky footer. On short pages, the footer will always stick at the bottom, just &quot;above the fold&quot;. On long enough pages, it will act just like a normal footer. IMPORTANT: This will not work properly when using a Left or Right Side Header layout and the side header is larger than the viewport.\";}s:36:\"footer_sticky_with_parallax_bg_image\";a:2:{i:0;s:43:\"Sticky Footer and Parallax Background Image\";i:1;s:239:\"This enables a sticky footer together with a parallax effect on the background image. On short pages, the footer will always stick at the bottom, just &quot;above the fold&quot;. On long enough pages, it will act just like a normal footer.\";}}s:6:\"output\";a:8:{i:0;a:4:{s:7:\"element\";s:4:\"html\";s:8:\"property\";s:6:\"height\";s:13:\"value_pattern\";s:4:\"100%\";s:7:\"exclude\";a:3:{i:0;s:4:\"none\";i:1;s:22:\"footer_parallax_effect\";i:2;s:23:\"footer_area_bg_parallax\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaSideHeaderVars\";s:2:\"id\";s:22:\"footer_special_effects\";s:7:\"trigger\";a:1:{i:0;s:22:\"fusionSideHeaderScroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:22:\"footer_parallax_effect\";i:1;s:3:\"===\";}s:7:\"element\";s:14:\".fusion-footer\";s:9:\"className\";s:22:\"fusion-footer-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:4:\"none\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"avada-footer-fx-none\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:4;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:22:\"footer_parallax_effect\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-footer-fx-parallax-effect\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:5;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:23:\"footer_area_bg_parallax\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-footer-fx-bg-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:6;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:13:\"footer_sticky\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:22:\"avada-footer-fx-sticky\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:7;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:36:\"footer_sticky_with_parallax_bg_image\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:42:\"avada-footer-sticky-with-parallax-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:1:{s:37:\"footer_content_footer_special_effects\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:16:\"footer_copyright\";a:6:{s:5:\"label\";s:16:\"Copyright Leiste\";s:11:\"description\";s:37:\"Turn on to display the copyright bar.\";s:2:\"id\";s:16:\"footer_copyright\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:31:\"footer_content_footer_copyright\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:31:\"footer_copyright_center_content\";a:7:{s:5:\"label\";s:26:\"Zentriere Copyright Inhalt\";s:11:\"description\";s:333:\"Turn on to center the copyright bar content.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:31:\"footer_copyright_center_content\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:9:\"className\";s:30:\"fusion-footer-copyright-center\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"footer_text\";a:9:{s:5:\"label\";s:14:\"Copyright-Text\";s:11:\"description\";s:385:\"Fügen Sie den Text ein, der im Copyrightbalken angezeigt wird. HTML Markup kann genutzt werden.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:11:\"footer_text\";s:7:\"default\";s:217:\"Copyright 2012 - 2022 | <a href=\"https://bit.ly/2YJkGCr\">Avada Website Builder</a> by <a href=\"https://theme-fusion.com\">ThemeFusion</a> | All Rights Reserved | Powered by <a href=\"https://wordpress.org\">WordPress</a>\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:300;s:5:\"theme\";s:6:\"chrome\";}s:17:\"sanitize_callback\";a:2:{i:0;s:22:\"Avada_Output_Callbacks\";i:1;s:10:\"unfiltered\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:11:\"footer_text\";a:4:{s:8:\"selector\";s:24:\".fusion-copyright-notice\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:9:\"copyright\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:33:\"footer_options_template_bg_notice\";a:4:{s:2:\"id\";s:33:\"footer_options_template_bg_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:16:\"footerw_bg_image\";a:9:{s:5:\"label\";s:46:\"Hintergrundbild für Fusszeilen Widget Bereich\";s:11:\"description\";s:395:\"Select an image for the footer widget background. If left empty, the footer background color will be used.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:16:\"footerw_bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:18:\"--footerw_bg_image\";s:6:\"choice\";s:3:\"url\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:0:\"\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:32:\"avada-has-footer-widget-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"footerw_bg_full\";a:7:{s:5:\"label\";s:20:\"100% Hintergrundbild\";s:11:\"description\";s:398:\"Turn on to have the footer background image display at 100% in width and height according to the window size.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:15:\"footerw_bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:22:\"--footerw_bg_full-size\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:5:\"cover\";i:1;s:7:\"initial\";}s:10:\"conditions\";a:1:{i:0;a:2:{i:0;s:15:\"footerw_bg_full\";i:1;s:4:\"true\";}}}}}i:1;a:3:{s:4:\"name\";s:26:\"--footerw_bg_full-position\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:13:\"center center\";i:1;s:21:\"var(--footerw_bg_pos)\";}s:10:\"conditions\";a:1:{i:0;a:2:{i:0;s:15:\"footerw_bg_full\";i:1;s:4:\"true\";}}}}}}}s:17:\"footerw_bg_repeat\";a:8:{s:5:\"label\";s:23:\"Hintergrund wiederholen\";s:11:\"description\";s:331:\"Controls how the background image repeats.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"footerw_bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:16:\"Alle Wiederholen\";s:8:\"repeat-x\";s:22:\"Horizontal Wiederholen\";s:8:\"repeat-y\";s:20:\"Vertikal Wiederholen\";s:9:\"no-repeat\";s:18:\"Keine Wiederholung\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--footerw_bg_repeat\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";}}}s:14:\"footerw_bg_pos\";a:8:{s:5:\"label\";s:20:\"Hintergrund Position\";s:11:\"description\";s:343:\"Kontrolliert die Positionierung des Hintergrundbildes.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:14:\"footerw_bg_pos\";s:7:\"default\";s:13:\"center center\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:9:{s:8:\"top left\";s:10:\"Oben links\";s:10:\"top center\";s:10:\"Oben mitte\";s:9:\"top right\";s:11:\"Oben rechts\";s:11:\"center left\";s:11:\"Mitte links\";s:13:\"center center\";s:11:\"Mitte Mitte\";s:12:\"center right\";s:12:\"Mitte rechts\";s:11:\"bottom left\";s:11:\"Unten links\";s:13:\"bottom center\";s:11:\"Unten mitte\";s:12:\"bottom right\";s:12:\"Unten rechts\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--footerw_bg_pos\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";}}}s:38:\"footer_options_template_styling_notice\";a:4:{s:2:\"id\";s:38:\"footer_options_template_styling_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:16:\"footer_100_width\";a:8:{s:5:\"label\";s:21:\"100% Fusszeilenbreite\";s:11:\"description\";s:403:\"Turn on to have the footer area display at 100% width according to the window size. Turn off to follow site width.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:16:\"footer_100_width\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"avada-has-100-footer\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"footer_area_padding\";a:9:{s:5:\"label\";s:22:\"Fußzeile Innenabstand\";s:11:\"description\";s:347:\"Controls the top/right/bottom/left padding for the footer.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"footer_area_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"64px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:25:\"--footer_area_padding-top\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:28:\"--footer_area_padding-bottom\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:3:{s:4:\"name\";s:26:\"--footer_area_padding-left\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:4:\"left\";}i:3;a:3:{s:4:\"name\";s:27:\"--footer_area_padding-right\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:5:\"right\";}}}s:15:\"footer_bg_color\";a:7:{s:5:\"label\";s:30:\"Hintergrundfarbe der Fußzeile\";s:11:\"description\";s:332:\"Steuert die Hintergrundfarbe der Fusszeile.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:15:\"footer_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--footer_bg_color\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"footer_border_size\";a:8:{s:5:\"label\";s:24:\"Fußleiste Rahmengröße\";s:11:\"description\";s:332:\"Controls the size of the top footer border.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:18:\"footer_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--footer_border_size\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:19:\"footer_border_color\";a:7:{s:5:\"label\";s:25:\"Rahmenfarbe der Fusszeile\";s:11:\"description\";s:330:\"Controls the border colors of the footer.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"footer_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--footer_border_color\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"footer_divider_line\";a:9:{s:5:\"label\";s:41:\"Footer Widgets Area Vertical Divider Line\";s:11:\"description\";s:374:\"Turn on to have the footer widget area display vertical divider line between columns.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"footer_divider_line\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--footer_divider_line-flex\";s:7:\"element\";s:14:\".fusion-footer\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:4:\"flex\";i:1;s:5:\"block\";}s:10:\"conditions\";a:1:{i:0;a:2:{i:0;s:19:\"footer_divider_line\";i:1;s:4:\"true\";}}}}}}s:15:\"partial_refresh\";a:1:{s:27:\"footer_divider_line_partial\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:24:\"footer_divider_line_size\";a:8:{s:5:\"label\";s:46:\"Footer Widgets Area Vertical Divider Line Size\";s:11:\"description\";s:371:\"Controls the size of the vertical divider line between footer widget area columns.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:24:\"footer_divider_line_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--footer_divider_line_size\";s:7:\"element\";s:14:\".fusion-footer\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:25:\"footer_divider_line_style\";a:8:{s:5:\"label\";s:47:\"Footer Widgets Area Vertical Divider Line Style\";s:11:\"description\";s:372:\"Controls the style of the vertical divider line between footer widget area columns.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:25:\"footer_divider_line_style\";s:7:\"default\";s:5:\"solid\";s:7:\"choices\";a:7:{s:4:\"none\";s:4:\"None\";s:5:\"solid\";s:5:\"Solid\";s:6:\"dashed\";s:6:\"Dashed\";s:6:\"dotted\";s:6:\"Dotted\";s:6:\"double\";s:6:\"Double\";s:6:\"groove\";s:6:\"Groove\";s:5:\"ridge\";s:5:\"Ridge\";}s:4:\"type\";s:6:\"select\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--footer_divider_line_style\";s:7:\"element\";s:14:\".fusion-footer\";}}}s:20:\"footer_divider_color\";a:7:{s:5:\"label\";s:40:\"Trennlinienfarbe im Widget der Fusszeile\";s:11:\"description\";s:420:\"Kontrolliert die Farbe der Teiler in den Fußleistenwidgets und ebenfalls die der vertikalen Teilerlinien zwischen Widgetbereichen.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"footer_divider_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--footer_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"footer_widgets_padding\";a:9:{s:5:\"label\";s:32:\"Fußleiste Widgetbereich Padding\";s:11:\"description\";s:362:\"Kontrolliert das rechte/linke Padding für den Fußleisten-Widgetbereich.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:22:\"footer_widgets_padding\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--footer_widgets_padding\";s:7:\"element\";s:14:\".fusion-footer\";}}}s:17:\"copyright_padding\";a:8:{s:5:\"label\";s:17:\"Copyright Padding\";s:11:\"description\";s:348:\"Kontrolliert das obere/untere Padding im Copyright-Bereich.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"copyright_padding\";s:7:\"default\";a:2:{s:3:\"top\";s:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";}s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:4:\"type\";s:7:\"spacing\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:23:\"--copyright_padding-top\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:26:\"--copyright_padding-bottom\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:6:\"choice\";s:6:\"bottom\";}}}s:18:\"copyright_bg_color\";a:7:{s:5:\"label\";s:31:\"Hintergrundfarbe des Copyrights\";s:11:\"description\";s:348:\"Controls the background color of the footer copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:18:\"copyright_bg_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--copyright_bg_color\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"copyright_border_size\";a:8:{s:5:\"label\";s:23:\"Copyright Rahmengröße\";s:11:\"description\";s:335:\"Controls the size of the top copyright border.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:21:\"copyright_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--copyright_border_size\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"copyright_border_color\";a:7:{s:5:\"label\";s:26:\"Rahmenfarbe des Copyrights\";s:11:\"description\";s:346:\"Controls the border colors for the footer copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:22:\"copyright_border_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--copyright_border_color\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"footer_typography_info\";a:4:{s:5:\"label\";s:22:\"Fußleiste Typographie\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"footer_typography_info\";s:4:\"type\";s:4:\"info\";}s:26:\"footer_headings_typography\";a:8:{s:2:\"id\";s:26:\"footer_headings_typography\";s:5:\"label\";s:37:\"Fußleiste Überschriften Typographie\";s:11:\"description\";s:376:\"Diese Einstellungen kontrollieren die Typographie der Überschriften in der Fußleiste.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:4:\"type\";s:10:\"typography\";s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography2-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography2-font-size)\";s:11:\"font-weight\";s:3:\"600\";s:11:\"line-height\";s:34:\"var(--awb-typography2-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography2-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color1)\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:7:{i:0;a:3:{s:4:\"name\";s:40:\"--footer_headings_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:26:\"footer_headings_typography\";}}i:1;a:2:{s:4:\"name\";s:38:\"--footer_headings_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:40:\"--footer_headings_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:3;a:2:{s:4:\"name\";s:40:\"--footer_headings_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:4;a:2:{s:4:\"name\";s:39:\"--footer_headings_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:3:{s:4:\"name\";s:43:\"--footer_headings_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:6;a:2:{s:4:\"name\";s:34:\"--footer_headings_typography-color\";s:6:\"choice\";s:5:\"color\";}}}s:17:\"footer_text_color\";a:7:{s:5:\"label\";s:22:\"Fußzeile Schriftfarbe\";s:11:\"description\";s:340:\"Steuert die Textfarbe der Schrift in der Fusszeile.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"footer_text_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 40%))\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--footer_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:17:\"footer_link_color\";a:7:{s:5:\"label\";s:19:\"Fußzeile Linkfarbe\";s:11:\"description\";s:338:\"Steuert die Textfarbe der Links in der Fusszeile.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"footer_link_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:19:\"--footer_link_color\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"footer_link_color_hover\";a:7:{s:5:\"label\";s:35:\"Fußleiste Link Farbe bei Mouseover\";s:11:\"description\";s:343:\"Controls the text hover color of the footer link font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:23:\"footer_link_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--footer_link_color_hover\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"copyright_text_color\";a:7:{s:5:\"label\";s:20:\"Copyright Text Farbe\";s:11:\"description\";s:58:\"Kontrolliert die Textfarbe im Copyright-Fußzeilenbereich.\";s:2:\"id\";s:20:\"copyright_text_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 60%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"footer_copyright\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--copyright_text_color\";s:7:\"element\";s:24:\".fusion-copyright-notice\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"copyright_link_color\";a:7:{s:5:\"label\";s:20:\"Copyright Link Farbe\";s:11:\"description\";s:64:\"Kontrolliert die Farbe des Links im Copyright-Fußzeilenbereich.\";s:2:\"id\";s:20:\"copyright_link_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"footer_copyright\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--copyright_link_color\";s:7:\"element\";s:24:\".fusion-copyright-notice\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"copyright_link_color_hover\";a:7:{s:5:\"label\";s:26:\"Copyright Link Hover Color\";s:11:\"description\";s:59:\"Controls the link hover color of the footer copyright area.\";s:2:\"id\";s:26:\"copyright_link_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"footer_copyright\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--copyright_link_color_hover\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"copyright_font_size\";a:8:{s:5:\"label\";s:24:\"Schriftgrösse Copyright\";s:11:\"description\";s:335:\"Controls the font size for the copyright text.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"copyright_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--copyright_font_size\";s:7:\"element\";s:24:\".fusion-copyright-notice\";}}}s:24:\"responsive_sidebar_order\";a:8:{s:2:\"id\";s:24:\"responsive_sidebar_order\";s:5:\"label\";s:24:\"Sidebar Responsive Order\";s:11:\"description\";s:101:\"Choose the order of sidebars and main content area on mobile layouts through drag &amp; drop sorting.\";s:4:\"type\";s:8:\"sortable\";s:7:\"choices\";a:3:{s:7:\"content\";s:6:\"Inhalt\";s:7:\"sidebar\";s:14:\"Seitenleiste 1\";s:9:\"sidebar-2\";s:14:\"Seitenleiste 2\";}s:7:\"default\";s:25:\"content,sidebar,sidebar-2\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:14:\"sidebar_sticky\";a:7:{s:5:\"label\";s:20:\"Sticky Seitenleisten\";s:11:\"description\";s:266:\"Select the sidebar(s) that should remain sticky when scrolling the page. If the sidebar content is taller than the screen, it acts like a normal sidebar until the bottom of the sidebar is within the viewport, which will then remain fixed in place as you scroll down.\";s:2:\"id\";s:14:\"sidebar_sticky\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:4:\"none\";s:5:\"Keine\";s:11:\"sidebar_one\";s:14:\"Seitenleiste 1\";s:11:\"sidebar_two\";s:14:\"Seitenleiste 2\";s:4:\"both\";s:5:\"Beide\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:15:\"sidebar_padding\";a:7:{s:5:\"label\";s:20:\"Seitenleiste Abstand\";s:11:\"description\";s:29:\"Controls the sidebar padding.\";s:2:\"id\";s:15:\"sidebar_padding\";s:7:\"default\";s:3:\"0px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:17:\"--sidebar_padding\";s:7:\"element\";s:8:\".sidebar\";}i:1;a:3:{s:4:\"name\";s:31:\"--sidebar_padding-percent_to_vw\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vw\";}}}}}s:16:\"sidebar_bg_color\";a:6:{s:5:\"label\";s:30:\"Seitenleiste Hintergrundfarfbe\";s:11:\"description\";s:46:\"Steuert die Hintergrundfarbe der Seitenleiste.\";s:2:\"id\";s:16:\"sidebar_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--sidebar_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"sidebar_widget_bg_color\";a:6:{s:5:\"label\";s:39:\"Sidebar Widget Heading Background Color\";s:11:\"description\";s:108:\"Controls the background color of the widget title box. If left transparent the widget title will be unboxed.\";s:2:\"id\";s:23:\"sidebar_widget_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:25:\"--sidebar_widget_bg_color\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:3:{s:4:\"name\";s:40:\"--sidebar_widget_bg_color-opaque-padding\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:2:{i:0;s:28:\"return_string_if_transparent\";i:1;a:2:{s:11:\"transparent\";s:0:\"\";s:6:\"opaque\";s:8:\"9px 15px\";}}}}}s:15:\"sidew_font_size\";a:6:{s:5:\"label\";s:52:\"Widget Überschriften Schriftgrösse in Seitenleiste\";s:11:\"description\";s:50:\"Controls the font size of the widget heading text.\";s:2:\"id\";s:15:\"sidew_font_size\";s:7:\"default\";s:4:\"18px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:17:\"--sidew_font_size\";s:7:\"element\";s:8:\".sidebar\";}}}s:21:\"sidebar_heading_color\";a:6:{s:5:\"label\";s:42:\"Widget Überschriftenfarbe in Seitenleiste\";s:11:\"description\";s:54:\"Controls the color of the sidebar widget heading text.\";s:2:\"id\";s:21:\"sidebar_heading_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--sidebar_heading_color\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:13:\"pages_sidebar\";a:7:{s:5:\"label\";s:21:\"Global Page Sidebar 1\";s:11:\"description\";s:75:\"Wählen Sie Seitenleiste 1 aus, die auf allen Seiten angezeigt werden soll.\";s:2:\"id\";s:13:\"pages_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:15:\"pages_sidebar_2\";a:7:{s:5:\"label\";s:21:\"Global Page Sidebar 2\";s:11:\"description\";s:101:\"Select sidebar 2 that will display on all pages. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:15:\"pages_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:20:\"pages_global_sidebar\";a:6:{s:5:\"label\";s:31:\"Force Global Sidebars For Pages\";s:11:\"description\";s:98:\"Turn on if you want to use the same sidebars on all pages. This option overrides the page options.\";s:2:\"id\";s:20:\"pages_global_sidebar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:19:\"default_sidebar_pos\";a:7:{s:5:\"label\";s:28:\"Global Page Sidebar Position\";s:11:\"description\";s:113:\"Controls the position of sidebar 1 for all pages. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:19:\"default_sidebar_pos\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:5:\"Links\";s:5:\"Right\";s:6:\"Rechts\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:17:\"portfolio_sidebar\";a:7:{s:5:\"label\";s:31:\"Global Portfolio Post Sidebar 1\";s:11:\"description\";s:58:\"Select sidebar 1 that will display on all portfolio posts.\";s:2:\"id\";s:17:\"portfolio_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:19:\"portfolio_sidebar_2\";a:7:{s:5:\"label\";s:31:\"Global Portfolio Post Sidebar 2\";s:11:\"description\";s:111:\"Select sidebar 2 that will display on all portfolio posts. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:19:\"portfolio_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:24:\"portfolio_global_sidebar\";a:6:{s:5:\"label\";s:41:\"Force Global Sidebars For Portfolio Posts\";s:11:\"description\";s:118:\"Turn on if you want to use the same sidebars on all portfolio posts. This option overrides the portfolio post options.\";s:2:\"id\";s:24:\"portfolio_global_sidebar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:26:\"portfolio_sidebar_position\";a:7:{s:5:\"label\";s:39:\"Globale Portfolio Seitenleiste Position\";s:11:\"description\";s:141:\"Controls the position of sidebar 1 for all portfolio posts and archive pages. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:26:\"portfolio_sidebar_position\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:5:\"Links\";s:5:\"Right\";s:6:\"Rechts\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:37:\"portfolio_archive_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:325:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The sidebar position for portfolio archive pages is controlled by the option on the <a href=\"https://unternehmen.wir-noi.org/wp-admin/themes.php?page=avada_options&amp;lang=en#portfolio_sidebar\" target=\"_blank\">Portfolio Posts sidebar</a> tab.</div>\";s:2:\"id\";s:37:\"portfolio_archive_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:25:\"portfolio_archive_sidebar\";a:7:{s:5:\"label\";s:27:\"Portfolio Archive Sidebar 1\";s:11:\"description\";s:66:\"Select sidebar 1 that will display on the portfolio archive pages.\";s:2:\"id\";s:25:\"portfolio_archive_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:27:\"portfolio_archive_sidebar_2\";a:7:{s:5:\"label\";s:27:\"Portfolio Archive Sidebar 2\";s:11:\"description\";s:119:\"Select sidebar 2 that will display on the portfolio archive pages. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:27:\"portfolio_archive_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:13:\"posts_sidebar\";a:7:{s:5:\"label\";s:26:\"Global Blog Post Sidebar 1\";s:11:\"description\";s:53:\"Select sidebar 1 that will display on all blog posts.\";s:2:\"id\";s:13:\"posts_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:27:\"#sidebar.fusion-widget-area\";}s:9:\"shortcuts\";a:3:{i:0;a:6:{s:10:\"aria_label\";s:27:\"Edit Global Sidebar Options\";s:8:\"callback\";s:23:\"fusionEditGlobalSidebar\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:11:\"fusiona-cog\";s:35:\"link_to_template_if_override_active\";s:7:\"content\";s:13:\"override_icon\";s:15:\"fusiona-content\";}i:1;a:5:{s:10:\"aria_label\";s:20:\"Edit Sidebar Options\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:16:\"fusiona-settings\";s:7:\"context\";s:2:\"po\";s:28:\"disable_on_template_override\";s:7:\"content\";}i:2;a:4:{s:10:\"aria_label\";s:20:\"Edit Sidebar Widgets\";s:9:\"css_class\";s:19:\"fusion-edit-sidebar\";s:4:\"link\";s:52:\"https://unternehmen.wir-noi.org/wp-admin/widgets.php\";s:28:\"disable_on_template_override\";s:7:\"content\";}}}}s:15:\"posts_sidebar_2\";a:7:{s:5:\"label\";s:26:\"Global Blog Post Sidebar 2\";s:11:\"description\";s:106:\"Select sidebar 2 that will display on all blog posts. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:15:\"posts_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:29:\"#sidebar-2.fusion-widget-area\";}s:9:\"shortcuts\";a:3:{i:0;a:4:{s:10:\"aria_label\";s:27:\"Edit Global Sidebar Options\";s:8:\"callback\";s:23:\"fusionEditGlobalSidebar\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:11:\"fusiona-cog\";}i:1;a:4:{s:10:\"aria_label\";s:20:\"Edit Sidebar Options\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:16:\"fusiona-settings\";s:7:\"context\";s:2:\"po\";}i:2;a:2:{s:10:\"aria_label\";s:20:\"Edit Sidebar Widgets\";s:4:\"link\";s:52:\"https://unternehmen.wir-noi.org/wp-admin/widgets.php\";}}}}s:20:\"posts_global_sidebar\";a:5:{s:5:\"label\";s:36:\"Force Global Sidebars For Blog Posts\";s:11:\"description\";s:108:\"Turn on if you want to use the same sidebars on all blog posts. This option overrides the blog post options.\";s:2:\"id\";s:20:\"posts_global_sidebar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:21:\"blog_sidebar_position\";a:6:{s:5:\"label\";s:34:\"Globale Blog Seitenleiste Position\";s:11:\"description\";s:136:\"Controls the position of sidebar 1 for all blog posts and archive pages. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:21:\"blog_sidebar_position\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:5:\"Links\";s:5:\"Right\";s:6:\"Rechts\";}}s:32:\"blog_archive_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:311:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The sidebar position for blog archive pages is controlled by the option on the <a href=\"https://unternehmen.wir-noi.org/wp-admin/themes.php?page=avada_options&amp;lang=en#posts_sidebar\" target=\"_blank\">Blog Posts sidebar</a> tab.</div>\";s:2:\"id\";s:32:\"blog_archive_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:20:\"blog_archive_sidebar\";a:7:{s:5:\"label\";s:28:\"Blog Archive  Seitenleiste 1\";s:11:\"description\";s:70:\"Wählen Sie Seitenleiste 1, die auf Blog-Archive-Seite angezeigt wird.\";s:2:\"id\";s:20:\"blog_archive_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:22:\"blog_archive_sidebar_2\";a:7:{s:5:\"label\";s:28:\"Blog Archive  Seitenleiste 2\";s:11:\"description\";s:70:\"Wählen Sie Seitenleiste 2, die auf Blog-Archive-Seite angezeigt wird.\";s:2:\"id\";s:22:\"blog_archive_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:14:\"search_sidebar\";a:7:{s:5:\"label\";s:24:\"Suchseite Seitenleiste 1\";s:11:\"description\";s:70:\"Wählen Sie Seitenleiste 1, die auf Suchergebnis-Seite angezeigt wird.\";s:2:\"id\";s:14:\"search_sidebar\";s:7:\"default\";s:12:\"Blog Sidebar\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:16:\"search_sidebar_2\";a:7:{s:5:\"label\";s:24:\"Suchseite Seitenleiste 2\";s:11:\"description\";s:149:\"Wählen Sie Seitenleiste 2, die auf der Suchergebnis-Seite anzeigen wird. Seitenliste 2 kann nur benutzt werden, wenn Seitenleiste 1 ausgewählt ist.\";s:2:\"id\";s:16:\"search_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:23:\"search_sidebar_position\";a:7:{s:5:\"label\";s:28:\"Seitenleisten-Suche Position\";s:11:\"description\";s:127:\"Controls the position of sidebar 1 for the search results page. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:23:\"search_sidebar_position\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:5:\"Links\";s:5:\"Right\";s:6:\"Rechts\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:8:\"bg_image\";a:8:{s:5:\"label\";s:25:\"Background Image For Page\";s:11:\"description\";s:50:\"Select an image to use for a full page background.\";s:2:\"id\";s:8:\"bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:10:\"--bg_image\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:4:\"none\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:23:\"avada-html-has-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:7:\"bg_full\";a:7:{s:5:\"label\";s:20:\"100% Hintergrundbild\";s:11:\"description\";s:107:\"Turn on to have the page background image display at 100% in width and height according to the window size.\";s:2:\"id\";s:7:\"bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:23:\"avada-has-bg-image-full\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:9:\"bg_repeat\";a:8:{s:5:\"label\";s:23:\"Hintergrund wiederholen\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:9:\"bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:16:\"Alle Wiederholen\";s:8:\"repeat-x\";s:22:\"Horizontal Wiederholen\";s:8:\"repeat-y\";s:20:\"Vertikal Wiederholen\";s:9:\"no-repeat\";s:18:\"Keine Wiederholung\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:11:\"--bg_repeat\";}}}s:8:\"bg_color\";a:6:{s:5:\"label\";s:25:\"Background Color For Page\";s:11:\"description\";s:167:\"Controls the background color for the page. When the color value is set to anything below 100% opacity, the color will overlay the background image if one is uploaded.\";s:2:\"id\";s:8:\"bg_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:10:\"--bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:18:\"--bg-color-overlay\";s:8:\"callback\";a:2:{i:0;s:22:\"return_color_if_opaque\";i:1;a:2:{s:11:\"transparent\";s:7:\"overlay\";s:6:\"opaque\";s:6:\"normal\";}}}}}s:17:\"bg_pattern_option\";a:6:{s:5:\"label\";s:17:\"Hintergrundmuster\";s:11:\"description\";s:52:\"Turn on to display a pattern in the page background.\";s:2:\"id\";s:17:\"bg_pattern_option\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:9:\"body,html\";s:9:\"className\";s:33:\"avada-has-page-background-pattern\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"bg_pattern\";a:7:{s:5:\"label\";s:33:\"Wählen Sie ein Hintergrundmuster\";s:2:\"id\";s:10:\"bg_pattern\";s:7:\"default\";s:8:\"pattern1\";s:4:\"type\";s:11:\"radio-image\";s:7:\"choices\";a:22:{s:8:\"pattern1\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern1.png\";s:8:\"pattern2\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern2.png\";s:8:\"pattern3\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern3.png\";s:8:\"pattern4\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern4.png\";s:8:\"pattern5\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern5.png\";s:8:\"pattern6\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern6.png\";s:8:\"pattern7\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern7.png\";s:8:\"pattern8\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern8.png\";s:8:\"pattern9\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern9.png\";s:9:\"pattern10\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern10.png\";s:9:\"pattern11\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern11.png\";s:9:\"pattern12\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern12.png\";s:9:\"pattern13\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern13.png\";s:9:\"pattern14\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern14.png\";s:9:\"pattern15\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern15.png\";s:9:\"pattern16\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern16.png\";s:9:\"pattern17\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern17.png\";s:9:\"pattern18\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern18.png\";s:9:\"pattern19\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern19.png\";s:9:\"pattern20\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern20.png\";s:9:\"pattern21\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern21.png\";s:9:\"pattern22\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern22.png\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"bg_pattern_option\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:12:\"--bg_pattern\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:91:\"url(\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/$.png\")\";i:1;s:0:\"\";}}}}}s:16:\"content_bg_color\";a:7:{s:5:\"label\";s:29:\"Main Content Background Color\";s:11:\"description\";s:59:\"Steuert die Hintergrundfarbe des Bereichs des Hauptinhalts.\";s:2:\"id\";s:16:\"content_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--content_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:10:\"not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:27:\"avada-content-bg-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"content_bg_image\";a:7:{s:5:\"label\";s:49:\"Hintergrundbild für den Bereich des Hauptinhalts\";s:11:\"description\";s:60:\"Select an image to use for the main content area background.\";s:2:\"id\";s:16:\"content_bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--content_bg_image\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:4:\"none\";}}}}}s:15:\"content_bg_full\";a:7:{s:5:\"label\";s:20:\"100% Hintergrundbild\";s:11:\"description\";s:115:\"Turn on to have the main content background image display at 100% in width and height according to the window size.\";s:2:\"id\";s:15:\"content_bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:5:\"#main\";s:9:\"className\";s:7:\"full-bg\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"content_bg_repeat\";a:8:{s:5:\"label\";s:23:\"Hintergrund wiederholen\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:16:\"Alle Wiederholen\";s:8:\"repeat-x\";s:22:\"Horizontal Wiederholen\";s:8:\"repeat-y\";s:20:\"Vertikal Wiederholen\";s:9:\"no-repeat\";s:18:\"Keine Wiederholung\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--content_bg_repeat\";}}}s:15:\"typography_sets\";a:6:{s:5:\"label\";s:15:\"Typography Sets\";s:11:\"description\";s:520:\"Set your global typography sets. The sets defined here can be used from other global options, and element options. Each of the options within these sets can be individually overridden in options using the sets. <strong>IMPORTANT NOTE:</strong> If a global set that is used by other options gets deleted, these corresponding options will display the default font. Typography sets are internally stored with a fixed counter. Thus, adding a new set after deleting an old one, will set the same internal name to the new set.\";s:2:\"id\";s:15:\"typography_sets\";s:7:\"default\";a:5:{s:11:\"typography1\";a:11:{s:5:\"label\";s:8:\"Headings\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"46px\";s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography2\";a:11:{s:5:\"label\";s:11:\"Subheadings\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.1\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography3\";a:11:{s:5:\"label\";s:4:\"Lead\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography4\";a:11:{s:5:\"label\";s:4:\"Body\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:4:\"1.72\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography5\";a:11:{s:5:\"label\";s:5:\"Small\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:4:\"1.72\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}}s:4:\"type\";s:15:\"typography-sets\";s:9:\"transport\";s:11:\"postMessage\";}s:35:\"body_typography_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:265:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> This tab contains general typography options. Additional typography options for specific areas can be found within other tabs. Example: For menu typography options go to the menu tab.</div>\";s:2:\"id\";s:35:\"body_typography_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:15:\"body_typography\";a:8:{s:2:\"id\";s:15:\"body_typography\";s:5:\"label\";s:15:\"Body Typography\";s:11:\"description\";s:56:\"These settings control the typography for all body text.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography4-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography4-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:8:\"css_vars\";a:8:{i:0;a:3:{s:4:\"name\";s:29:\"--body_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:15:\"body_typography\";}}i:1;a:2:{s:4:\"name\";s:27:\"--body_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:16:\"--base-font-size\";s:6:\"choice\";s:9:\"font-size\";s:8:\"callback\";a:2:{i:0;s:23:\"convert_font_size_to_px\";i:1;s:0:\"\";}}i:3;a:3:{s:4:\"name\";s:29:\"--body_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:28:\"--body_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:29:\"--body_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:6;a:3:{s:4:\"name\";s:32:\"--body_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:7;a:3:{s:4:\"name\";s:23:\"--body_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}}}s:10:\"link_color\";a:6:{s:5:\"label\";s:10:\"Link Farbe\";s:11:\"description\";s:36:\"Bestimmt die Farbe aller Text-Links.\";s:2:\"id\";s:10:\"link_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:12:\"--link_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:15:\"--link_color-8a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.8\";}}}}s:38:\"headers_typography_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:265:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> This tab contains heading typography options. Additional typography options for specific areas can be found within other tabs. Example: For menu typography options go to the menu tab.</div>\";s:2:\"id\";s:38:\"headers_typography_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:13:\"h1_typography\";a:8:{s:2:\"id\";s:13:\"h1_typography\";s:5:\"label\";s:22:\"H1 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H1 headings.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:8:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;}s:7:\"default\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"64px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:27:\"--h1_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h1_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h1_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h1_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h1_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h1_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h1_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h1_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:26:\"--h1_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:8;a:2:{s:4:\"name\";s:29:\"--h1_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h2_typography\";a:8:{s:2:\"id\";s:13:\"h2_typography\";s:5:\"label\";s:22:\"H2 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H2 headings.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:8:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;}s:7:\"default\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"48px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:27:\"--h2_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h2_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h2_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h2_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h2_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h2_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h2_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h2_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:26:\"--h2_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:8;a:2:{s:4:\"name\";s:29:\"--h2_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h3_typography\";a:8:{s:2:\"id\";s:13:\"h3_typography\";s:5:\"label\";s:22:\"H3 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H3 headings.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:8:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;}s:7:\"default\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"36px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:27:\"--h3_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h3_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h3_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h3_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h3_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h3_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h3_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h3_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:26:\"--h3_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:8;a:2:{s:4:\"name\";s:29:\"--h3_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h4_typography\";a:8:{s:2:\"id\";s:13:\"h4_typography\";s:5:\"label\";s:22:\"H4 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H4 headings.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:8:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;}s:7:\"default\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"24px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:27:\"--h4_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h4_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h4_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h4_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h4_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h4_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h4_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h4_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:26:\"--h4_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:8;a:2:{s:4:\"name\";s:29:\"--h4_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h5_typography\";a:8:{s:2:\"id\";s:13:\"h5_typography\";s:5:\"label\";s:22:\"H5 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H5 headings.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:8:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;}s:7:\"default\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"20px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:27:\"--h5_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h5_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h5_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h5_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h5_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h5_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h5_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h5_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:26:\"--h5_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:8;a:2:{s:4:\"name\";s:29:\"--h5_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h6_typography\";a:8:{s:2:\"id\";s:13:\"h6_typography\";s:5:\"label\";s:22:\"H6 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H6 headings.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:8:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;}s:7:\"default\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"16px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:27:\"--h6_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h6_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h6_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h6_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h6_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h6_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h6_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h6_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:26:\"--h6_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:8;a:2:{s:4:\"name\";s:29:\"--h6_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:21:\"post_title_typography\";a:8:{s:2:\"id\";s:21:\"post_title_typography\";s:5:\"label\";s:21:\"Post Title Typography\";s:11:\"description\";s:207:\"These settings control the typography of all post titles including archive and single posts.<br /><strong>IMPORTANT:</strong> On archive pages and in blog elements the linked post titles will use link color.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"48px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:8:\"css_vars\";a:7:{i:0;a:3:{s:4:\"name\";s:35:\"--post_title_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:21:\"post_title_typography\";}}i:1;a:3:{s:4:\"name\";s:35:\"--post_title_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:35:\"--post_title_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:38:\"--post_title_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:34:\"--post_title_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:33:\"--post_title_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:29:\"--post_title_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}}}s:29:\"post_titles_extras_typography\";a:8:{s:2:\"id\";s:29:\"post_titles_extras_typography\";s:5:\"label\";s:28:\"Post Title Extras Typography\";s:11:\"description\";s:163:\"These settings control the typography of single post title extras such as &quot;Comments&quot;, &quot;Related Posts or Projects&quot; and &quot;Author Titles&quot;\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"20px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:8:\"css_vars\";a:7:{i:0;a:3:{s:4:\"name\";s:43:\"--post_titles_extras_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:29:\"post_titles_extras_typography\";}}i:1;a:3:{s:4:\"name\";s:43:\"--post_titles_extras_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:43:\"--post_titles_extras_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:46:\"--post_titles_extras_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:42:\"--post_titles_extras_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:41:\"--post_titles_extras_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:37:\"--post_titles_extras_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}}}s:17:\"custom_fonts_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:391:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Please upload your custom fonts below. Once you upload a custom font, <strong>you will have to save your options and reload this page on your browser</strong>. After you reload the page you will be able to select your new fonts - they will be available at the top of the fonts-list in the typography controls.</div>\";s:2:\"id\";s:17:\"custom_fonts_info\";s:4:\"type\";s:6:\"custom\";}s:12:\"custom_fonts\";a:9:{s:5:\"label\";s:19:\"Benutzer Schriftart\";s:11:\"description\";s:233:\"Upload a custom font to use throughout the site. All files are not necessary but are recommended for full browser support. You can upload as many custom fonts as you need. Click the &quot;Add&quot; button for additional upload boxes.\";s:2:\"id\";s:12:\"custom_fonts\";s:7:\"default\";a:0:{}s:4:\"type\";s:8:\"repeater\";s:10:\"bind_title\";s:4:\"name\";s:5:\"limit\";i:50;s:9:\"transport\";s:11:\"postMessage\";s:6:\"fields\";a:6:{s:4:\"name\";a:6:{s:5:\"label\";s:9:\"Font Name\";s:11:\"description\";s:46:\"This will be used in the font-family dropdown.\";s:2:\"id\";s:4:\"name\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:5:\"class\";s:22:\"avada-custom-font-name\";}s:5:\"woff2\";a:6:{s:5:\"label\";s:5:\"WOFF2\";s:2:\"id\";s:5:\"woff2\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:4:\"woff\";a:6:{s:5:\"label\";s:4:\"WOFF\";s:2:\"id\";s:4:\"woff\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:3:\"ttf\";a:6:{s:5:\"label\";s:3:\"TTF\";s:2:\"id\";s:3:\"ttf\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:3:\"eot\";a:6:{s:5:\"label\";s:3:\"EOT\";s:2:\"id\";s:3:\"eot\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:3:\"svg\";a:6:{s:5:\"label\";s:3:\"SVG\";s:2:\"id\";s:3:\"svg\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}}}s:32:\"general_blog_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:354:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab only control the assigned blog page in \"Settings > Reading\", blog archives or the blog single post page, not the blog element. The only options on this tab that work with the blog element are the Date Format options and Load More Post Button Color.</div>\";s:2:\"id\";s:32:\"general_blog_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:19:\"blog_page_title_bar\";a:7:{s:5:\"label\";s:19:\"Blog Page Title Bar\";s:11:\"description\";s:85:\"Controls how the page title bar displays on single blog posts and blog archive pages.\";s:2:\"id\";s:19:\"blog_page_title_bar\";s:7:\"default\";s:15:\"bar_and_content\";s:7:\"choices\";a:3:{s:15:\"bar_and_content\";s:24:\"Zeige Leiste und Inhalte\";s:12:\"content_only\";s:17:\"Zeige nur Inhalte\";s:4:\"hide\";s:10:\"Ausblenden\";}s:4:\"type\";s:6:\"select\";s:15:\"partial_refresh\";a:1:{s:43:\"page_title_bar_contents_blog_page_title_bar\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:24:\"blog_show_page_title_bar\";a:7:{s:5:\"label\";s:28:\"Blog Assigned Page Title Bar\";s:11:\"description\";s:104:\"Controls how the page title bar displays on the assigned blog page in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:24:\"blog_show_page_title_bar\";s:7:\"default\";s:15:\"bar_and_content\";s:7:\"choices\";a:3:{s:15:\"bar_and_content\";s:24:\"Zeige Leiste und Inhalte\";s:12:\"content_only\";s:17:\"Zeige nur Inhalte\";s:4:\"hide\";s:10:\"Ausblenden\";}s:4:\"type\";s:6:\"select\";s:15:\"partial_refresh\";a:1:{s:48:\"page_title_bar_contents_blog_show_page_title_bar\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:10:\"blog_title\";a:7:{s:5:\"label\";s:16:\"Blog Seitentitel\";s:11:\"description\";s:147:\"Controls the title text that displays in the page title bar only if your front page displays your latest post in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:10:\"blog_title\";s:7:\"default\";s:4:\"Blog\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"blog_show_page_title_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"hide\";}}s:15:\"partial_refresh\";a:1:{s:18:\"blog_title_partial\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:13:\"blog_subtitle\";a:7:{s:5:\"label\";s:21:\"Blog-Seite Untertitel\";s:11:\"description\";s:150:\"Controls the subtitle text that displays in the page title bar only if your front page displays your latest post in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:13:\"blog_subtitle\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"blog_show_page_title_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"hide\";}}s:15:\"partial_refresh\";a:1:{s:21:\"blog_subtitle_partial\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:11:\"blog_layout\";a:8:{s:5:\"label\";s:11:\"Blog Layout\";s:11:\"description\";s:84:\"Controls the layout for the assigned blog page in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:11:\"blog_layout\";s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:5:\"large\";s:5:\"Groß\";s:6:\"medium\";s:6:\"Mittel\";s:15:\"large alternate\";s:16:\"Groß Alternativ\";s:16:\"medium alternate\";s:17:\"Mittel Alternativ\";s:4:\"grid\";s:4:\"Grid\";s:8:\"timeline\";s:10:\"Zeitleiste\";s:7:\"masonry\";s:7:\"Masonry\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:26:\".blog .fusion-blog-archive\";}s:9:\"shortcuts\";a:1:{i:0;a:1:{s:10:\"aria_label\";s:17:\"Edit Blog Options\";}}}}s:19:\"blog_archive_layout\";a:7:{s:5:\"label\";s:19:\"Blog Archive Layout\";s:11:\"description\";s:47:\"Controls the layout for the blog archive pages.\";s:2:\"id\";s:19:\"blog_archive_layout\";s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:5:\"large\";s:5:\"Groß\";s:6:\"medium\";s:6:\"Mittel\";s:15:\"large alternate\";s:16:\"Groß Alternativ\";s:16:\"medium alternate\";s:17:\"Mittel Alternativ\";s:4:\"grid\";s:4:\"Grid\";s:8:\"timeline\";s:10:\"Zeitleiste\";s:7:\"masonry\";s:7:\"Masonry\";}s:15:\"update_callback\";a:1:{i:0;a:4:{i:0;a:3:{s:9:\"condition\";s:11:\"is_category\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:6:\"is_tag\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:2;a:3:{s:9:\"condition\";s:7:\"is_date\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:3;a:3:{s:9:\"condition\";s:9:\"is_author\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:20:\"blog_pagination_type\";a:7:{s:5:\"label\";s:22:\"Seitennummerierung Typ\";s:11:\"description\";s:115:\"Controls the pagination type for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:20:\"blog_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:10:\"pagination\";s:16:\"Seitennavigation\";s:15:\"infinite_scroll\";s:18:\"Infinite Scrolling\";s:16:\"load_more_button\";s:20:\"Weitere Laden Button\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:36:\"blog_load_more_posts_button_bg_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Button Background Color\";s:11:\"description\";s:94:\"Controls the background color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:36:\"blog_load_more_posts_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:38:\"--blog_load_more_posts_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:38:\"blog_load_more_posts_button_text_color\";a:7:{s:5:\"label\";s:33:\"Load More Posts Button Text Color\";s:11:\"description\";s:88:\"Controls the text color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:38:\"blog_load_more_posts_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:40:\"--blog_load_more_posts_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:42:\"blog_load_more_posts_hover_button_bg_color\";a:7:{s:5:\"label\";s:45:\"Load More Posts Button Hover Background Color\";s:11:\"description\";s:100:\"Controls the hover background color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:42:\"blog_load_more_posts_hover_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:44:\"--blog_load_more_posts_hover_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:44:\"blog_load_more_posts_hover_button_text_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Hover Button Text Color\";s:11:\"description\";s:94:\"Controls the hover text color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:44:\"blog_load_more_posts_hover_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:46:\"--blog_load_more_posts_hover_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:25:\"blog_archive_grid_columns\";a:9:{s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:218:\"Controls the number of columns for grid and masonry layout when using it for the assigned blog page in \"Settings > Reading\" or blog archive pages. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:25:\"blog_archive_grid_columns\";s:7:\"default\";i:3;s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:32:\"blog_archive_grid_column_spacing\";a:11:{s:5:\"label\";s:14:\"Spaltenabstand\";s:11:\"description\";s:171:\"Controls the column spacing for blog posts for grid and masonry layout when using it for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:32:\"blog_archive_grid_column_spacing\";s:7:\"default\";s:2:\"40\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:9:\"transport\";s:7:\"refresh\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--blog_archive_grid_column_spacing\";s:13:\"value_pattern\";s:3:\"$px\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:18:\"blog_equal_heights\";a:9:{s:5:\"label\";s:13:\"Equal Heights\";s:11:\"description\";s:55:\"Turn on to display grid boxes to equal heights per row.\";s:2:\"id\";s:18:\"blog_equal_heights\";s:7:\"default\";i:0;s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}}s:9:\"transport\";s:7:\"refresh\";s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:25:\"blog_archive_grid_padding\";a:9:{s:5:\"label\";s:30:\"Blog Archive Grid Text Padding\";s:11:\"description\";s:106:\"Controls the top/right/bottom/left padding of the blog text when using grid / masonry or timeline layout. \";s:2:\"id\";s:25:\"blog_archive_grid_padding\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"30px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:4;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:5;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}}s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:31:\"--blog_archive_grid_padding-top\";s:6:\"choice\";s:3:\"top\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}i:1;a:3:{s:4:\"name\";s:34:\"--blog_archive_grid_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}i:2;a:3:{s:4:\"name\";s:32:\"--blog_archive_grid_padding-left\";s:6:\"choice\";s:4:\"left\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}i:3;a:3:{s:4:\"name\";s:33:\"--blog_archive_grid_padding-right\";s:6:\"choice\";s:5:\"right\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}}}s:21:\"blog_layout_alignment\";a:9:{s:5:\"label\";s:35:\"Blog Archive Grid Content Alignment\";s:11:\"description\";s:93:\"Controls the content alignment of the blog text when using grid / masonry or timeline layout.\";s:2:\"id\";s:21:\"blog_layout_alignment\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:0:\"\";s:9:\"Text Flow\";s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:4;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:5;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:14:\"content_length\";a:6:{s:5:\"label\";s:20:\"Blog Content Display\";s:11:\"description\";s:177:\"Controls if the blog content displays an excerpt or full content or is completely disabled for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:14:\"content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"excerpt\";s:6:\"Auszug\";s:12:\"full_content\";s:15:\"Gesamter Inhalt\";s:4:\"hide\";s:7:\"No Text\";}}s:19:\"excerpt_length_blog\";a:8:{s:5:\"label\";s:13:\"Auszugslänge\";s:11:\"description\";s:207:\"Controls post excerts length for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages. Limit is applied to number of letter or words depending on Basis for Excerpt Length option.\";s:2:\"id\";s:19:\"excerpt_length_blog\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"content_length\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"excerpt\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:18:\"strip_html_excerpt\";a:6:{s:5:\"label\";s:24:\"HTML im Auszug entfernen\";s:11:\"description\";s:133:\"Turn on to strip HTML content from the excerpt for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:18:\"strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:15:\"featured_images\";a:7:{s:5:\"label\";s:43:\"Featured Image / Video on Blog Archive Page\";s:11:\"description\";s:72:\"Turn on to display featured images and videos on the blog archive pages.\";s:2:\"id\";s:15:\"featured_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:64:\"body:not(.single-avada_portfolio) .fusion-featured-image-wrapper\";i:1;s:77:\".single-avada_portfolio .fusion-featured-image-wrapper .fusion-post-slideshow\";}s:9:\"shortcuts\";a:1:{i:0;a:4:{s:10:\"aria_label\";s:19:\"Edit Featured Image\";s:8:\"callback\";s:23:\"fusionEditFeaturedImage\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:13:\"fusiona-image\";}}}}s:15:\"dates_box_color\";a:6:{s:5:\"label\";s:36:\"Blog Alternate Layout Date Box Color\";s:11:\"description\";s:78:\"Controls the color of the date box in blog alternate and recent posts layouts.\";s:2:\"id\";s:15:\"dates_box_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:17:\"--dates_box_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:32:\"alternate_date_format_month_year\";a:5:{s:5:\"label\";s:43:\"Blog Alternate Layout Month and Year Format\";s:11:\"description\";s:207:\"Controls the month and year format for blog alternate layouts. <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date and Time</a>\";s:2:\"id\";s:32:\"alternate_date_format_month_year\";s:7:\"default\";s:4:\"m, Y\";s:4:\"type\";s:4:\"text\";}s:25:\"alternate_date_format_day\";a:5:{s:5:\"label\";s:32:\"Blog Alternate Layout Day Format\";s:11:\"description\";s:196:\"Controls the day format for blog alternate layouts. <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date and Time</a>\";s:2:\"id\";s:25:\"alternate_date_format_day\";s:7:\"default\";s:1:\"j\";s:4:\"type\";s:4:\"text\";}s:20:\"timeline_date_format\";a:5:{s:5:\"label\";s:32:\"Blog Timeline Layout Date Format\";s:11:\"description\";s:197:\"Controls the timeline label format for blog timeline layouts. <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date</a>\";s:2:\"id\";s:20:\"timeline_date_format\";s:7:\"default\";s:3:\"F Y\";s:4:\"type\";s:4:\"text\";}s:49:\"content_blog_single_post_template_override_notice\";a:5:{s:2:\"id\";s:49:\"content_blog_single_post_template_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:327:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Content override is currently used. To edit your global layout please visit <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:40:\"content_blog_single_post_template_notice\";a:5:{s:2:\"id\";s:40:\"content_blog_single_post_template_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:328:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Live Builder. To create a custom Content Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:14:\"blog_width_100\";a:7:{s:5:\"label\";s:15:\"100% Width Page\";s:11:\"description\";s:112:\"Turn on to display blog posts at 100% browser width according to the window size. Turn off to follow site width.\";s:2:\"id\";s:14:\"blog_width_100\";s:7:\"default\";i:0;s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:22:\"featured_images_single\";a:7:{s:5:\"label\";s:42:\"Featured Image / Video on Single Blog Post\";s:11:\"description\";s:67:\"Turn on to display featured images and videos on single blog posts.\";s:2:\"id\";s:22:\"featured_images_single\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:11:\"blog_pn_nav\";a:7:{s:5:\"label\";s:28:\"Vor/Zurück Seitennavigation\";s:11:\"description\";s:75:\"Turn on to display the previous/next post pagination for single blog posts.\";s:2:\"id\";s:11:\"blog_pn_nav\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:15:\"blog_post_title\";a:8:{s:5:\"label\";s:10:\"Post-Titel\";s:11:\"description\";s:90:\"Controls if the post title displays above or below the featured post image or is disabled.\";s:2:\"id\";s:15:\"blog_post_title\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:5:\"below\";s:9:\"Darunter \";s:5:\"above\";s:8:\"Darüber\";s:8:\"disabled\";s:11:\"Deaktiviert\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"blog_post_meta_position\";a:9:{s:5:\"label\";s:18:\"Meta Data Position\";s:11:\"description\";s:41:\"Choose where the meta data is positioned.\";s:2:\"id\";s:23:\"blog_post_meta_position\";s:7:\"default\";s:13:\"below_article\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:2:{s:13:\"below_article\";s:13:\"Below Article\";s:11:\"below_title\";s:11:\"Below Title\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"blog_post_title\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:8:\"disabled\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:18:\"social_sharing_box\";a:7:{s:5:\"label\";s:23:\"Soziale Medien - Teilen\";s:11:\"description\";s:42:\"Turn on to display the social sharing box.\";s:2:\"id\";s:18:\"social_sharing_box\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:11:\"author_info\";a:7:{s:5:\"label\";s:14:\"Autor Info Box\";s:11:\"description\";s:51:\"Turn on to display the author info box below posts.\";s:2:\"id\";s:11:\"author_info\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:13:\"related_posts\";a:7:{s:5:\"label\";s:19:\"Ähnliche Beiträge\";s:11:\"description\";s:33:\"Turn on to display related posts.\";s:2:\"id\";s:13:\"related_posts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:13:\"blog_comments\";a:7:{s:5:\"label\";s:10:\"Kommentare\";s:11:\"description\";s:28:\"Turn on to display comments.\";s:2:\"id\";s:13:\"blog_comments\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:29:\"blog_meta_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:335:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The on/off meta options on this tab only control the assigned blog page in \"Settings > Reading\" or the blog archives, not the blog element. The only options on this tab that work with the blog element are the Meta Data Font Size and Date Format options.</div>\";s:2:\"id\";s:29:\"blog_meta_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:9:\"post_meta\";a:5:{s:5:\"label\";s:13:\"Beitrags Meta\";s:11:\"description\";s:178:\"Turn on to display post meta on blog posts. If set to &quot;On&quot;, you can also control individual meta items below. If set to &quot;Off&quot; all meta items will be disabled.\";s:2:\"id\";s:9:\"post_meta\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:16:\"post_meta_author\";a:6:{s:5:\"label\";s:19:\"Beitrags Meta Autor\";s:11:\"description\";s:58:\"Aktvieren zum Anzeigen des Meta Tags Autor bei Beiträgen.\";s:2:\"id\";s:16:\"post_meta_author\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_date\";a:6:{s:5:\"label\";s:19:\"Beitrags Meta Datum\";s:11:\"description\";s:58:\"Aktvieren zum Anzeigen des Meta Tags Datum bei Beiträgen.\";s:2:\"id\";s:14:\"post_meta_date\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_cats\";a:6:{s:5:\"label\";s:23:\"Beitrags Meta Kategorie\";s:11:\"description\";s:63:\"Aktvieren zum Anzeigen des Meta Tags Kategorien bei Beiträgen.\";s:2:\"id\";s:14:\"post_meta_cats\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:18:\"post_meta_comments\";a:6:{s:5:\"label\";s:24:\"Beitrags Meta Kommentare\";s:11:\"description\";s:63:\"Aktvieren zum Anzeigen des Meta Tags Kommentare bei Beiträgen.\";s:2:\"id\";s:18:\"post_meta_comments\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_read\";a:6:{s:5:\"label\";s:25:\"Beitrags weiterlesen Link\";s:11:\"description\";s:64:\"Aktvieren zum Anzeigen des Meta Tags weiterlesen bei Beiträgen.\";s:2:\"id\";s:14:\"post_meta_read\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_tags\";a:6:{s:5:\"label\";s:27:\"Beitrags Meta Schlagwörter\";s:11:\"description\";s:47:\"Aktivieren um Meta Tags des Beitrags anzuzeigen\";s:2:\"id\";s:14:\"post_meta_tags\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"meta_font_size\";a:6:{s:5:\"label\";s:28:\"Schriftgrösse der Metadaten\";s:11:\"description\";s:46:\"Steuert die Schriftgröße des Meta Daten Text\";s:2:\"id\";s:14:\"meta_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--meta_font_size\";}}}s:11:\"date_format\";a:5:{s:5:\"label\";s:12:\"Datumsformat\";s:11:\"description\";s:348:\"Controls the date format for date meta data.  <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date and Time</a>. Leave empty to use the default value from your <a href=\"https://unternehmen.wir-noi.org/wp-admin/options-general.php\" target=\"_blank\">WordPress Settings</a>\";s:2:\"id\";s:11:\"date_format\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";}s:24:\"portfolio_archive_layout\";a:7:{s:5:\"label\";s:24:\"Portfolio Archive Layout\";s:11:\"description\";s:52:\"Controls the layout for the portfolio archive pages.\";s:2:\"id\";s:24:\"portfolio_archive_layout\";s:7:\"default\";s:4:\"grid\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"grid\";s:4:\"Grid\";s:7:\"masonry\";s:7:\"Masonry\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:37:\"portfolio_archive_featured_image_size\";a:8:{s:5:\"label\";s:37:\"Portfolio Archive Featured Image Size\";s:11:\"description\";s:230:\"Controls if the featured image size is fixed (cropped) or auto (full image ratio) for portfolio archive pages. <strong>IMPORTANT:</strong> Fixed works best with a standard 940px site width. Auto works best with larger site widths.\";s:2:\"id\";s:37:\"portfolio_archive_featured_image_size\";s:7:\"default\";s:4:\"full\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"cropped\";s:7:\"Fixiert\";s:4:\"full\";s:4:\"Auto\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"portfolio_archive_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"grid\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"portfolio_archive_columns\";a:7:{s:5:\"label\";s:35:\"Portfolio Archive Number of Columns\";s:11:\"description\";s:201:\"Set the number of columns per row for portfolio archive pages. With Carousel layout this specifies the maximum amount of columns. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:25:\"portfolio_archive_columns\";s:7:\"default\";i:1;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";s:1:\"1\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_column_spacing\";a:7:{s:5:\"label\";s:32:\"Portfolio Archive Column Spacing\";s:11:\"description\";s:66:\"Controls the column spacing for portfolio items for archive pages.\";s:2:\"id\";s:32:\"portfolio_archive_column_spacing\";s:7:\"default\";s:2:\"20\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"300\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--portfolio_archive_column_spacing\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:23:\"portfolio_equal_heights\";a:8:{s:5:\"label\";s:13:\"Equal Heights\";s:11:\"description\";s:57:\"Turn on to display grid boxes with equal heights per row.\";s:2:\"id\";s:23:\"portfolio_equal_heights\";s:7:\"default\";i:0;s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"portfolio_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}}s:9:\"transport\";s:11:\"postMessage\";}s:42:\"portfolio_archive_one_column_text_position\";a:8:{s:5:\"label\";s:34:\"Portfolio Archive Content Position\";s:11:\"description\";s:93:\"Select if title, terms and excerpts should be displayed below or next to the featured images.\";s:2:\"id\";s:42:\"portfolio_archive_one_column_text_position\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:5:\"below\";s:14:\"Unter dem Bild\";s:7:\"floated\";s:23:\"In der Nähe des Bildes\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:24:\"portfolio_archive_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:25:\"portfolio_archive_columns\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"portfolio_archive_items\";a:7:{s:5:\"label\";s:42:\"Number of Portfolio Items Per Archive Page\";s:11:\"description\";s:169:\"Controls the number of posts that display per page for portfolio archive pages. Set to -1 to display all. Set to 0 to use the number of posts from Settings &gt; Reading.\";s:2:\"id\";s:23:\"portfolio_archive_items\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"-1\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:29:\"portfolio_archive_text_layout\";a:9:{s:5:\"label\";s:29:\"Portfolio Archive Text Layout\";s:11:\"description\";s:123:\"Controls if the portfolio text content is displayed boxed or unboxed or is completely disabled for portfolio archive pages.\";s:2:\"id\";s:29:\"portfolio_archive_text_layout\";s:7:\"default\";s:7:\"no_text\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"no_text\";s:7:\"No Text\";s:5:\"boxed\";s:10:\"Eingerahmt\";s:7:\"unboxed\";s:9:\"Ungerahmt\";}s:9:\"transport\";s:7:\"refresh\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:39:\"--portfolio_archive_text_layout-padding\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:6:\"20px 0\";i:1;s:181:\"var(--portfolio_archive_layout_padding-top) var(--portfolio_archive_layout_padding-right) var(--portfolio_archive_layout_padding-bottom) var(--portfolio_archive_layout_padding-left)\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:29:\"portfolio_archive_text_layout\";i:1;s:3:\"!==\";i:2;s:5:\"boxed\";}}}}}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_content_length\";a:8:{s:5:\"label\";s:30:\"Portfolio Archive Text Display\";s:11:\"description\";s:67:\"Choose how to display the post excerpt for portfolio archive pages.\";s:2:\"id\";s:32:\"portfolio_archive_content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"no_text\";s:7:\"No Text\";s:7:\"excerpt\";s:6:\"Auszug\";s:12:\"full_content\";s:15:\"Gesamter Inhalt\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:29:\"portfolio_archive_text_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"no_text\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_excerpt_length\";a:8:{s:5:\"label\";s:32:\"Portfolio Archive Excerpt Length\";s:11:\"description\";s:362:\"Controls the number of words in the excerpts for portfolio archive pages.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:32:\"portfolio_archive_excerpt_length\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:36:\"portfolio_archive_strip_html_excerpt\";a:6:{s:5:\"label\";s:24:\"HTML im Auszug entfernen\";s:11:\"description\";s:75:\"Turn on to strip HTML content from the excerpt for portfolio archive pages.\";s:2:\"id\";s:36:\"portfolio_archive_strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:31:\"portfolio_archive_title_display\";a:7:{s:5:\"label\";s:31:\"Portfolio Archive Title Display\";s:11:\"description\";s:81:\"Controls what displays with the portfolio post title for portfolio archive pages.\";s:2:\"id\";s:31:\"portfolio_archive_title_display\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:3:\"all\";s:20:\"Titel und Kategorien\";s:5:\"title\";s:9:\"Nur Titel\";s:4:\"cats\";s:14:\"Nur Kategorien\";s:4:\"none\";s:5:\"Keine\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_text_alignment\";a:7:{s:5:\"label\";s:32:\"Portfolio Archive Text Alignment\";s:11:\"description\";s:140:\"Controls the alignment of the portfolio title, categories and excerpt text when using the Portfolio Text layouts in portfolio archive pages.\";s:2:\"id\";s:32:\"portfolio_archive_text_alignment\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"left\";s:5:\"Links\";s:6:\"center\";s:9:\"Zentriert\";s:5:\"right\";s:6:\"Rechts\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--portfolio_archive_text_alignment\";s:7:\"element\";s:33:\".fusion-portfolio-content-wrapper\";}}}s:32:\"portfolio_archive_layout_padding\";a:8:{s:5:\"label\";s:37:\"Portfolio Archive Text Layout Padding\";s:11:\"description\";s:389:\"Controls the padding for the portfolio text layout when using boxed mode in portfolio archive pages.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:32:\"portfolio_archive_layout_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:4:\"type\";s:7:\"spacing\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:38:\"--portfolio_archive_layout_padding-top\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:41:\"--portfolio_archive_layout_padding-bottom\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:3:{s:4:\"name\";s:39:\"--portfolio_archive_layout_padding-left\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:4:\"left\";}i:3;a:3:{s:4:\"name\";s:40:\"--portfolio_archive_layout_padding-right\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:5:\"right\";}}}s:33:\"portfolio_archive_pagination_type\";a:7:{s:5:\"label\";s:33:\"Portfolio Archive Pagination Type\";s:11:\"description\";s:57:\"Controls the pagination type for portfolio archive pages.\";s:2:\"id\";s:33:\"portfolio_archive_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:10:\"pagination\";s:16:\"Seitennavigation\";s:15:\"infinite_scroll\";s:18:\"Infinite Scrolling\";s:16:\"load_more_button\";s:20:\"Weitere Laden Button\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:49:\"portfolio_archive_load_more_posts_button_bg_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Button Background Color\";s:11:\"description\";s:99:\"Controls the background color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:49:\"portfolio_archive_load_more_posts_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:51:\"--portfolio_archive_load_more_posts_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:51:\"portfolio_archive_load_more_posts_button_text_color\";a:7:{s:5:\"label\";s:33:\"Load More Posts Button Text Color\";s:11:\"description\";s:93:\"Controls the text color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:51:\"portfolio_archive_load_more_posts_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:53:\"--portfolio_archive_load_more_posts_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:55:\"portfolio_archive_load_more_posts_hover_button_bg_color\";a:7:{s:5:\"label\";s:45:\"Load More Posts Button Hover Background Color\";s:11:\"description\";s:105:\"Controls the hover background color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:55:\"portfolio_archive_load_more_posts_hover_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:57:\"--portfolio_archive_load_more_posts_hover_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:57:\"portfolio_archive_load_more_posts_hover_button_text_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Hover Button Text Color\";s:11:\"description\";s:99:\"Controls the hover text color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:57:\"portfolio_archive_load_more_posts_hover_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:59:\"--portfolio_archive_load_more_posts_hover_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:14:\"portfolio_slug\";a:5:{s:5:\"label\";s:14:\"Portfolio Slug\";s:11:\"description\";s:195:\"The slug name cannot be the same name as a page name or the layout will break. This option changes the permalink when you use the permalink type as %postname%. Make sure to regenerate permalinks.\";s:2:\"id\";s:14:\"portfolio_slug\";s:7:\"default\";s:15:\"portfolio-items\";s:4:\"type\";s:4:\"text\";}s:24:\"portfolio_meta_font_size\";a:6:{s:5:\"label\";s:28:\"Schriftgrösse der Metadaten\";s:11:\"description\";s:46:\"Steuert die Schriftgröße des Meta Daten Text\";s:2:\"id\";s:24:\"portfolio_meta_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--portfolio_meta_font_size\";}}}s:46:\"portfolio_single_post_template_override_notice\";a:5:{s:2:\"id\";s:46:\"portfolio_single_post_template_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:327:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Content override is currently used. To edit your global layout please visit <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:37:\"portfolio_single_post_template_notice\";a:4:{s:2:\"id\";s:37:\"portfolio_single_post_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:328:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Live Builder. To create a custom Content Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:16:\"portfolio_pn_nav\";a:7:{s:5:\"label\";s:28:\"Vor/Zurück Seitennavigation\";s:11:\"description\";s:80:\"Turn on to display the previous/next post pagination for single portfolio posts.\";s:2:\"id\";s:16:\"portfolio_pn_nav\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:19:\"portfolio_width_100\";a:7:{s:5:\"label\";s:15:\"100% Width Page\";s:11:\"description\";s:117:\"Turn on to display portfolio posts at 100% browser width according to the window size. Turn off to follow site width.\";s:2:\"id\";s:19:\"portfolio_width_100\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:30:\"portfolio_featured_image_width\";a:9:{s:5:\"label\";s:26:\"Featured Image Column Size\";s:11:\"description\";s:79:\"Controls if the featured image is half or full width on single portfolio posts.\";s:2:\"id\";s:30:\"portfolio_featured_image_width\";s:7:\"default\";s:4:\"full\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:2:{s:4:\"full\";s:12:\"Volle Breite\";s:4:\"half\";s:12:\"Halbe Breite\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"portfolio_featured_images\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"portfolio_featured_images\";a:7:{s:5:\"label\";s:48:\"Bevorzugtes Bild / Video auf Einzelbeitrag Seite\";s:11:\"description\";s:72:\"Turn on to display featured images and videos on single portfolio posts.\";s:2:\"id\";s:25:\"portfolio_featured_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"show_first_featured_image\";a:8:{s:5:\"label\";s:23:\"Erstes bevorzugtes Bild\";s:11:\"description\";s:68:\"Turn on to display the 1st featured image on single portfolio posts.\";s:2:\"id\";s:25:\"show_first_featured_image\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"portfolio_featured_images\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:33:\"show_first_featured_image_partial\";a:4:{s:8:\"selector\";s:30:\".fusion-featured-image-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:23:\"singular_featured_image\";}s:21:\"success_trigger_event\";s:35:\"fusion-reinit-single-post-slideshow\";}}}s:28:\"portfolio_project_desc_title\";a:7:{s:5:\"label\";s:25:\"Project Description Title\";s:11:\"description\";s:72:\"Turn on to show the project description title on single portfolio posts.\";s:2:\"id\";s:28:\"portfolio_project_desc_title\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"portfolio_project_details\";a:7:{s:5:\"label\";s:14:\"Projektdetails\";s:11:\"description\";s:80:\"Turn on to show the project details title and content on single portfolio posts.\";s:2:\"id\";s:25:\"portfolio_project_details\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:26:\"portfolio_link_icon_target\";a:7:{s:5:\"label\";s:34:\"Open Portfolio Links In New Window\";s:11:\"description\";s:90:\"Turn on to open the single post page, project url and copyright url links in a new window.\";s:2:\"id\";s:26:\"portfolio_link_icon_target\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:16:\"portfolio_author\";a:7:{s:5:\"label\";s:5:\"Autor\";s:11:\"description\";s:61:\"Turn on to display the author name on single portfolio posts.\";s:2:\"id\";s:16:\"portfolio_author\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:28:\"portfolio_social_sharing_box\";a:7:{s:5:\"label\";s:23:\"Soziale Medien - Teilen\";s:11:\"description\";s:68:\"Turn on to display the social sharing box on single portfolio posts.\";s:2:\"id\";s:28:\"portfolio_social_sharing_box\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"portfolio_related_posts\";a:7:{s:5:\"label\";s:18:\"Ähnliche Projekte\";s:11:\"description\";s:62:\"Turn on to display related projects on single portfolio posts.\";s:2:\"id\";s:23:\"portfolio_related_posts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:18:\"portfolio_comments\";a:7:{s:5:\"label\";s:10:\"Kommentare\";s:11:\"description\";s:54:\"Turn on to display comments on single portfolio posts.\";s:2:\"id\";s:18:\"portfolio_comments\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:38:\"social_media_icons_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:250:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> This tab controls the social networks that display in legacy headers and footers. Custom links created here can also be used in the Social Links and the Person element.</div>\";s:2:\"id\";s:38:\"social_media_icons_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:18:\"social_media_icons\";a:9:{s:5:\"label\";s:26:\"Social Media Icons / Links\";s:11:\"description\";s:131:\"Social media links use a repeater field and allow one network per field. Click the &quot;Add&quot; button to add additional fields.\";s:2:\"id\";s:18:\"social_media_icons\";s:7:\"default\";a:6:{s:25:\"fusionredux_repeater_data\";a:4:{i:0;a:1:{s:5:\"title\";s:0:\"\";}i:1;a:1:{s:5:\"title\";s:0:\"\";}i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"icon\";a:4:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:9:\"pinterest\";}s:3:\"url\";a:4:{i:0;s:1:\"#\";i:1;s:1:\"#\";i:2;s:1:\"#\";i:3;s:1:\"#\";}s:12:\"custom_title\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:16:\"custom_icon_mark\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:13:\"custom_source\";a:4:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:1;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:2;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:3;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:4:\"type\";s:8:\"repeater\";s:10:\"bind_title\";s:4:\"icon\";s:5:\"limit\";i:50;s:6:\"fields\";a:5:{s:4:\"icon\";a:6:{s:2:\"id\";s:4:\"icon\";s:4:\"type\";s:6:\"select\";s:5:\"label\";s:14:\"Social Network\";s:11:\"description\";s:53:\"Select a social network to automatically add its icon\";s:7:\"default\";s:4:\"none\";s:7:\"choices\";a:36:{s:7:\"blogger\";s:7:\"Blogger\";s:10:\"deviantart\";s:10:\"Deviantart\";s:7:\"discord\";s:7:\"Discord\";s:4:\"digg\";s:4:\"Digg\";s:8:\"dribbble\";s:8:\"Dribbble\";s:7:\"dropbox\";s:7:\"Dropbox\";s:8:\"facebook\";s:8:\"Facebook\";s:6:\"flickr\";s:6:\"Flickr\";s:6:\"forrst\";s:6:\"Forrst\";s:9:\"instagram\";s:9:\"Instagram\";s:8:\"linkedin\";s:8:\"LinkedIn\";s:7:\"myspace\";s:7:\"Myspace\";s:6:\"paypal\";s:6:\"Paypal\";s:9:\"pinterest\";s:9:\"Pinterest\";s:6:\"reddit\";s:6:\"Reddit\";s:3:\"rss\";s:3:\"RSS\";s:5:\"skype\";s:5:\"Skype\";s:10:\"soundcloud\";s:10:\"Soundcloud\";s:7:\"spotify\";s:7:\"Spotify\";s:5:\"teams\";s:5:\"Teams\";s:8:\"telegram\";s:8:\"Telegram\";s:6:\"tiktok\";s:6:\"Tiktok\";s:6:\"tumblr\";s:6:\"Tumblr\";s:7:\"twitter\";s:7:\"Twitter\";s:6:\"twitch\";s:6:\"Twitch\";s:5:\"vimeo\";s:5:\"Vimeo\";s:2:\"vk\";s:2:\"VK\";s:6:\"wechat\";s:6:\"WeChat\";s:8:\"whatsapp\";s:8:\"WhatsApp\";s:4:\"xing\";s:4:\"Xing\";s:5:\"yahoo\";s:5:\"Yahoo\";s:4:\"yelp\";s:4:\"Yelp\";s:7:\"youtube\";s:7:\"Youtube\";s:5:\"email\";s:14:\"E-Mail Adresse\";s:5:\"phone\";s:7:\"Telefon\";s:6:\"custom\";s:17:\"Benutzerdefiniert\";}}s:9:\"icon_mark\";a:5:{s:4:\"type\";s:10:\"iconpicker\";s:2:\"id\";s:9:\"icon_mark\";s:7:\"heading\";s:4:\"Icon\";s:11:\"description\";s:49:\"Click an icon to select, click again to deselect.\";s:7:\"default\";s:0:\"\";}s:3:\"url\";a:5:{s:2:\"id\";s:3:\"url\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Custom Link\";s:11:\"description\";s:34:\"Füge deinen eigener Link hier ein\";s:7:\"default\";s:0:\"\";}s:12:\"custom_title\";a:6:{s:2:\"id\";s:12:\"custom_title\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:20:\"Eigene Symbole Titel\";s:11:\"description\";s:40:\"Insert a title for your custom icon here\";s:7:\"default\";s:0:\"\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:4:\"icon\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}}s:13:\"custom_source\";a:7:{s:2:\"id\";s:13:\"custom_source\";s:4:\"type\";s:5:\"media\";s:5:\"label\";s:40:\"Choose the image you want to use as icon\";s:11:\"description\";s:26:\"Update dein eigenes Symbol\";s:7:\"default\";s:0:\"\";s:4:\"mode\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:4:\"icon\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}}}s:15:\"partial_refresh\";a:5:{s:52:\"header_content_social_media_icons_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:51:\"header_content_social_media_icons_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:33:\"header_content_social_media_icons\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}s:33:\"footer_content_social_media_icons\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}s:29:\"sharingbox_social_media_icons\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:35:\"header_social_links_override_notice\";a:5:{s:2:\"id\";s:35:\"header_social_links_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:0:\"\";s:4:\"type\";s:6:\"custom\";}s:26:\"header_social_links_notice\";a:5:{s:2:\"id\";s:26:\"header_social_links_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:29:\"header_social_links_font_size\";a:7:{s:5:\"label\";s:28:\"Header Social Icon Font Size\";s:11:\"description\";s:50:\"Controls the font size of the header social icons.\";s:2:\"id\";s:29:\"header_social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--header_social_links_font_size\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}s:37:\"header_social_links_tooltip_placement\";a:8:{s:5:\"label\";s:35:\"Header Social Icon Tooltip Position\";s:11:\"description\";s:57:\"Controls the tooltip position of the header social icons.\";s:2:\"id\";s:37:\"header_social_links_tooltip_placement\";s:7:\"default\";s:6:\"Bottom\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:3:\"top\";s:4:\"Oben\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:4:\"left\";s:5:\"Links\";s:4:\"none\";s:5:\"Keine\";}s:15:\"partial_refresh\";a:3:{s:71:\"header_content_header_social_links_tooltip_placement_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:70:\"header_content_header_social_links_tooltip_placement_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:52:\"header_content_header_social_links_tooltip_placement\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";a:2:{i:0;s:15:\"header-rendered\";i:1;s:18:\"fusionInitTooltips\";}}}}s:30:\"header_social_links_color_type\";a:8:{s:5:\"label\";s:29:\"Header Social Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:30:\"header_social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Eigene Farben\";s:5:\"brand\";s:13:\"Marken Farben\";}s:15:\"partial_refresh\";a:3:{s:64:\"header_content_header_social_links_color_type_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:63:\"header_content_header_social_links_color_type_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:45:\"header_content_header_social_links_color_type\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";a:2:{i:0;s:15:\"header-rendered\";i:1;s:18:\"fusionInitTooltips\";}}}}s:30:\"header_social_links_icon_color\";a:8:{s:5:\"label\";s:40:\"Icons der sozialen Medien im Kopfbereich\";s:11:\"description\";s:106:\"Controls the color of the header social icons. This color will be used for all social icons in the header.\";s:2:\"id\";s:30:\"header_social_links_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:30:\"header_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--header_social_links_icon_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"header_social_links_boxed\";a:7:{s:5:\"label\";s:51:\"Icons der sozialen Medien im Kopfbereich eingerahmt\";s:11:\"description\";s:50:\"Controls if each icon is displayed in a small box.\";s:2:\"id\";s:25:\"header_social_links_boxed\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:3:{s:59:\"header_content_header_social_links_boxed_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:58:\"header_content_header_social_links_boxed_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:40:\"header_content_header_social_links_boxed\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";a:2:{i:0;s:15:\"header-rendered\";i:1;s:18:\"fusionInitTooltips\";}}}}s:29:\"header_social_links_box_color\";a:8:{s:5:\"label\";s:28:\"Header Social Icon Box Color\";s:11:\"description\";s:42:\"Controls the color of the social icon box.\";s:2:\"id\";s:29:\"header_social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:25:\"header_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:30:\"header_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--header_social_links_box_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:32:\"header_social_links_boxed_radius\";a:8:{s:5:\"label\";s:31:\"Header Social Icon Boxed Radius\";s:11:\"description\";s:24:\"Controls the box radius.\";s:2:\"id\";s:32:\"header_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"header_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--header_social_links_boxed_radius\";s:7:\"element\";s:27:\".fusion-social-network-icon\";}}}s:33:\"header_social_links_boxed_padding\";a:8:{s:5:\"label\";s:32:\"Header Social Icon Boxed Padding\";s:11:\"description\";s:41:\"Controls the interior padding of the box.\";s:2:\"id\";s:33:\"header_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"header_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:35:\"--header_social_links_boxed_padding\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}s:35:\"footer_social_links_override_notice\";a:5:{s:2:\"id\";s:35:\"footer_social_links_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:0:\"\";s:4:\"type\";s:6:\"custom\";}s:26:\"footer_social_links_notice\";a:5:{s:2:\"id\";s:26:\"footer_social_links_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:12:\"icons_footer\";a:7:{s:5:\"label\";s:34:\"Display Social Icons In The Footer\";s:11:\"description\";s:60:\"Turn on to display social icons in the footer copyright bar.\";s:2:\"id\";s:12:\"icons_footer\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"partial_refresh\";a:1:{s:27:\"footer_content_icons_footer\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:29:\"footer_social_links_font_size\";a:8:{s:5:\"label\";s:28:\"Footer Social Icon Font Size\";s:11:\"description\";s:50:\"Controls the font size of the footer social icons.\";s:2:\"id\";s:29:\"footer_social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:6:\"hidden\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--footer_social_links_font_size\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}s:37:\"footer_social_links_tooltip_placement\";a:9:{s:5:\"label\";s:35:\"Footer Social Icon Tooltip Position\";s:11:\"description\";s:57:\"Controls the tooltip position of the footer social icons.\";s:2:\"id\";s:37:\"footer_social_links_tooltip_placement\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:5:{s:3:\"top\";s:4:\"Oben\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:4:\"left\";s:5:\"Links\";s:4:\"none\";s:5:\"Keine\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:52:\"footer_content_footer_social_links_tooltip_placement\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";a:1:{i:0;s:18:\"fusionInitTooltips\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:30:\"footer_social_links_color_type\";a:9:{s:5:\"label\";s:29:\"Footer Social Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:30:\"footer_social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Eigene Farben\";s:5:\"brand\";s:13:\"Marken Farben\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:45:\"footer_content_footer_social_links_color_type\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";a:1:{i:0;s:18:\"fusionInitTooltips\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:30:\"footer_social_links_icon_color\";a:8:{s:5:\"label\";s:24:\"Footer Social Icon Color\";s:11:\"description\";s:106:\"Controls the color of the footer social icons. This color will be used for all social icons in the footer.\";s:2:\"id\";s:30:\"footer_social_links_icon_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:6:\"hidden\";b:0;s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:30:\"footer_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--footer_social_links_icon_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"footer_social_links_boxed\";a:8:{s:5:\"label\";s:53:\"Icons der sozialen Medien in der Fusszeile eingerahmt\";s:11:\"description\";s:50:\"Controls if each icon is displayed in a small box.\";s:2:\"id\";s:25:\"footer_social_links_boxed\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:40:\"footer_content_footer_social_links_boxed\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";a:1:{i:0;s:18:\"fusionInitTooltips\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:29:\"footer_social_links_box_color\";a:8:{s:5:\"label\";s:28:\"Footer Social Icon Box Color\";s:11:\"description\";s:42:\"Controls the color of the social icon box.\";s:2:\"id\";s:29:\"footer_social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:6:\"hidden\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:25:\"footer_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:30:\"footer_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--footer_social_links_box_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:32:\"footer_social_links_boxed_radius\";a:8:{s:5:\"label\";s:31:\"Footer Social Icon Boxed Radius\";s:11:\"description\";s:24:\"Controls the box radius.\";s:2:\"id\";s:32:\"footer_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:4:\"type\";s:9:\"dimension\";s:6:\"hidden\";b:0;s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:25:\"footer_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--footer_social_links_boxed_radius\";s:7:\"element\";s:27:\".fusion-social-network-icon\";}}}s:33:\"footer_social_links_boxed_padding\";a:8:{s:5:\"label\";s:32:\"Footer Social Icon Boxed Padding\";s:11:\"description\";s:41:\"Controls the interior padding of the box.\";s:2:\"id\";s:33:\"footer_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:4:\"type\";s:9:\"dimension\";s:6:\"hidden\";b:0;s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:25:\"footer_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:35:\"--footer_social_links_boxed_padding\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}s:22:\"sharing_social_tagline\";a:6:{s:5:\"label\";s:22:\"Social Sharing Tagline\";s:11:\"description\";s:46:\"Insert a tagline for the social sharing boxes.\";s:2:\"id\";s:22:\"sharing_social_tagline\";s:7:\"default\";s:26:\"Teilen Sie diesen Artikel!\";s:4:\"type\";s:4:\"text\";s:15:\"partial_refresh\";a:1:{s:33:\"sharingbox_sharing_social_tagline\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:30:\"sharing_box_tagline_text_color\";a:6:{s:5:\"label\";s:33:\"Social Sharing Tagline Text Color\";s:11:\"description\";s:67:\"Controls the color of the tagline text in the social sharing boxes.\";s:2:\"id\";s:30:\"sharing_box_tagline_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--sharing_box_tagline_text_color\";s:7:\"element\";s:25:\".fusion-theme-sharing-box\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:15:\"social_bg_color\";a:7:{s:5:\"label\";s:31:\"Social Sharing Background Color\";s:11:\"description\";s:58:\"Controls the background color of the social sharing boxes.\";s:2:\"id\";s:15:\"social_bg_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:17:\"--social_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:31:\"--social_bg_color-0-transparent\";s:8:\"callback\";a:2:{i:0;s:28:\"return_string_if_transparent\";i:1;a:2:{s:11:\"transparent\";s:3:\"0px\";s:6:\"opaque\";s:0:\"\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:29:\"avada-social-full-transparent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"social_share_box_icon_info\";a:5:{s:5:\"label\";s:20:\"Social Sharing Icons\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:26:\"social_share_box_icon_info\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:14:\"social_sharing\";a:8:{s:5:\"label\";s:23:\"Soziale Medien - Teilen\";s:11:\"description\";s:71:\"Select social network you want to be displayed in the social share box.\";s:2:\"id\";s:14:\"social_sharing\";s:7:\"default\";a:11:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:6:\"reddit\";i:3;s:8:\"linkedin\";i:4;s:8:\"whatsapp\";i:5;s:8:\"telegram\";i:6;s:6:\"tumblr\";i:7;s:9:\"pinterest\";i:8;s:2:\"vk\";i:9;s:4:\"xing\";i:10;s:5:\"email\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:11:{s:8:\"facebook\";s:8:\"Facebook\";s:7:\"twitter\";s:7:\"Twitter\";s:6:\"reddit\";s:6:\"Reddit\";s:8:\"linkedin\";s:8:\"LinkedIn\";s:8:\"whatsapp\";s:8:\"WhatsApp\";s:8:\"telegram\";s:8:\"Telegram\";s:6:\"tumblr\";s:6:\"Tumblr\";s:9:\"pinterest\";s:9:\"Pinterest\";s:2:\"vk\";s:2:\"VK\";s:4:\"xing\";s:4:\"Xing\";s:5:\"email\";s:6:\"E-Mail\";}s:22:\"social_share_box_links\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}s:30:\"sharing_social_links_font_size\";a:6:{s:5:\"label\";s:29:\"Social Sharing Icon Font Size\";s:11:\"description\";s:71:\"Controls the font size of the social icons in the social sharing boxes.\";s:2:\"id\";s:30:\"sharing_social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--sharing_social_links_font_size\";s:7:\"element\";s:25:\".fusion-theme-sharing-box\";}}}s:38:\"sharing_social_links_tooltip_placement\";a:7:{s:5:\"label\";s:37:\"Social Sharing Icons Tooltip Position\";s:11:\"description\";s:78:\"Controls the tooltip position of the social icons in the social sharing boxes.\";s:2:\"id\";s:38:\"sharing_social_links_tooltip_placement\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:3:\"top\";s:4:\"Oben\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:4:\"left\";s:5:\"Links\";s:4:\"none\";s:5:\"Keine\";}s:15:\"partial_refresh\";a:1:{s:49:\"sharingbox_sharing_social_links_tooltip_placement\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:31:\"sharing_social_links_color_type\";a:7:{s:5:\"label\";s:30:\"Social Sharing Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:31:\"sharing_social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Eigene Farben\";s:5:\"brand\";s:13:\"Marken Farben\";}s:15:\"partial_refresh\";a:1:{s:50:\"sharingbox_sharing_sharing_social_links_color_type\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:31:\"sharing_social_links_icon_color\";a:7:{s:5:\"label\";s:25:\"Social Sharing Icon Color\";s:11:\"description\";s:113:\"Controls the color of the social icons in the social sharing boxes. This color will be used for all social icons.\";s:2:\"id\";s:31:\"sharing_social_links_icon_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"sharing_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:33:\"--sharing_social_links_icon_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"sharing_social_links_boxed\";a:6:{s:5:\"label\";s:26:\"Social Sharing Icons Boxed\";s:11:\"description\";s:57:\"Controls if each social icon is displayed in a small box.\";s:2:\"id\";s:26:\"sharing_social_links_boxed\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:37:\"sharingbox_sharing_social_links_boxed\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:30:\"sharing_social_links_box_color\";a:7:{s:5:\"label\";s:29:\"Social Sharing Icon Box Color\";s:11:\"description\";s:42:\"Controls the color of the social icon box.\";s:2:\"id\";s:30:\"sharing_social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:26:\"sharing_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:31:\"sharing_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--sharing_social_links_box_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:33:\"sharing_social_links_boxed_radius\";a:7:{s:5:\"label\";s:32:\"Social Sharing Icon Boxed Radius\";s:11:\"description\";s:47:\"Controls the box radius of the social icon box.\";s:2:\"id\";s:33:\"sharing_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:26:\"sharing_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:35:\"--sharing_social_links_boxed_radius\";s:7:\"element\";s:27:\".fusion-social-network-icon\";}}}s:34:\"sharing_social_links_boxed_padding\";a:7:{s:5:\"label\";s:34:\"Social Sharing Icons Boxed Padding\";s:11:\"description\";s:53:\"Controls the interior padding of the social icon box.\";s:2:\"id\";s:34:\"sharing_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:26:\"sharing_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:36:\"--sharing_social_links_boxed_padding\";s:7:\"element\";s:25:\".fusion-theme-sharing-box\";}}}s:22:\"posts_slideshow_number\";a:6:{s:5:\"label\";s:28:\"Diashow Bilder der Beiträge\";s:11:\"description\";s:69:\"Controls the number of featured image boxes for blog/portfolio posts.\";s:2:\"id\";s:22:\"posts_slideshow_number\";s:7:\"default\";s:1:\"5\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:2:\"30\";s:4:\"step\";s:1:\"1\";}}s:18:\"slideshow_autoplay\";a:6:{s:5:\"label\";s:8:\"Autoplay\";s:11:\"description\";s:35:\"Turn on to autoplay the slideshows.\";s:2:\"id\";s:18:\"slideshow_autoplay\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"slideshow_smooth_height\";a:5:{s:5:\"label\";s:13:\"Smooth Height\";s:11:\"description\";s:147:\"Turn on to enable smooth height on slideshows when using images with different heights. Please note, smooth height is disabled on blog grid layout.\";s:2:\"id\";s:23:\"slideshow_smooth_height\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:15:\"slideshow_speed\";a:7:{s:5:\"label\";s:23:\"Diashow Geschwindigkeit\";s:11:\"description\";s:102:\"Controls the speed of slideshows for the slider element and sliders within posts. ex: 1000 = 1 second.\";s:2:\"id\";s:15:\"slideshow_speed\";s:7:\"default\";s:4:\"7000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"100\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:2:\"50\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:15:\"slideshow_speed\";s:7:\"trigger\";a:2:{i:0;s:27:\"fusionDestroyPostFlexSlider\";i:1;s:24:\"fusionInitPostFlexSlider\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"pagination_video_slide\";a:6:{s:5:\"label\";s:44:\"Kreise der Seitenzahlen unterhalb Video-Dias\";s:11:\"description\";s:117:\"Turn on to show pagination circles below a video slide for the slider element. Turn off to hide them on video slides.\";s:2:\"id\";s:22:\"pagination_video_slide\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:22:\"pagination_video_slide\";s:7:\"trigger\";a:2:{i:0;s:27:\"fusionDestroyPostFlexSlider\";i:1;s:24:\"fusionInitPostFlexSlider\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"slider_nav_box_dimensions\";a:7:{s:5:\"label\";s:25:\"Navigation Box Dimensions\";s:11:\"description\";s:52:\"Controls the width and height of the navigation box.\";s:2:\"id\";s:25:\"slider_nav_box_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"30px\";s:6:\"height\";s:4:\"30px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:33:\"--slider_nav_box_dimensions-width\";s:6:\"choice\";s:5:\"width\";}i:1;a:2:{s:4:\"name\";s:34:\"--slider_nav_box_dimensions-height\";s:6:\"choice\";s:6:\"height\";}}}s:17:\"slider_arrow_size\";a:6:{s:5:\"label\";s:21:\"Navigation Arrow Size\";s:11:\"description\";s:47:\"Controls the font size of the navigation arrow.\";s:2:\"id\";s:17:\"slider_arrow_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--slider_arrow_size\";}}}s:18:\"tfes_disabled_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:179:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Elastic Slider is disabled in Advanced > Post Types section. Please enable it to see the options.</div>\";s:2:\"id\";s:18:\"tfes_disabled_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}}s:15:\"tfes_dimensions\";a:8:{s:5:\"label\";s:25:\"Elastic Slider Dimensions\";s:11:\"description\";s:53:\"Controls the width and height for the elastic slider.\";s:2:\"id\";s:15:\"tfes_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"400px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:23:\"--tfes_dimensions-width\";s:6:\"choice\";s:5:\"width\";s:7:\"element\";s:10:\".ei-slider\";}i:1;a:3:{s:4:\"name\";s:24:\"--tfes_dimensions-height\";s:6:\"choice\";s:6:\"height\";s:7:\"element\";s:10:\".ei-slider\";}}}s:14:\"tfes_animation\";a:8:{s:5:\"label\";s:14:\"Animation Type\";s:11:\"description\";s:64:\"Controls if the elastic slides animate from the sides or center.\";s:2:\"id\";s:14:\"tfes_animation\";s:7:\"default\";s:5:\"sides\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"sides\";s:5:\"Sides\";s:6:\"center\";s:9:\"Zentriert\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:14:\"tfes_animation\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"tfes_autoplay\";a:7:{s:5:\"label\";s:8:\"Autoplay\";s:11:\"description\";s:39:\"Turn on to autoplay the elastic slides.\";s:2:\"id\";s:13:\"tfes_autoplay\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:13:\"tfes_autoplay\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"tfes_interval\";a:8:{s:5:\"label\";s:19:\"Slideshow Intervall\";s:11:\"description\";s:69:\"Controls how long each elastic slide is visible. ex: 1000 = 1 second.\";s:2:\"id\";s:13:\"tfes_interval\";s:7:\"default\";s:4:\"3000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:5:\"30000\";s:4:\"step\";s:2:\"50\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:13:\"tfes_interval\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"tfes_speed\";a:8:{s:5:\"label\";s:23:\"Sliding Geschwindigkeit\";s:11:\"description\";s:72:\"Controls the speed of the elastic slider slideshow. ex: 1000 = 1 second.\";s:2:\"id\";s:10:\"tfes_speed\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"5000\";s:4:\"step\";s:2:\"50\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:10:\"tfes_speed\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"tfes_width\";a:8:{s:5:\"label\";s:16:\"Thumbnail Breite\";s:11:\"description\";s:58:\"Controls the width of the elastic slider thumbnail images.\";s:2:\"id\";s:10:\"tfes_width\";s:7:\"default\";s:3:\"150\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"500\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:10:\"tfes_width\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"es_title_font_size\";a:7:{s:5:\"label\";s:25:\"Schriftgrösse des Titels\";s:11:\"description\";s:48:\"Controls the font size for elastic slider title.\";s:2:\"id\";s:18:\"es_title_font_size\";s:7:\"default\";s:4:\"42px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--es_title_font_size\";s:7:\"element\";s:10:\".ei-slider\";}}}s:20:\"es_caption_font_size\";a:7:{s:5:\"label\";s:35:\"Schriftgrösse der Bildunterschrift\";s:11:\"description\";s:50:\"Controls the font size for elastic slider caption.\";s:2:\"id\";s:20:\"es_caption_font_size\";s:7:\"default\";s:4:\"20px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:22:\"--es_caption_font_size\";}}}s:14:\"es_title_color\";a:7:{s:5:\"label\";s:11:\"Titel Farbe\";s:11:\"description\";s:47:\"Controls the color of the elastic slider title.\";s:2:\"id\";s:14:\"es_title_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"--es_title_color\";s:7:\"element\";s:10:\".ei-slider\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"es_caption_color\";a:7:{s:5:\"label\";s:22:\"Farbe der Überschrift\";s:11:\"description\";s:49:\"Controls the color of the elastic slider caption.\";s:2:\"id\";s:16:\"es_caption_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--es_caption_color\";s:7:\"element\";s:10:\".ei-slider\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:15:\"status_lightbox\";a:5:{s:5:\"label\";s:8:\"Lightbox\";s:11:\"description\";s:52:\"Turn on to enable the lightbox throughout the theme.\";s:2:\"id\";s:15:\"status_lightbox\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:22:\"status_lightbox_single\";a:6:{s:5:\"label\";s:49:\"Lightbox For Featured Images On Single Post Pages\";s:11:\"description\";s:95:\"Turn on to enable the lightbox on single blog and portfolio posts for the main featured images.\";s:2:\"id\";s:22:\"status_lightbox_single\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:17:\"lightbox_behavior\";a:7:{s:5:\"label\";s:18:\"Lightbox Verhalten\";s:11:\"description\";s:72:\"Controls what the lightbox displays for single blog and portfolio posts.\";s:2:\"id\";s:17:\"lightbox_behavior\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:3:\"all\";s:34:\"First featured image of every post\";s:10:\"individual\";s:39:\"Only featured images of individual post\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:13:\"lightbox_skin\";a:8:{s:5:\"label\";s:13:\"Lightbox Skin\";s:11:\"description\";s:34:\"Controls the lightbox skin design.\";s:2:\"id\";s:13:\"lightbox_skin\";s:7:\"default\";s:11:\"metro-white\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:5:\"light\";s:4:\"Hell\";s:4:\"dark\";s:6:\"Dunkel\";s:3:\"mac\";s:3:\"Mac\";s:11:\"metro-black\";s:11:\"Metro Black\";s:11:\"metro-white\";s:11:\"Metro White\";s:6:\"parade\";s:6:\"Parade\";s:6:\"smooth\";s:11:\"reibungslos\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:13:\"lightbox_skin\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"lightbox_path\";a:8:{s:5:\"label\";s:21:\"Vorschaubild Position\";s:11:\"description\";s:49:\"Controls the position of the lightbox thumbnails.\";s:2:\"id\";s:13:\"lightbox_path\";s:7:\"default\";s:8:\"vertical\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:8:\"vertical\";s:6:\"Rechts\";s:10:\"horizontal\";s:5:\"Unten\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:13:\"lightbox_path\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"lightbox_animation_speed\";a:8:{s:5:\"label\";s:25:\"Animationsgeschwindigkeit\";s:11:\"description\";s:45:\"Controls the animation speed of the lightbox.\";s:2:\"id\";s:24:\"lightbox_animation_speed\";s:7:\"default\";s:6:\"normal\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"fast\";s:7:\"Schnell\";s:6:\"normal\";s:6:\"Normal\";s:4:\"slow\";s:7:\"Langsam\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:24:\"lightbox_animation_speed\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"lightbox_arrows\";a:7:{s:5:\"label\";s:6:\"Pfeile\";s:11:\"description\";s:41:\"Turn on to display arrows in the lightbox\";s:2:\"id\";s:15:\"lightbox_arrows\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"lightbox_skin\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"parade\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:15:\"lightbox_arrows\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"lightbox_gallery\";a:7:{s:5:\"label\";s:25:\"Gallery Start/Stop Button\";s:11:\"description\";s:53:\"Turn on to display the gallery start and stop button.\";s:2:\"id\";s:16:\"lightbox_gallery\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:16:\"lightbox_gallery\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"lightbox_autoplay\";a:7:{s:5:\"label\";s:39:\"Lightbox Gallerie automatisch abspielen\";s:11:\"description\";s:41:\"Turn on to autoplay the lightbox gallery.\";s:2:\"id\";s:17:\"lightbox_autoplay\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:17:\"lightbox_autoplay\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"lightbox_slideshow_speed\";a:8:{s:5:\"label\";s:23:\"Diashow Geschwindigkeit\";s:11:\"description\";s:75:\"Controls the slideshow speed if autoplay is turned on. ex: 1000 = 1 second.\";s:2:\"id\";s:24:\"lightbox_slideshow_speed\";s:7:\"default\";s:4:\"5000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:4:\"1000\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:2:\"50\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:24:\"lightbox_slideshow_speed\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"lightbox_opacity\";a:8:{s:5:\"label\";s:21:\"Hintergrund Deckkraft\";s:11:\"description\";s:66:\"Controls the opacity level for the background behind the lightbox.\";s:2:\"id\";s:16:\"lightbox_opacity\";s:7:\"default\";s:3:\"0.9\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"0.1\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:4:\"0.01\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:16:\"lightbox_opacity\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:14:\"lightbox_title\";a:7:{s:5:\"label\";s:5:\"Titel\";s:11:\"description\";s:51:\"Turn on to display the image title in the lightbox.\";s:2:\"id\";s:14:\"lightbox_title\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:14:\"lightbox_title\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"lightbox_desc\";a:7:{s:5:\"label\";s:12:\"Beschriftung\";s:11:\"description\";s:53:\"Turn on to display the image caption in the lightbox.\";s:2:\"id\";s:13:\"lightbox_desc\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:13:\"lightbox_desc\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"lightbox_social\";a:7:{s:5:\"label\";s:23:\"Soziale Medien - Teilen\";s:11:\"description\";s:54:\"Turn on to display social sharing buttons on lightbox.\";s:2:\"id\";s:15:\"lightbox_social\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:15:\"lightbox_social\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"lightbox_deeplinking\";a:7:{s:5:\"label\";s:10:\"Verlinkung\";s:11:\"description\";s:43:\"Turn on to deeplink images in the lightbox.\";s:2:\"id\";s:20:\"lightbox_deeplinking\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:20:\"lightbox_post_images\";a:7:{s:5:\"label\";s:35:\"Beitragsbilder in Lightbox anzeigen\";s:11:\"description\";s:85:\"Turn on to display post images in the lightbox that are inside the post content area.\";s:2:\"id\";s:20:\"lightbox_post_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:23:\"fusionLightboxVideoVars\";s:2:\"id\";s:20:\"lightbox_post_images\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"lightbox_video_dimensions\";a:8:{s:5:\"label\";s:23:\"Slideshow Video Größe\";s:11:\"description\";s:69:\"Kontrolliert die Breite und Höhe für Videos innerhalb der lightbox.\";s:2:\"id\";s:25:\"lightbox_video_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:6:\"1280px\";s:6:\"height\";s:5:\"720px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:9:\"globalVar\";s:23:\"fusionLightboxVideoVars\";s:2:\"id\";s:20:\"lightbox_video_width\";s:6:\"choice\";s:5:\"width\";s:7:\"trigger\";a:4:{i:0;s:4:\"load\";i:1;s:5:\"ready\";i:2;s:6:\"resize\";i:3;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:9:\"globalVar\";s:23:\"fusionLightboxVideoVars\";s:2:\"id\";s:21:\"lightbox_video_height\";s:6:\"choice\";s:6:\"height\";s:7:\"trigger\";a:4:{i:0;s:4:\"load\";i:1;s:5:\"ready\";i:2;s:6:\"resize\";i:3;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:33:\"forms_styling_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:233:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab apply to all forms throughout the site, including Avada Forms and the 3rd party plugins that Avada has design integration with.</div>\";s:2:\"id\";s:33:\"forms_styling_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:17:\"form_input_height\";a:7:{s:5:\"label\";s:29:\"Linienhöhen der Schriftarten\";s:11:\"description\";s:64:\"Controls the height of all search, form input and select fields.\";s:2:\"id\";s:17:\"form_input_height\";s:7:\"default\";s:4:\"50px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{i:0;s:2:\"px\";}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:19:\"--form_input_height\";}i:1;a:2:{s:4:\"name\";s:42:\"--form_input_height-main-menu-search-width\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:22:\"calc(250px + 1.43 * $)\";i:1;s:5:\"250px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:17:\"form_input_height\";i:1;s:1:\">\";i:2;s:2:\"35\";}}}}}}}s:14:\"form_text_size\";a:6:{s:5:\"label\";s:23:\"Formular Schriftgröße\";s:11:\"description\";s:44:\"Kontrolliert die Größe des Formulartextes.\";s:2:\"id\";s:14:\"form_text_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--form_text_size\";s:2:\"po\";b:0;}}}s:13:\"form_bg_color\";a:6:{s:5:\"label\";s:29:\"Formularfeld Hintergrundfarbe\";s:11:\"description\";s:48:\"Steuert die Hintergrundfarbe der Formularfelder.\";s:2:\"id\";s:13:\"form_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:15:\"--form_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}}}s:15:\"form_text_color\";a:6:{s:5:\"label\";s:18:\"Formular Textfarbe\";s:11:\"description\";s:36:\"Controls the color of the form text.\";s:2:\"id\";s:15:\"form_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:17:\"--form_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:21:\"--form_text_color-35a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.35\";}s:2:\"po\";b:0;}}}s:17:\"form_border_width\";a:7:{s:5:\"label\";s:22:\"Formular Rahmengröße\";s:11:\"description\";s:44:\"Controls the border size of the form fields.\";s:2:\"id\";s:17:\"form_border_width\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"1px\";s:6:\"bottom\";s:3:\"1px\";s:4:\"left\";s:3:\"1px\";s:5:\"right\";s:3:\"1px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:23:\"--form_border_width-top\";s:6:\"choice\";s:3:\"top\";s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:26:\"--form_border_width-bottom\";s:6:\"choice\";s:6:\"bottom\";s:2:\"po\";b:0;}i:2;a:3:{s:4:\"name\";s:24:\"--form_border_width-left\";s:6:\"choice\";s:4:\"left\";s:2:\"po\";b:0;}i:3;a:3:{s:4:\"name\";s:25:\"--form_border_width-right\";s:6:\"choice\";s:5:\"right\";s:2:\"po\";b:0;}}}s:17:\"form_border_color\";a:7:{s:5:\"label\";s:25:\"Rahmenfarbe des Formulars\";s:11:\"description\";s:334:\"Controls the border color of the form fields.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"form_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:19:\"--form_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}}}s:23:\"form_focus_border_color\";a:7:{s:5:\"label\";s:26:\"Form Border Color On Focus\";s:11:\"description\";s:355:\"Controls the border color of the form fields when they have focus.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:23:\"form_focus_border_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:25:\"--form_focus_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:28:\"--form_focus_border_color-5a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.5\";}s:2:\"po\";b:0;}}}s:18:\"form_border_radius\";a:7:{s:5:\"label\";s:18:\"Form Border Radius\";s:11:\"description\";s:86:\"Controls the border radius of the form fields. Also works, if border size is set to 0.\";s:2:\"id\";s:18:\"form_border_radius\";s:7:\"default\";s:1:\"6\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--form_border_radius\";s:13:\"value_pattern\";s:3:\"$px\";s:2:\"po\";b:0;}}}s:19:\"form_views_counting\";a:6:{s:5:\"label\";s:19:\"Form Views Counting\";s:11:\"description\";s:66:\"Select which types of users will increase the form views on visit.\";s:2:\"id\";s:19:\"form_views_counting\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:3:\"all\";s:4:\"Alle\";s:10:\"logged_out\";s:10:\"Logged Out\";s:10:\"non_admins\";s:10:\"Non-Admins\";}}s:17:\"recaptcha_version\";a:7:{s:5:\"label\";s:17:\"reCAPTCHA Version\";s:11:\"description\";s:94:\"Set the reCAPTCHA version you want to use and make sure your keys below match the set version.\";s:2:\"id\";s:17:\"recaptcha_version\";s:7:\"default\";s:2:\"v3\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:2:\"v2\";s:2:\"V2\";s:2:\"v3\";s:2:\"V3\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:16:\"recaptcha_public\";a:6:{s:5:\"label\";s:26:\"reCAPTCHA Seite Schlüssel\";s:11:\"description\";s:188:\"Follow the steps in <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-set-up-google-recaptcha\" target=\"_blank\" rel=\"noopener noreferrer\">our docs</a> to get the site key.\";s:2:\"id\";s:16:\"recaptcha_public\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:17:\"recaptcha_private\";a:6:{s:5:\"label\";s:20:\"reCAPTCHA Secret Key\";s:11:\"description\";s:190:\"Follow the steps in <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-set-up-google-recaptcha\" target=\"_blank\" rel=\"noopener noreferrer\">our docs</a> to get the secret key.\";s:2:\"id\";s:17:\"recaptcha_private\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"recaptcha_color_scheme\";a:8:{s:5:\"label\";s:22:\"reCAPTCHA Color Scheme\";s:11:\"description\";s:36:\"Controls the reCAPTCHA color scheme.\";s:2:\"id\";s:22:\"recaptcha_color_scheme\";s:7:\"default\";s:5:\"light\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"light\";s:4:\"Hell\";s:4:\"dark\";s:6:\"Dunkel\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"recaptcha_version\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v2\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"recaptcha_score\";a:8:{s:5:\"label\";s:24:\"reCAPTCHA Security Score\";s:11:\"description\";s:153:\"Set a threshold score that must be met by the reCAPTCHA response. The higher the score the harder it becomes for bots, but also false positives increase.\";s:2:\"id\";s:15:\"recaptcha_score\";s:7:\"default\";s:3:\"0.5\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"0.1\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:3:\"0.1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"recaptcha_version\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v3\";}}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"recaptcha_badge_position\";a:8:{s:5:\"label\";s:27:\"reCAPTCHA Plakettenposition\";s:11:\"description\";s:162:\"Set where and if the reCAPTCHA badge should be displayed. <strong>NOTE:</strong> Google\'s Terms and Privacy information needs to be displayed on the contact form.\";s:2:\"id\";s:24:\"recaptcha_badge_position\";s:7:\"default\";s:6:\"inline\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"inline\";s:6:\"Inline\";s:10:\"bottomleft\";s:11:\"Unten links\";s:11:\"bottomright\";s:12:\"Unten rechts\";s:4:\"hide\";s:10:\"Ausblenden\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"recaptcha_version\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v3\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:20:\"recaptcha_login_form\";a:5:{s:5:\"label\";s:27:\"reCAPTCHA For User Elements\";s:11:\"description\";s:91:\"Turn on to add reCAPTCHA to the user login, user lost password and user registration forms.\";s:2:\"id\";s:20:\"recaptcha_login_form\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:11:\"hubspot_api\";a:7:{s:5:\"label\";s:11:\"HubSpot API\";s:11:\"description\";s:51:\"Select a method to connect to your HubSpot account.\";s:2:\"id\";s:11:\"hubspot_api\";s:7:\"default\";s:3:\"off\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"auth\";s:5:\"OAuth\";s:3:\"key\";s:14:\"API Schlüssel\";s:3:\"off\";s:3:\"Aus\";}s:9:\"transport\";s:11:\"postMessage\";}s:11:\"hubspot_key\";a:7:{s:5:\"label\";s:15:\"HubSpot API Key\";s:11:\"description\";s:187:\"Follow the steps in <a href=\"https://knowledge.hubspot.com/integrations/how-do-i-get-my-hubspot-api-key\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot docs</a> to access your API key.\";s:2:\"id\";s:11:\"hubspot_key\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"hubspot_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"key\";}}s:9:\"transport\";s:11:\"postMessage\";}s:13:\"hubspot_oauth\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:1748:\"<div id=\"fusion-hubspot-content\"><div data-id=\"error\" style=\"display:none\"><span><strong>There was a problem when trying to connect. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-hubspot-with-avada-forms/\">HubSpot integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://app.hubspot.com/oauth/authorize?client_id=999cc7c3-e358-4a3b-9984-a37dfbd319fa&redirect_uri=https://updates.theme-fusion.com/hubspot-api&scope=actions%20timeline%20oauth%20forms%20crm.objects.contacts.write%20crm.schemas.contacts.read%20crm.schemas.companies.read%20crm.schemas.deals.read&state=https%3A%2F%2Funternehmen.wir-noi.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Try again.</a></div><div data-id=\"no_token\"  style=\"display:flex\"><span><strong>Currently not connected. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-hubspot-with-avada-forms/\">HubSpot integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://app.hubspot.com/oauth/authorize?client_id=999cc7c3-e358-4a3b-9984-a37dfbd319fa&redirect_uri=https://updates.theme-fusion.com/hubspot-api&scope=actions%20timeline%20oauth%20forms%20crm.objects.contacts.write%20crm.schemas.contacts.read%20crm.schemas.companies.read%20crm.schemas.deals.read&state=https%3A%2F%2Funternehmen.wir-noi.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Connect with HubSpot</a></div><div data-id=\"connected\"  style=\"display:none\"><strong>Connected with HubSpot</strong><a class=\"button-primary\" target=\"_blank\" href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada&#038;revoke_hubspot=1\">Revoke Access</a></div>\";s:2:\"id\";s:13:\"hubspot_oauth\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"hubspot_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"auth\";}}}s:13:\"mailchimp_api\";a:7:{s:5:\"label\";s:13:\"Mailchimp API\";s:11:\"description\";s:53:\"Select a method to connect to your Mailchimp account.\";s:2:\"id\";s:13:\"mailchimp_api\";s:7:\"default\";s:3:\"off\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"auth\";s:5:\"OAuth\";s:3:\"key\";s:14:\"API Schlüssel\";s:3:\"off\";s:3:\"Aus\";}s:9:\"transport\";s:11:\"postMessage\";}s:13:\"mailchimp_key\";a:7:{s:5:\"label\";s:17:\"Mailchimp API Key\";s:11:\"description\";s:157:\"Follow the steps in <a href=\"https://mailchimp.com/help/about-api-keys/\" target=\"_blank\" rel=\"noopener noreferrer\">Mailchimp docs</a> to access your API key.\";s:2:\"id\";s:13:\"mailchimp_key\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"mailchimp_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"key\";}}s:9:\"transport\";s:11:\"postMessage\";}s:15:\"mailchimp_oauth\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:1464:\"<div id=\"fusion-mailchimp-content\"><div data-id=\"error\" style=\"display:none\"><span><strong>There was a problem when trying to connect. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-mailchimp-with-avada-forms/\">Mailchimp integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://login.mailchimp.com/oauth2/authorize?response_type=code&client_id=594428288149&redirect_uri=https://updates.theme-fusion.com/mailchimp-api&state=https%3A%2F%2Funternehmen.wir-noi.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Try again.</a></div><div data-id=\"no_token\"  style=\"display:flex\"><span><strong>Currently not connected. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-mailchimp-with-avada-forms/\">Mailchimp integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://login.mailchimp.com/oauth2/authorize?response_type=code&client_id=594428288149&redirect_uri=https://updates.theme-fusion.com/mailchimp-api&state=https%3A%2F%2Funternehmen.wir-noi.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Connect with Mailchimp</a></div><div data-id=\"connected\"  style=\"display:none\"><strong>Connected with Mailchimp</strong><a class=\"button-primary\" target=\"_blank\" href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada&#038;revoke_mailchimp=1\">Revoke Access</a></div>\";s:2:\"id\";s:15:\"mailchimp_oauth\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"mailchimp_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"auth\";}}}s:32:\"contact_form_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:181:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are only for the contact form that displays on the \"Contact\" page template.</div>\";s:2:\"id\";s:32:\"contact_form_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:13:\"email_address\";a:6:{s:5:\"label\";s:14:\"E-Mail Adresse\";s:11:\"description\";s:110:\"Enter the email address the form should be sent to. This only works for the form on the contact page template.\";s:2:\"id\";s:13:\"email_address\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"contact_comment_position\";a:8:{s:5:\"label\";s:34:\"Contact Form Comment Area Position\";s:11:\"description\";s:76:\"Controls the position of the comment field with respect to the other fields.\";s:2:\"id\";s:24:\"contact_comment_position\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"above\";s:8:\"Darüber\";s:5:\"below\";s:8:\"Darunter\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:20:\".fusion-contact-form\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:17:\"Edit Contact Form\";s:4:\"icon\";s:11:\"fusiona-pen\";s:11:\"open_parent\";b:1;}}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:29:\"contact_form_privacy_checkbox\";a:6:{s:5:\"label\";s:37:\"Display Data Privacy Confirmation Box\";s:11:\"description\";s:139:\"Turn on to display a checkbox and custom label that has to be checked in order to confirm data privacy terms and that the form can be sent.\";s:2:\"id\";s:29:\"contact_form_privacy_checkbox\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:26:\"contact_form_privacy_label\";a:8:{s:5:\"label\";s:27:\"Data Privacy Checkbox Label\";s:11:\"description\";s:101:\"Enter the contents that should be displayed as label for the data privacy checkbox. Can contain HTML.\";s:2:\"id\";s:26:\"contact_form_privacy_label\";s:7:\"default\";s:152:\"By checking this box, you confirm that you have read and are agreeing to our terms of use regarding the storage of the data submitted through this form.\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:29:\"contact_form_privacy_checkbox\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:39:\"#comment-privacy-checkbox-wrapper label\";s:8:\"function\";s:4:\"html\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:24:\"google_map_disabled_note\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:187:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Google Maps Script is disabled in Advanced > Theme Features section. Please enable it to see the options.</div>\";s:2:\"id\";s:24:\"google_map_disabled_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:30:\"google_map_important_note_info\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:269:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are for the google map that displays on the \"Contact\" page template. The only option that controls the Avada Builder google map element is the Google Maps API Key.</div>\";s:2:\"id\";s:30:\"google_map_important_note_info\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:8:\"gmap_api\";a:8:{s:5:\"label\";s:19:\"Google Maps API Key\";s:11:\"description\";s:271:\"Follow the steps in <a href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#key\" target=\"_blank\" rel=\"noopener noreferrer\">the Google docs</a> to get the API key. This key applies to both the contact page map and Avada Builder google map element.\";s:2:\"id\";s:8:\"gmap_api\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}s:17:\"validate_callback\";s:42:\"fusion_fusionredux_validate_google_api_key\";}s:13:\"gmap_api_type\";a:8:{s:5:\"label\";s:15:\"Google API Type\";s:11:\"description\";s:394:\"Select the Google API type that should be used to load your map. The JavaScript API allows for more options and custom styling, but could be charged for by Google depending on map loads, while the embed API can be used for free regardless of map loads. For more information please see the <a href=\"https://cloud.google.com/maps-platform/user-guide/\" target=\"_blank\">Google Maps Users Guide</a>.\";s:2:\"id\";s:13:\"gmap_api_type\";s:7:\"default\";s:2:\"js\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:2:\"js\";s:6:\"JS API\";s:5:\"embed\";s:9:\"Embed API\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:22:\"#fusion-gmap-container\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:15:\"Edit Google Map\";s:4:\"icon\";s:11:\"fusiona-pen\";s:11:\"open_parent\";b:1;}}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:18:\"gmap_embed_address\";a:7:{s:5:\"label\";s:7:\"Address\";s:11:\"description\";s:283:\"Add the address of the location you wish to display. Leave empty, if you don&#039;t want to display a map on the contact page. Address example: 775 New York Ave, Brooklyn, Kings, New York 11203. If the location is off, please try to use long/lat coordinates. ex: 12.381068,-1.492711.\";s:2:\"id\";s:18:\"gmap_embed_address\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:5:\"embed\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:19:\"gmap_embed_map_type\";a:8:{s:5:\"label\";s:8:\"Map Type\";s:11:\"description\";s:41:\"Select the type of google map to display.\";s:2:\"id\";s:19:\"gmap_embed_map_type\";s:7:\"default\";s:7:\"roadmap\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"roadmap\";s:7:\"Roadmap\";s:9:\"satellite\";s:9:\"Satellite\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:5:\"embed\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:12:\"gmap_address\";a:7:{s:5:\"label\";s:18:\"Google Map Adresse\";s:11:\"description\";s:411:\"Add the address to the location you wish to display. Leave empty, if you don&#039;t want to display a map on the contact page. Single address example: 775 New York Ave, Brooklyn, Kings, New York 11203. If the location is off, please try to use long/lat coordinates with latlng=. ex: latlng=12.381068,-1.492711. For multiple addresses, separate addresses by using the | symbol. ex: Address 1|Address 2|Address 3.\";s:2:\"id\";s:12:\"gmap_address\";s:7:\"default\";s:49:\"775 New York Ave, Brooklyn, Kings, New York 11203\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:9:\"gmap_type\";a:8:{s:5:\"label\";s:14:\"Google Map Typ\";s:11:\"description\";s:46:\"Controls the type of google map that displays.\";s:2:\"id\";s:9:\"gmap_type\";s:7:\"default\";s:7:\"roadmap\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:7:\"roadmap\";s:7:\"Roadmap\";s:9:\"satellite\";s:9:\"Satellite\";s:6:\"hybrid\";s:6:\"Hybrid\";s:7:\"terrain\";s:7:\"Terrain\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"gmap_dimensions\";a:8:{s:5:\"label\";s:21:\"Google Map Dimensions\";s:11:\"description\";s:95:\"Controls the width and height of the google map. NOTE: height does not accept percentage value.\";s:2:\"id\";s:15:\"gmap_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"415px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:14:\"gmap_topmargin\";a:7:{s:5:\"label\";s:23:\"Google Map Abstand oben\";s:11:\"description\";s:105:\"This is only applied to google maps that are not 100% width. It controls the distance to menu/page title.\";s:2:\"id\";s:14:\"gmap_topmargin\";s:7:\"default\";s:4:\"55px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"--gmap_topmargin\";s:7:\"element\";s:17:\".avada-google-map\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:4:\"55px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:22:\"gmap_dimensions[width]\";i:1;s:3:\"===\";i:2;s:4:\"100%\";}}}}}}}s:14:\"map_zoom_level\";a:8:{s:5:\"label\";s:17:\"Karten Zoom Level\";s:11:\"description\";s:143:\"Choose the zoom level for the map. 0 corresponds to a map of the earth fully zoomed out, and larger zoom levels zoom in at a higher resolution.\";s:2:\"id\";s:14:\"map_zoom_level\";s:7:\"default\";i:8;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:0;s:3:\"max\";i:22;s:4:\"step\";i:1;}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:7:\"map_pin\";a:7:{s:5:\"label\";s:11:\"Address Pin\";s:11:\"description\";s:46:\"Turn on to display the google map address pin.\";s:2:\"id\";s:7:\"map_pin\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:18:\"gmap_pin_animation\";a:7:{s:5:\"label\";s:21:\"Address Pin Animation\";s:11:\"description\";s:65:\"Turn on to enable address pin animation when the map first loads.\";s:2:\"id\";s:18:\"gmap_pin_animation\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:9:\"map_popup\";a:7:{s:5:\"label\";s:18:\"Map Popup On Click\";s:11:\"description\";s:97:\"Turn on to require a click to display the popup graphic with address info for the pin on the map.\";s:2:\"id\";s:9:\"map_popup\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"map_scrollwheel\";a:7:{s:5:\"label\";s:25:\"Map Zoom With Scrollwheel\";s:11:\"description\";s:189:\"Turn on to enable zooming using the mouse scroll wheel. Use Cmd/Ctrl key + scroll to zoom. If set to no, zooming through two-finger movements (cooperative gesture handling) will be enabled.\";s:2:\"id\";s:15:\"map_scrollwheel\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:9:\"map_scale\";a:7:{s:5:\"label\";s:9:\"Map Scale\";s:11:\"description\";s:40:\"Turn on to display the google map scale.\";s:2:\"id\";s:9:\"map_scale\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"map_zoomcontrol\";a:7:{s:5:\"label\";s:32:\"Map Zoom &amp; Pan Control Icons\";s:11:\"description\";s:69:\"Turn on to display the google map zoom control and pan control icons.\";s:2:\"id\";s:15:\"map_zoomcontrol\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:26:\"google_map_disabled_note_1\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:187:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Google Maps Script is disabled in Advanced > Theme Features section. Please enable it to see the options.</div>\";s:2:\"id\";s:26:\"google_map_disabled_note_1\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:38:\"google_map_styling_important_note_info\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:278:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are only for the google map that displays on the \"Contact\" page template, they do not control the google map element.  These options are only available for the JS API type.</div>\";s:2:\"id\";s:38:\"google_map_styling_important_note_info\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}}s:11:\"map_styling\";a:8:{s:5:\"label\";s:27:\"Wähle die Kartengestaltung\";s:11:\"description\";s:133:\"Controls the google map styles. Default is google style, Theme is our style, or choose Custom to select your own style options below.\";s:2:\"id\";s:11:\"map_styling\";s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"default\";s:15:\"Default Styling\";s:5:\"theme\";s:13:\"Theme Styling\";s:6:\"custom\";s:14:\"Custom Styling\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:17:\"map_overlay_color\";a:7:{s:5:\"label\";s:20:\"Karten-Overlay Farbe\";s:11:\"description\";s:137:\"Custom styling setting only. Pick any overlaying color for the map besides pure black or white. Works best with &quot;roadmap&quot; type.\";s:2:\"id\";s:17:\"map_overlay_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:19:\"map_infobox_styling\";a:8:{s:5:\"label\";s:16:\"Info Box Styling\";s:11:\"description\";s:66:\"Custom styling setting only. Controls the styling of the info box.\";s:2:\"id\";s:19:\"map_infobox_styling\";s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:7:\"default\";s:15:\"Default Infobox\";s:6:\"custom\";s:14:\"Custom Infobox\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:19:\"map_infobox_content\";a:7:{s:5:\"label\";s:15:\"Info Box Inhalt\";s:11:\"description\";s:207:\"Custom styling setting only. Type in custom info box content to replace the default address string. For multiple addresses, separate info box contents by using the | symbol. ex: InfoBox 1|InfoBox 2|InfoBox 3\";s:2:\"id\";s:19:\"map_infobox_content\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:20:\"map_infobox_bg_color\";a:7:{s:5:\"label\";s:26:\"Info Box Hintergrund Farbe\";s:11:\"description\";s:68:\"Custom styling setting only. Controls the info box background color.\";s:2:\"id\";s:20:\"map_infobox_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:19:\"map_infobox_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:2;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:22:\"map_infobox_text_color\";a:7:{s:5:\"label\";s:19:\"Info Box Text Farbe\";s:11:\"description\";s:62:\"Custom styling setting only. Controls the info box text color.\";s:2:\"id\";s:22:\"map_infobox_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:19:\"map_infobox_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:2;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:22:\"map_custom_marker_icon\";a:7:{s:5:\"label\";s:31:\"Benutzerdefiniertes Marker Icon\";s:11:\"description\";s:270:\"Nur für benutzerdefinierte Stil Einstellungen. Nutzen Sie Bild-URLs für benutzerdefinierte Markericons oder &quot;theme&quot; für unseren Marker. Für mehrere Adressen, trennen Sie die Iocns mit dem | Symbol oder nutzen Sie einen für alle. z.B.: Icon 1|Icon 2|Icon 3\";s:2:\"id\";s:22:\"map_custom_marker_icon\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:19:\"map_infobox_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:2;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:21:\"search_filter_results\";a:6:{s:5:\"label\";s:31:\"Limit Search Results Post Types\";s:11:\"description\";s:74:\"Turn on to limit the search results to specific post types you can choose.\";s:2:\"id\";s:21:\"search_filter_results\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:14:\"search_content\";a:9:{s:5:\"label\";s:23:\"Suchergebnis Inhaltstyp\";s:11:\"description\";s:61:\"Controls the type of content that displays in search results.\";s:2:\"id\";s:14:\"search_content\";s:7:\"default\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:6:{s:4:\"post\";s:25:\"Alle Beiträge angezeigen\";s:4:\"page\";s:6:\"Seiten\";s:15:\"avada_portfolio\";s:15:\"Portfolio Items\";s:9:\"avada_faq\";s:9:\"FAQ Items\";s:7:\"product\";s:20:\"WooCommerce Products\";s:12:\"tribe_events\";s:32:\"Veranstaltungskalender Einträge\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:21:\"search_filter_results\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:27:\"search_limit_to_post_titles\";a:6:{s:5:\"label\";s:27:\"Limit Search to Post Titles\";s:11:\"description\";s:48:\"Turn on to limit the search to post titles only.\";s:2:\"id\";s:27:\"search_limit_to_post_titles\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:18:\"search_form_design\";a:7:{s:5:\"label\";s:15:\"Suchfeld Design\";s:11:\"description\";s:40:\"Controls the design of the search forms.\";s:2:\"id\";s:18:\"search_form_design\";s:7:\"default\";s:5:\"clean\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"classic\";s:9:\"Klassisch\";s:5:\"clean\";s:6:\"Sauber\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"fusion-search-form-$\";s:12:\"remove_attrs\";a:2:{i:0;s:26:\"fusion-search-form-classic\";i:1;s:24:\"fusion-search-form-clean\";}}}}s:11:\"live_search\";a:7:{s:5:\"label\";s:18:\"Enable Live Search\";s:11:\"description\";s:90:\"Turn on to enable live search results on menu search field and other fitting search forms.\";s:2:\"id\";s:11:\"live_search\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:22:\"searchform_live_search\";a:4:{s:8:\"selector\";s:30:\".searchform.fusion-search-form\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"searchform\";}s:21:\"success_trigger_event\";s:15:\"avadaLiveSearch\";}}i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:11:\"live_search\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:26:\"live_search_min_char_count\";a:9:{s:5:\"label\";s:35:\"Live Search Minimal Character Count\";s:11:\"description\";s:348:\"Set the minimal character count to trigger the live search.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:26:\"live_search_min_char_count\";s:7:\"default\";s:1:\"4\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:37:\"searchform_live_search_min_char_count\";a:4:{s:8:\"selector\";s:30:\".searchform.fusion-search-form\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"searchform\";}s:21:\"success_trigger_event\";s:15:\"avadaLiveSearch\";}}i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:14:\"min_char_count\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:28:\"live_search_results_per_page\";a:8:{s:5:\"label\";s:27:\"Live Search Number of Posts\";s:11:\"description\";s:372:\"Controls the number of posts that should be displayed as search result suggestions.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:28:\"live_search_results_per_page\";s:7:\"default\";s:3:\"100\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"10\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:2:\"10\";}s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:8:\"per_page\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"live_search_results_height\";a:8:{s:5:\"label\";s:36:\"Live Search Results Container Height\";s:11:\"description\";s:369:\"Controls the height of the container in which the search results will be listed.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:26:\"live_search_results_height\";s:7:\"default\";s:3:\"250\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"100\";s:3:\"max\";s:3:\"800\";s:4:\"step\";s:1:\"5\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--live_search_results_height\";s:7:\"element\";s:22:\".fusion-search-results\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:34:\"live_search_display_featured_image\";a:7:{s:5:\"label\";s:34:\"Live Search Display Featured Image\";s:11:\"description\";s:354:\"Turn on to display the featured image of each live search result.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:34:\"live_search_display_featured_image\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:13:\"show_feat_img\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:29:\"live_search_display_post_type\";a:7:{s:5:\"label\";s:29:\"Live Search Display Post Type\";s:11:\"description\";s:349:\"Turn on to display the post type of each live search result.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:29:\"live_search_display_post_type\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:17:\"display_post_type\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:44:\"search_page_options_template_override_notice\";a:5:{s:2:\"id\";s:44:\"search_page_options_template_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:327:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Content override is currently used. To edit your global layout please visit <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:35:\"search_page_options_template_notice\";a:5:{s:2:\"id\";s:35:\"search_page_options_template_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:328:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Live Builder. To create a custom Content Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:13:\"search_layout\";a:8:{s:5:\"label\";s:21:\"Suchergebnisse Layout\";s:11:\"description\";s:48:\"Controls the layout for the search results page.\";s:2:\"id\";s:13:\"search_layout\";s:7:\"default\";s:4:\"grid\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:6:{s:5:\"large\";s:5:\"Groß\";s:6:\"medium\";s:6:\"Mittel\";s:15:\"large alternate\";s:16:\"Groß Alternativ\";s:16:\"medium alternate\";s:17:\"Mittel Alternativ\";s:4:\"grid\";s:4:\"Grid\";s:8:\"timeline\";s:10:\"Zeitleiste\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"search_results_per_page\";a:8:{s:5:\"label\";s:31:\"Anzahl Suchergebnisse pro Seite\";s:11:\"description\";s:47:\"Controls the number of search results per page.\";s:2:\"id\";s:23:\"search_results_per_page\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:22:\"search_pagination_type\";a:8:{s:5:\"label\";s:22:\"Search Pagination Type\";s:11:\"description\";s:57:\"Controls the pagination type for the search results page.\";s:2:\"id\";s:22:\"search_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:10:\"pagination\";s:16:\"Seitennavigation\";s:15:\"infinite_scroll\";s:18:\"Infinite Scrolling\";s:16:\"load_more_button\";s:20:\"Weitere Laden Button\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:19:\"search_grid_columns\";a:10:{s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:48:\"Controls the number of columns for grid layouts.\";s:2:\"id\";s:19:\"search_grid_columns\";s:7:\"default\";i:3;s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:26:\"search_grid_column_spacing\";a:10:{s:5:\"label\";s:14:\"Spaltenabstand\";s:11:\"description\";s:47:\"Controls the column spacing for search results.\";s:2:\"id\";s:26:\"search_grid_column_spacing\";s:7:\"default\";s:2:\"40\";s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--search_grid_column_spacing\";s:7:\"element\";s:24:\".fusion-blog-layout-grid\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:21:\"search_content_length\";a:8:{s:5:\"label\";s:22:\"Search Content Display\";s:11:\"description\";s:104:\"Controls if the search results content displays as an excerpt or full content or is completely disabled.\";s:2:\"id\";s:21:\"search_content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:7:\"excerpt\";s:6:\"Auszug\";s:12:\"full_content\";s:15:\"Gesamter Inhalt\";s:7:\"no_text\";s:7:\"No Text\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:21:\"search_excerpt_length\";a:9:{s:5:\"label\";s:21:\"Search Excerpt Length\";s:11:\"description\";s:76:\"Controls the number of words (or characters) in the search results excerpts.\";s:2:\"id\";s:21:\"search_excerpt_length\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:21:\"search_content_length\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"excerpt\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"search_strip_html_excerpt\";a:8:{s:5:\"label\";s:30:\"Search Strip HTML from Excerpt\";s:11:\"description\";s:75:\"Turn on to strip HTML content from the excerpt for the search results page.\";s:2:\"id\";s:25:\"search_strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:21:\"search_content_length\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"excerpt\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:22:\"search_featured_images\";a:7:{s:5:\"label\";s:37:\"Bevorzugte Bilder für Suchergebnisse\";s:11:\"description\";s:54:\"Turn on to display featured images for search results.\";s:2:\"id\";s:22:\"search_featured_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:11:\"search_meta\";a:9:{s:5:\"label\";s:19:\"Search Results Meta\";s:11:\"description\";s:84:\"Select the post meta data you want to be displayed in the individual search results.\";s:2:\"id\";s:11:\"search_meta\";s:7:\"default\";a:5:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";i:4;s:9:\"read_more\";}s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:5:\"multi\";b:1;s:7:\"choices\";a:7:{s:6:\"author\";s:5:\"Autor\";s:4:\"date\";s:5:\"Datum\";s:10:\"categories\";s:10:\"Kategorien\";s:4:\"tags\";s:13:\"Schlagwörter\";s:8:\"comments\";s:10:\"Kommentare\";s:9:\"read_more\";s:14:\"Read More Link\";s:9:\"post_type\";s:9:\"Post Type\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:26:\"search_new_search_position\";a:8:{s:5:\"label\";s:18:\"Suchefeld Position\";s:11:\"description\";s:67:\"Controls the position of the search bar on the search results page.\";s:2:\"id\";s:26:\"search_new_search_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:3:\"top\";s:17:\"Über Ergebnissen\";s:6:\"bottom\";s:17:\"Unter Ergebnissen\";s:6:\"hidden\";s:10:\"Ausblenden\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:12:\"privacy_note\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:502:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options in this section will help to easier comply with data privacy regulations, like the European GDPR. When the \"Privacy Consent\" option is used, Avada will create a cookie with the name <b>\"privacy_embeds\"</b> on user clients browsing your site to manage and store user consent to load the different third party embeds and tracking scripts. You may want to add information about this cookie to your privacy page.</div>\";s:2:\"id\";s:12:\"privacy_note\";s:4:\"type\";s:6:\"custom\";}s:18:\"gfonts_load_method\";a:7:{s:2:\"id\";s:18:\"gfonts_load_method\";s:5:\"label\";s:44:\"Google &amp; Font Awesome Schriftarten Modus\";s:11:\"description\";s:184:\"When set to &quot;Local&quot;, the Google and Font Awesome fonts set in Global Options will be downloaded to your server. Set to &quot;CDN&quot; to use the Google and FontAwesome CDNs.\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:3:\"cdn\";s:7:\"choices\";a:2:{s:5:\"local\";s:5:\"Lokal\";s:3:\"cdn\";s:3:\"CDN\";}s:9:\"transport\";s:11:\"postMessage\";}s:14:\"privacy_embeds\";a:6:{s:5:\"label\";s:28:\"Einwilligung zum Datenschutz\";s:11:\"description\";s:79:\"Turn on to prevent embeds and scripts from loading until user consent is given.\";s:2:\"id\";s:14:\"privacy_embeds\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"privacy_expiry\";a:8:{s:5:\"label\";s:56:\"Ablauf der Cookies für die Einwilligung zum Datenschutz\";s:11:\"description\";s:68:\"Controls how long the consent cookie should be stored for.  In days.\";s:2:\"id\";s:14:\"privacy_expiry\";s:7:\"default\";s:2:\"30\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"366\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:19:\"privacy_embed_types\";a:9:{s:5:\"label\";s:21:\"Privacy Consent Types\";s:11:\"description\";s:67:\"Select the types of embeds which you would like to require consent.\";s:2:\"id\";s:19:\"privacy_embed_types\";s:7:\"default\";a:8:{i:0;s:7:\"youtube\";i:1;s:5:\"vimeo\";i:2;s:10:\"soundcloud\";i:3;s:8:\"facebook\";i:4;s:6:\"flickr\";i:5;s:7:\"twitter\";i:6;s:5:\"gmaps\";i:7;s:8:\"tracking\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:8:{s:7:\"youtube\";s:7:\"YouTube\";s:5:\"vimeo\";s:5:\"Vimeo\";s:10:\"soundcloud\";s:10:\"SoundCloud\";s:8:\"facebook\";s:8:\"Facebook\";s:6:\"flickr\";s:6:\"Flickr\";s:7:\"twitter\";s:7:\"Twitter\";s:5:\"gmaps\";s:11:\"Google Maps\";s:8:\"tracking\";s:16:\"Tracking Cookies\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:22:\"privacy_embed_defaults\";a:9:{s:5:\"label\";s:30:\"Privacy Selected Consent Types\";s:11:\"description\";s:138:\"Select the types of embeds which you would like to have checked by default.  This applies to both the privacy bar and the privacy element.\";s:2:\"id\";s:22:\"privacy_embed_defaults\";s:7:\"default\";a:0:{}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:8:{s:7:\"youtube\";s:7:\"YouTube\";s:5:\"vimeo\";s:5:\"Vimeo\";s:10:\"soundcloud\";s:10:\"SoundCloud\";s:8:\"facebook\";s:8:\"Facebook\";s:6:\"flickr\";s:6:\"Flickr\";s:7:\"twitter\";s:7:\"Twitter\";s:5:\"gmaps\";s:11:\"Google Maps\";s:8:\"tracking\";s:16:\"Tracking Cookies\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:16:\"privacy_bg_color\";a:7:{s:5:\"label\";s:36:\"Privacy Placeholder Background Color\";s:11:\"description\";s:59:\"Controls the background color for the privacy placeholders.\";s:2:\"id\";s:16:\"privacy_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--privacy_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:13:\"privacy_color\";a:7:{s:5:\"label\";s:30:\"Privacy Placeholder Text Color\";s:11:\"description\";s:51:\"Controls the text color for the embed placeholders.\";s:2:\"id\";s:13:\"privacy_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"--privacy_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:11:\"privacy_bar\";a:5:{s:5:\"label\";s:11:\"Privacy Bar\";s:11:\"description\";s:58:\"Turn on to enable a privacy bar at the bottom of the page.\";s:2:\"id\";s:11:\"privacy_bar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:19:\"privacy_bar_padding\";a:8:{s:5:\"label\";s:19:\"Privacy Bar Padding\";s:11:\"description\";s:68:\"Controls the top/right/bottom/left paddings of the privacy bar area.\";s:2:\"id\";s:19:\"privacy_bar_padding\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"15px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:25:\"--privacy_bar_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:28:\"--privacy_bar_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:26:\"--privacy_bar_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:27:\"--privacy_bar_padding-right\";s:6:\"choice\";s:5:\"right\";}}}s:20:\"privacy_bar_bg_color\";a:7:{s:5:\"label\";s:28:\"Privacy Bar Background Color\";s:11:\"description\";s:50:\"Controls the background color for the privacy bar.\";s:2:\"id\";s:20:\"privacy_bar_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--privacy_bar_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"privacy_bar_font_size\";a:8:{s:5:\"label\";s:21:\"Privacy Bar Font Size\";s:11:\"description\";s:51:\"Controls the font size for the privacy bar content.\";s:2:\"id\";s:21:\"privacy_bar_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:23:\"--privacy_bar_font_size\";}}}s:17:\"privacy_bar_color\";a:7:{s:5:\"label\";s:22:\"Privacy Bar Text Color\";s:11:\"description\";s:52:\"Controls the text color for the privacy bar content.\";s:2:\"id\";s:17:\"privacy_bar_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--privacy_bar_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"privacy_bar_link_color\";a:7:{s:5:\"label\";s:22:\"Privacy Bar Link Color\";s:11:\"description\";s:44:\"Controls the link color for the privacy bar.\";s:2:\"id\";s:22:\"privacy_bar_link_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--privacy_bar_link_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"privacy_bar_link_hover_color\";a:7:{s:5:\"label\";s:28:\"Privacy Bar Link Hover Color\";s:11:\"description\";s:50:\"Controls the link hover color for the privacy bar.\";s:2:\"id\";s:28:\"privacy_bar_link_hover_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--privacy_bar_link_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"privacy_bar_text\";a:7:{s:5:\"label\";s:16:\"Privacy Bar Text\";s:11:\"description\";s:59:\"Enter the text which you want to appear on the privacy bar.\";s:2:\"id\";s:16:\"privacy_bar_text\";s:7:\"default\";s:51:\"This website uses cookies and third party services.\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:24:\"privacy_bar_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_button_text\";a:7:{s:5:\"label\";s:23:\"Privacy Bar Button Text\";s:11:\"description\";s:56:\"Controls the button text for the privacy bar acceptance.\";s:2:\"id\";s:23:\"privacy_bar_button_text\";s:7:\"default\";s:2:\"OK\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:31:\"privacy_bar_button_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_button_save\";a:7:{s:5:\"label\";s:32:\"Privacy Bar Button Save On Click\";s:11:\"description\";s:201:\"If enabled, when the button is clicked it will save the default consent selection.  If disabled the button will only save the preferences after a checkbox has been changed (bar will be hidden however).\";s:2:\"id\";s:23:\"privacy_bar_button_save\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:16:\"avadaPrivacyVars\";s:2:\"id\";s:6:\"button\";s:7:\"trigger\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"privacy_bar_more\";a:7:{s:5:\"label\";s:20:\"Privacy Bar Settings\";s:11:\"description\";s:132:\"If enabled, a settings section will be added to show more information and to provide checkboxes for tracking and third party embeds.\";s:2:\"id\";s:16:\"privacy_bar_more\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:24:\"privacy_bar_more_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:21:\"privacy_bar_more_text\";a:7:{s:5:\"label\";s:25:\"Privacy Bar Settings Text\";s:11:\"description\";s:52:\"Controls the link text for the privacy bar settings.\";s:2:\"id\";s:21:\"privacy_bar_more_text\";s:7:\"default\";s:13:\"Einstellungen\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:29:\"privacy_bar_more_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_update_text\";a:7:{s:5:\"label\";s:30:\"Privacy Bar Update Button Text\";s:11:\"description\";s:74:\"Controls the button text for the privacy bar after a checkbox has changed.\";s:2:\"id\";s:23:\"privacy_bar_update_text\";s:7:\"default\";s:15:\"Update Settings\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:2;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:31:\"privacy_bar_update_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:30:\"privacy_bar_headings_font_size\";a:7:{s:5:\"label\";s:29:\"Privacy Bar Heading Font Size\";s:11:\"description\";s:56:\"Controls the font size for the privacy bar heading text.\";s:2:\"id\";s:30:\"privacy_bar_headings_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}}s:26:\"privacy_bar_headings_color\";a:7:{s:5:\"label\";s:26:\"Privacy Bar Headings Color\";s:11:\"description\";s:56:\"Controls the text color of the privacy bar heading font.\";s:2:\"id\";s:26:\"privacy_bar_headings_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:28:\"--privacy_bar_headings_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:4:\"type\";a:5:{s:2:\"id\";s:4:\"type\";s:4:\"type\";s:6:\"select\";s:11:\"description\";s:45:\"Select the type of cookie/content to display.\";s:7:\"default\";s:6:\"custom\";s:7:\"choices\";a:3:{s:6:\"custom\";s:6:\"Custom\";s:8:\"tracking\";s:16:\"Tracking Cookies\";s:6:\"embeds\";s:18:\"Third Party Embeds\";}}s:5:\"title\";a:4:{s:2:\"id\";s:5:\"title\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:21:\"Title for the content\";s:7:\"default\";s:0:\"\";}s:11:\"description\";a:4:{s:2:\"id\";s:11:\"description\";s:4:\"type\";s:8:\"textarea\";s:5:\"label\";s:27:\"Description for the content\";s:7:\"default\";s:0:\"\";}s:16:\"sidenav_behavior\";a:7:{s:5:\"label\";s:26:\"Seiten Navigaion Verhalten\";s:11:\"description\";s:89:\"Controls if the child pages show on click or hover for the side navigation page template.\";s:2:\"id\";s:16:\"sidenav_behavior\";s:7:\"default\";s:5:\"hover\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:5:\"hover\";s:28:\"Mit der Maus darüber fahren\";s:5:\"click\";s:5:\"Klick\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:16:\"avadaSideNavVars\";s:2:\"id\";s:16:\"sidenav_behavior\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"featured_image_placeholder\";a:6:{s:5:\"label\";s:16:\"Bild Platzhalter\";s:11:\"description\";s:175:\"Turn on to display a placeholder image for posts that do not have a featured image. This allows the post to display on portfolio archives and related posts/projects carousels.\";s:2:\"id\";s:26:\"featured_image_placeholder\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:28:\"related_posts_layout_partial\";a:5:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";s:11:\"js_callback\";a:1:{i:0;s:17:\"noPortfolioOnPage\";}}}}s:12:\"excerpt_base\";a:6:{s:5:\"label\";s:28:\"Basis für die Auszugslänge\";s:11:\"description\";s:63:\"Controls if the excerpt length is based on words or characters.\";s:2:\"id\";s:12:\"excerpt_base\";s:7:\"default\";s:5:\"words\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"words\";s:7:\"Wörter\";s:10:\"characters\";s:10:\"Buchstaben\";}}s:16:\"disable_excerpts\";a:5:{s:5:\"label\";s:32:\"Display Excerpt Read More Symbol\";s:11:\"description\";s:72:\"Turn on to display the read more symbol on excerpts throughout the site.\";s:2:\"id\";s:16:\"disable_excerpts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:24:\"excerpt_read_more_symbol\";a:6:{s:5:\"label\";s:24:\"Excerpt Read More Symbol\";s:11:\"description\";s:94:\"Set the excerpt read more symbol, HTML code is allowed. If left empty it will be set to [...].\";s:2:\"id\";s:24:\"excerpt_read_more_symbol\";s:7:\"default\";s:5:\"[...]\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_excerpts\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"link_read_more\";a:6:{s:5:\"label\";s:44:\"Make Excerpt Symbol Link to Single Post Page\";s:11:\"description\";s:78:\"Turn on to have the read more symbol on excerpts link to the single post page.\";s:2:\"id\";s:14:\"link_read_more\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_excerpts\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:12:\"avatar_shape\";a:7:{s:5:\"label\";s:12:\"Avatar Shape\";s:11:\"description\";s:72:\"Set the shape for Avatars used in comments, author info and other areas.\";s:2:\"id\";s:12:\"avatar_shape\";s:7:\"default\";s:6:\"circle\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:6:\"square\";s:6:\"Square\";s:6:\"circle\";s:6:\"Circle\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:15:\"fusion-avatar-$\";s:12:\"remove_attrs\";a:2:{i:0;s:20:\"fusion-avatar-square\";i:1;s:20:\"fusion-avatar-circle\";}}}}s:14:\"comments_pages\";a:5:{s:5:\"label\";s:20:\"Kommentare auf Seite\";s:11:\"description\";s:43:\"Turn on to allow comments on regular pages.\";s:2:\"id\";s:14:\"comments_pages\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:21:\"featured_images_pages\";a:6:{s:5:\"label\";s:24:\"Featured Images on Pages\";s:11:\"description\";s:52:\"Turn on to display featured images on regular pages.\";s:2:\"id\";s:21:\"featured_images_pages\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:29:\"featured_images_pages_partial\";a:4:{s:8:\"selector\";s:30:\".fusion-featured-image-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:23:\"singular_featured_image\";}s:21:\"success_trigger_event\";s:35:\"fusion-reinit-single-post-slideshow\";}}}s:21:\"nofollow_social_links\";a:6:{s:5:\"label\";s:50:\"Füge &quot;nofollow&quot; zu Sozialen Links hinzu\";s:11:\"description\";s:66:\"Turn on to add &quot;nofollow&quot; attribute to all social links.\";s:2:\"id\";s:21:\"nofollow_social_links\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"social_icons_new\";a:6:{s:5:\"label\";s:59:\"Links zu sozialen Netzwerken in einem neuen Fenster öffnen\";s:11:\"description\";s:54:\"Turn on to allow social icons to open in a new window.\";s:2:\"id\";s:16:\"social_icons_new\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"totop_position\";a:7:{s:5:\"label\";s:21:\"ToTop Button Position\";s:11:\"description\";s:97:\"Controls the position of the ToTop button. On mobiles also non-floating layouts will be floating.\";s:2:\"id\";s:14:\"totop_position\";s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:4:\"left\";s:5:\"Links\";s:13:\"left_floating\";s:13:\"Left Floating\";s:5:\"right\";s:6:\"Rechts\";s:14:\"right_floating\";s:14:\"Right Floating\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:14:\"avadaToTopVars\";s:2:\"id\";s:14:\"totop_position\";s:7:\"trigger\";a:1:{i:0;s:18:\"updateToTopPostion\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"totop_border_radius\";a:7:{s:5:\"label\";s:19:\"ToTop Border Radius\";s:11:\"description\";s:128:\"Controls the border radius of the ToTop button. For non-floating layouts the border radius will only apply to the upper corners.\";s:2:\"id\";s:19:\"totop_border_radius\";s:7:\"default\";s:1:\"6\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--totop_border_radius\";s:7:\"element\";s:6:\"#toTop\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"totop_scroll_down_only\";a:6:{s:5:\"label\";s:30:\"ToTop Show on Scroll Down Only\";s:11:\"description\";s:108:\"Turn on to show the ToTop button on scroll down only. Otherwise it will always show if the page is scrolled.\";s:2:\"id\";s:22:\"totop_scroll_down_only\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:14:\"avadaToTopVars\";s:2:\"id\";s:22:\"totop_scroll_down_only\";s:7:\"trigger\";a:1:{i:0;s:5:\"ready\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"custom_scrollbar\";a:6:{s:5:\"label\";s:16:\"Custom Scrollbar\";s:11:\"description\";s:132:\"Turn on if you want to change the background and handle color of the scrollbar. Styling and support varies depending on the browser.\";s:2:\"id\";s:16:\"custom_scrollbar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:10:\"awb-scroll\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"scrollbar_background\";a:7:{s:5:\"label\";s:20:\"Scrollbar Background\";s:11:\"description\";s:48:\"Controls the background color for the scrollbar.\";s:2:\"id\";s:20:\"scrollbar_background\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--scrollbar_background\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"custom_scrollbar\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:16:\"scrollbar_handle\";a:7:{s:5:\"label\";s:22:\"Scrollbar Handle Color\";s:11:\"description\";s:44:\"Controls the color for the scrollbar handle.\";s:2:\"id\";s:16:\"scrollbar_handle\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--scrollbar_handle\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"custom_scrollbar\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:8:\"faq_slug\";a:5:{s:5:\"label\";s:8:\"FAQ Slug\";s:11:\"description\";s:195:\"The slug name cannot be the same name as a page name or the layout will break. This option changes the permalink when you use the permalink type as %postname%. Make sure to regenerate permalinks.\";s:2:\"id\";s:8:\"faq_slug\";s:7:\"default\";s:9:\"faq-items\";s:4:\"type\";s:4:\"text\";}s:20:\"related_posts_layout\";a:7:{s:5:\"label\";s:31:\"Related Posts / Projects Layout\";s:11:\"description\";s:65:\"Controls the layout style for related posts and related projects.\";s:2:\"id\";s:20:\"related_posts_layout\";s:7:\"default\";s:17:\"title_on_rollover\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:17:\"title_on_rollover\";s:17:\"Title on rollover\";s:17:\"title_below_image\";s:16:\"Titel unter Bild\";}s:15:\"partial_refresh\";a:1:{s:28:\"related_posts_layout_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:20:\"number_related_posts\";a:7:{s:5:\"label\";s:42:\"Anzahl der ähnlichen Beiträge / Projekte\";s:11:\"description\";s:80:\"Controls the number of related posts and projects that display on a single post.\";s:2:\"id\";s:20:\"number_related_posts\";s:7:\"default\";s:1:\"4\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"30\";s:4:\"step\";s:1:\"1\";}s:15:\"partial_refresh\";a:1:{s:28:\"number_related_posts_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:21:\"related_posts_columns\";a:7:{s:5:\"label\";s:40:\"Related Posts / Projects Maximum Columns\";s:11:\"description\";s:73:\"Controls the number of columns for the related posts and projects layout.\";s:2:\"id\";s:21:\"related_posts_columns\";s:7:\"default\";i:4;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:15:\"partial_refresh\";a:1:{s:29:\"related_posts_columns_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:28:\"related_posts_column_spacing\";a:7:{s:5:\"label\";s:39:\"Related Posts / Projects Column Spacing\";s:11:\"description\";s:82:\"Controls the amount of spacing between columns for the related posts and projects.\";s:2:\"id\";s:28:\"related_posts_column_spacing\";s:7:\"default\";s:2:\"48\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:15:\"partial_refresh\";a:1:{s:36:\"related_posts_column_spacing_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:24:\"related_posts_image_size\";a:7:{s:5:\"label\";s:35:\"Related Posts / Projects Image Size\";s:11:\"description\";s:216:\"Controls if the featured image size is fixed (cropped) or auto (full image ratio) for related posts and projects. IMPORTANT: Fixed works best with a standard 940px site width. Auto works best with larger site widths.\";s:2:\"id\";s:24:\"related_posts_image_size\";s:7:\"default\";s:7:\"cropped\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"cropped\";s:7:\"Fixiert\";s:4:\"full\";s:4:\"Auto\";}s:15:\"partial_refresh\";a:1:{s:32:\"related_posts_image_size_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:22:\"related_posts_autoplay\";a:6:{s:5:\"label\";s:33:\"Related Posts / Projects Autoplay\";s:11:\"description\";s:59:\"Turn on to autoplay the related posts and project carousel.\";s:2:\"id\";s:22:\"related_posts_autoplay\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:30:\"related_posts_autoplay_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:19:\"related_posts_speed\";a:7:{s:5:\"label\";s:42:\"Anzahl der ähnlichen Beiträge / Projekte\";s:11:\"description\";s:78:\"Controls the speed of related posts and project carousel. ex: 1000 = 1 second.\";s:2:\"id\";s:19:\"related_posts_speed\";s:7:\"default\";s:4:\"2500\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:4:\"1000\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:3:\"250\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:18:\"fusionCarouselVars\";s:2:\"id\";s:19:\"related_posts_speed\";s:7:\"trigger\";a:1:{i:0;s:5:\"ready\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"related_posts_navigation\";a:6:{s:5:\"label\";s:40:\"Related Posts / Projects Show Navigation\";s:11:\"description\";s:53:\"Turn on to display navigation arrows on the carousel.\";s:2:\"id\";s:24:\"related_posts_navigation\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:32:\"related_posts_navigation_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:19:\"related_posts_swipe\";a:6:{s:5:\"label\";s:37:\"Related Posts / Projects Mouse Scroll\";s:11:\"description\";s:53:\"Turn on to enable mouse drag control on the carousel.\";s:2:\"id\";s:19:\"related_posts_swipe\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:27:\"related_posts_swipe_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:25:\"related_posts_swipe_items\";a:7:{s:5:\"label\";s:37:\"Related Posts / Projects Scroll Items\";s:11:\"description\";s:101:\"Controls the number of items that scroll at one time. Set to 0 to scroll the number of visible items.\";s:2:\"id\";s:25:\"related_posts_swipe_items\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"15\";s:4:\"step\";s:1:\"1\";}s:15:\"partial_refresh\";a:1:{s:33:\"related_posts_swipe_items_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:14:\"image_rollover\";a:6:{s:5:\"label\";s:13:\"Bild Rollover\";s:11:\"description\";s:78:\"Turn on to display the rollover graphic on blog and portfolio featured images.\";s:2:\"id\";s:14:\"image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:12:\"full_refresh\";a:1:{s:29:\"image_rollover_layout_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:24:\"image_rollover_direction\";a:8:{s:5:\"label\";s:24:\"Image Rollover Direction\";s:11:\"description\";s:337:\"Controls the direction the rollover starts from.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:24:\"image_rollover_direction\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:4:\"fade\";s:10:\"Verblassen\";s:4:\"left\";s:5:\"Links\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:3:\"top\";s:4:\"Oben\";s:12:\"center_horiz\";s:21:\"Horizontal zentrieren\";s:15:\"center_vertical\";s:19:\"Vertikal zentrieren\";}s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:32:\"avada-image-rollover-direction-$\";s:12:\"remove_attrs\";a:7:{i:0;s:35:\"avada-image-rollover-direction-fade\";i:1;s:35:\"avada-image-rollover-direction-left\";i:2;s:36:\"avada-image-rollover-direction-right\";i:3;s:37:\"avada-image-rollover-direction-bottom\";i:4;s:34:\"avada-image-rollover-direction-top\";i:5;s:43:\"avada-image-rollover-direction-center_horiz\";i:6;s:46:\"avada-image-rollover-direction-center_vertical\";}}}}s:24:\"image_rollover_icon_size\";a:7:{s:5:\"label\";s:29:\"Image Rollover Icon Font Size\";s:11:\"description\";s:40:\"Controls the size of the rollover icons.\";s:2:\"id\";s:24:\"image_rollover_icon_size\";s:7:\"default\";s:4:\"15px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"image_rollover\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--image_rollover_icon_size\";}}}s:20:\"image_rollover_icons\";a:8:{s:5:\"label\";s:20:\"Image Rollover Icons\";s:11:\"description\";s:27:\"Choose which icons display.\";s:2:\"id\";s:20:\"image_rollover_icons\";s:7:\"default\";s:8:\"linkzoom\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:8:\"linkzoom\";s:19:\"Link + Vergrößern\";s:4:\"link\";s:4:\"Link\";s:4:\"zoom\";s:12:\"Vergrößern\";s:2:\"no\";s:11:\"Keine Icons\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"image_rollover\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:12:\"full_refresh\";a:1:{s:28:\"image_rollover_icons_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:20:\"title_image_rollover\";a:7:{s:5:\"label\";s:20:\"Image Rollover Title\";s:11:\"description\";s:345:\"Turn on to display the post title in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"title_image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:12:\"full_refresh\";a:1:{s:28:\"title_image_rollover_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:19:\"cats_image_rollover\";a:7:{s:5:\"label\";s:25:\"Image Rollover Categories\";s:11:\"description\";s:350:\"Turn on to display the post categories in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"cats_image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:12:\"full_refresh\";a:1:{s:27:\"cats_image_rollover_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:26:\"icon_circle_image_rollover\";a:7:{s:5:\"label\";s:26:\"Image Rollover Icon Circle\";s:11:\"description\";s:357:\"Turn on to display the icon background circle in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:26:\"icon_circle_image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-image-rollover-circle-yes\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:30:\"avada-image-rollover-circle-no\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"image_gradient_top_color\";a:7:{s:5:\"label\";s:33:\"Image Rollover Gradient Top Color\";s:11:\"description\";s:345:\"Controls the top color of the image rollover background.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:24:\"image_gradient_top_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 20%))\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--image_gradient_top_color\";s:7:\"element\";s:21:\".fusion-image-wrapper\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"image_gradient_bottom_color\";a:7:{s:5:\"label\";s:36:\"Image Rollover Gradient Bottom Color\";s:11:\"description\";s:348:\"Controls the bottom color of the image rollover background.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:27:\"image_gradient_bottom_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:29:\"--image_gradient_bottom_color\";s:7:\"element\";s:16:\".fusion-rollover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"image_rollover_text_color\";a:7:{s:5:\"label\";s:28:\"Image Rollover Element Color\";s:11:\"description\";s:361:\"Controls the color of image rollover text and icon circular backgrounds.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:25:\"image_rollover_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--image_rollover_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"image_rollover_icon_color\";a:7:{s:5:\"label\";s:25:\"Image Rollover Icon Color\";s:11:\"description\";s:343:\"Controls the color of the icons in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:25:\"image_rollover_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:27:\"--image_rollover_icon_color\";s:7:\"element\";s:16:\".fusion-rollover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"pagination_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:222:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab apply to all pagination throughout the site, including the 3rd party plugins that Avada has design integration with.</div>\";s:2:\"id\";s:30:\"pagination_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:17:\"pagination_sizing\";a:7:{s:4:\"type\";s:6:\"select\";s:5:\"label\";s:34:\"Seitennummerierung Dimensionierung\";s:11:\"description\";s:63:\"Set on which dimension the pagination box size should be based.\";s:2:\"id\";s:17:\"pagination_sizing\";s:7:\"default\";s:12:\"width_height\";s:7:\"choices\";a:2:{s:12:\"width_height\";s:18:\"Width/Height Based\";s:7:\"padding\";s:13:\"Padding Based\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:22:\"avada-has-pagination-$\";s:12:\"remove_attrs\";a:2:{i:0;s:28:\"avada-has-pagination-padding\";i:1;s:33:\"avada-has-pagination-width_height\";}}}}s:23:\"pagination_width_height\";a:8:{s:5:\"label\";s:35:\"Seitennummerierung Box Breite/Höhe\";s:11:\"description\";s:58:\"Controls the width and height of the displayed page links.\";s:2:\"id\";s:23:\"pagination_width_height\";s:7:\"default\";s:2:\"30\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"5\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"pagination_sizing\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"padding\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--pagination_width_height\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"pagination_box_padding\";a:8:{s:5:\"label\";s:30:\"Seitennummerierung Box Padding\";s:11:\"description\";s:49:\"Controls the padding inside the pagination boxes.\";s:2:\"id\";s:22:\"pagination_box_padding\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:3:\"6px\";s:6:\"height\";s:3:\"2px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"pagination_sizing\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"padding\";}}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:30:\"--pagination_box_padding-width\";s:6:\"choice\";s:5:\"width\";}i:1;a:2:{s:4:\"name\";s:31:\"--pagination_box_padding-height\";s:6:\"choice\";s:6:\"height\";}}}s:23:\"pagination_border_width\";a:7:{s:5:\"label\";s:32:\"Seitennummerierung Rahmen Breite\";s:11:\"description\";s:54:\"Controls the border width of the displayed page links.\";s:2:\"id\";s:23:\"pagination_border_width\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"25\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--pagination_border_width\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:24:\"pagination_border_radius\";a:7:{s:5:\"label\";s:32:\"Seitennummerierung Rahmen Radius\";s:11:\"description\";s:125:\"Controls the border radius of the displayed page links. Values of half the overall width or higher will yield circular links.\";s:2:\"id\";s:24:\"pagination_border_radius\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--pagination_border_radius\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:23:\"pagination_text_display\";a:6:{s:5:\"label\";s:30:\"Seitennummerierung Textanzeige\";s:11:\"description\";s:54:\"Turn on to display the &quot;Previous/Next&quot; text.\";s:2:\"id\";s:23:\"pagination_text_display\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"fusion-show-pagination-text\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"pagination_font_size\";a:6:{s:5:\"label\";s:37:\"Schriftgrösse der Seitennummerierung\";s:11:\"description\";s:41:\"Controls the size of the pagination text.\";s:2:\"id\";s:20:\"pagination_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:22:\"--pagination_font_size\";}}}s:16:\"pagination_range\";a:7:{s:5:\"label\";s:26:\"Seitennummerierung Bereich\";s:11:\"description\";s:75:\"Controls the number of page links displayed left and right of current page.\";s:2:\"id\";s:16:\"pagination_range\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"10\";s:4:\"step\";s:1:\"1\";}s:12:\"full_refresh\";a:1:{s:28:\"related_posts_layout_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:18:\"isPaginationOnPage\";}}}}s:26:\"pagination_start_end_range\";a:7:{s:5:\"label\";s:46:\"Seitennummerierung Anfangsbereich / Endbereich\";s:11:\"description\";s:86:\"Controls the number of page links displayed at the start and at the end of pagination.\";s:2:\"id\";s:26:\"pagination_start_end_range\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"10\";s:4:\"step\";s:1:\"1\";}s:12:\"full_refresh\";a:1:{s:34:\"pagination_start_end_range_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:18:\"isPaginationOnPage\";}}}}s:35:\"gridbox_styling_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:302:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> These are Grid Box Styling global options that apply to grid boxes throughout the site; blog grid and timeline, portfolio boxed layout and WooCommerce boxes. Blog / Portfolio elements also have options to override these.</div>\";s:2:\"id\";s:35:\"gridbox_styling_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:17:\"timeline_bg_color\";a:6:{s:5:\"label\";s:23:\"Farbe des Gitterkastens\";s:11:\"description\";s:49:\"Controls the background color for the grid boxes.\";s:2:\"id\";s:17:\"timeline_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:3:{i:0;a:2:{s:4:\"name\";s:19:\"--timeline_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:36:\"--timeline_bg_color-20px-transparent\";s:8:\"callback\";a:2:{i:0;s:28:\"return_string_if_transparent\";i:1;a:2:{s:11:\"transparent\";s:0:\"\";s:6:\"opaque\";s:4:\"20px\";}}}i:2;a:2:{s:4:\"name\";s:35:\"--timeline_bg_color-not-transparent\";s:8:\"callback\";a:2:{i:0;s:25:\"get_non_transparent_color\";i:1;s:0:\"\";}}}}s:14:\"timeline_color\";a:7:{s:5:\"label\";s:25:\"Farbe des Gitterelementes\";s:11:\"description\";s:83:\"Controls the color of borders/date box/timeline dots and arrows for the grid boxes.\";s:2:\"id\";s:14:\"timeline_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--timeline_color\";s:11:\"js_callback\";a:1:{i:0;s:21:\"timeLineColorCallback\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:36:\"avada-has-transparent-timeline_color\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"grid_separator_style_type\";a:7:{s:5:\"label\";s:21:\"Gitternetzteiler Stil\";s:11:\"description\";s:229:\"Controls the line style of grid separators. <strong>Note:</strong> For blog and portfolio grids at least one meta data field must be enabled and excerpt or full content must be shown in order that the separator will be displayed.\";s:2:\"id\";s:25:\"grid_separator_style_type\";s:7:\"default\";s:12:\"double|solid\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"none\";s:9:\"Kein Stil\";s:12:\"single|solid\";s:27:\"Einfacher Rand durchgezogen\";s:12:\"double|solid\";s:27:\"Doppelter Rand durchgezogen\";s:13:\"single|dashed\";s:26:\"Einfacher Rand gestrichelt\";s:13:\"double|dashed\";s:26:\"Doppelter Rand gestrichelt\";s:13:\"single|dotted\";s:24:\"Einfacher Rand gepunktet\";s:13:\"double|dotted\";s:24:\"Doppelter Rand gepunktet\";s:6:\"shadow\";s:8:\"Schatten\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:1:{i:0;s:14:\"updateGridSeps\";}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"grid_separator_color\";a:7:{s:5:\"label\";s:22:\"Gitternetzteiler Farbe\";s:11:\"description\";s:50:\"Kontrolliert die Linienfarbe der Gitternetzteiler.\";s:2:\"id\";s:20:\"grid_separator_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--grid_separator_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:36:\"avada-has-transparent-grid-sep-color\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"grid_masonry_heading\";a:4:{s:5:\"label\";s:29:\"Mauerwerkdarstellung Optionen\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:20:\"grid_masonry_heading\";s:4:\"type\";s:4:\"info\";}s:35:\"gridbox_masonry_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:285:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> These are Masonry global options that apply to the Blog / Portfolio / Gallery elements in addition to Blog and Portfolio archives. Blog / Portfolio / Gallery elements also have options to override these.</div>\";s:2:\"id\";s:35:\"gridbox_masonry_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:18:\"masonry_grid_ratio\";a:7:{s:5:\"label\";s:45:\"Mauerwerkdarstellung Bilder Aspektverhältnis\";s:11:\"description\";s:286:\"Set the ratio to decide when an image should become landscape (ratio being width : height) and portrait (ratio being height : width). <strong>IMPORTANT:</strong> The value of \"1.0\" represents a special case, which will use the auto calculated ratios like in versions prior to Avada 5.5.\";s:2:\"id\";s:18:\"masonry_grid_ratio\";s:7:\"default\";s:3:\"1.5\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";d:1;s:3:\"max\";d:4;s:4:\"step\";d:0.1;}s:12:\"full_refresh\";a:1:{s:26:\"masonry_grid_ratio_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:15:\"isMasonryOnPage\";}}}}s:20:\"masonry_width_double\";a:7:{s:5:\"label\";s:31:\"Mauerwerkdarstellung 2x2 Breite\";s:11:\"description\";s:381:\"This option decides when a square 1x1 image should become 2x2. This will not apply to images that highly favor landscape or portrait layouts. <strong>IMPORTANT:</strong> There is a “Masonry Image Layout” setting for every image in the WP media library that allows you to manually set how an image will appear (1x1, landscape, portrait or 2x2), regardless of the original ratio.\";s:2:\"id\";s:20:\"masonry_width_double\";s:7:\"default\";s:4:\"2000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:200;s:3:\"max\";i:5120;s:4:\"step\";i:1;}s:12:\"full_refresh\";a:1:{s:28:\"masonry_width_double_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:15:\"isMasonryOnPage\";}}}}s:23:\"enable_language_updates\";a:6:{s:5:\"label\";s:33:\"Sprachaktualisierungen aktivieren\";s:11:\"description\";s:165:\"If your site is using a language other than English, enabling this option will allow you to get updated language files for your locale as soon as they are available.\";s:2:\"id\";s:23:\"enable_language_updates\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"dependencies_status\";a:6:{s:5:\"label\";s:40:\"Avada&#039;s Option Network Dependencies\";s:11:\"description\";s:381:\"Avada&#039;s Option Network consists of Global Options, Page Options and Builder Options and each of them have dependent options ON by default. This means the only options you see are the only ones currently available for your selection. However, if you wish to disable this feature, simply turn this option off, and all dependencies will be disabled (requires save &amp; refresh).\";s:2:\"id\";s:19:\"dependencies_status\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:27:\"disable_code_block_encoding\";a:6:{s:5:\"label\";s:19:\"Code Block Encoding\";s:11:\"description\";s:92:\"Turn on to enable encoding in the Avada Builder code block and syntax highlighting elements.\";s:2:\"id\";s:27:\"disable_code_block_encoding\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"disable_megamenu\";a:6:{s:5:\"label\";s:9:\"Mega Menu\";s:11:\"description\";s:46:\"Anschalten, um Avadas mega menu zu aktivieren.\";s:2:\"id\";s:16:\"disable_megamenu\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:31:\"theme_features_disable_megamenu\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:19:\"status_avada_studio\";a:6:{s:5:\"label\";s:12:\"Avada Studio\";s:11:\"description\";s:31:\"Turn on to enable Avada studio.\";s:2:\"id\";s:19:\"status_avada_studio\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"avada_rev_styles\";a:7:{s:5:\"label\";s:34:\"Avada Stile für Slider Revolution\";s:11:\"description\";s:80:\"Turn on to enable the Avada styles and use the default Slider Revolution styles.\";s:2:\"id\";s:16:\"avada_rev_styles\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:28:\"--avada-rev-image-shadow-top\";s:13:\"value_pattern\";s:91:\"url(\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/shadow-top.png\")\";s:7:\"element\";s:12:\".shadow-left\";}i:1;a:3:{s:4:\"name\";s:31:\"--avada-rev-image-shadow-bottom\";s:13:\"value_pattern\";s:94:\"url(\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/shadow-bottom.png\")\";s:7:\"element\";s:13:\".shadow-right\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-rev-slider-styles\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:12:\"avadaRevVars\";s:2:\"id\";s:16:\"avada_rev_styles\";s:7:\"trigger\";a:2:{i:0;s:15:\"DestoryRevStyle\";i:1;s:12:\"AddRevStyles\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"avada_styles_dropdowns\";a:6:{s:5:\"label\";s:20:\"Avada Dropdown Stile\";s:11:\"description\";s:154:\"Turn on to enable the Avada styles for dropdown/select fields site wide. This should be done if you experience any issues with 3rd party plugin dropdowns.\";s:2:\"id\";s:22:\"avada_styles_dropdowns\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:21:\"avada-dropdown-styles\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaSelectVars\";s:2:\"id\";s:15:\"avada_drop_down\";s:7:\"trigger\";a:2:{i:0;s:18:\"DestoryAvadaSelect\";i:1;s:14:\"AddAvadaSelect\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:27:\"disable_mobile_image_hovers\";a:6:{s:5:\"label\";s:37:\"CSS Image Hover Animations on Mobiles\";s:11:\"description\";s:56:\"Turn on to enable CSS image hover animations on mobiles.\";s:2:\"id\";s:27:\"disable_mobile_image_hovers\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"avadaMobileImageVars\";s:2:\"id\";s:27:\"disable_mobile_image_hovers\";s:7:\"trigger\";a:1:{i:0;s:32:\"fusionDeactivateMobileImagHovers\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:9:\"status_yt\";a:7:{s:5:\"label\";s:19:\"YouTube API Scripts\";s:11:\"description\";s:38:\"Turn on to enable YouTube API scripts.\";s:2:\"id\";s:9:\"status_yt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:6:\"output\";a:4:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"fusionVideoBgVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:22:\"fusionVideoGeneralVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:14:\"fusionBlogVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:12:\"status_vimeo\";a:7:{s:5:\"label\";s:17:\"Vimeo API Scripts\";s:11:\"description\";s:36:\"Turn on to enable Vimeo API scripts.\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:6:\"output\";a:3:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"fusionVideoBgVars\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:22:\"fusionVideoGeneralVars\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"status_gmap\";a:6:{s:5:\"label\";s:18:\"Google Map Skripte\";s:11:\"description\";s:29:\"Turn on to enable google map.\";s:2:\"id\";s:11:\"status_gmap\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"status_totop\";a:7:{s:5:\"label\";s:12:\"ToTop Script\";s:11:\"description\";s:81:\"Turn on to enable the ToTop script which adds the scrolling to top functionality.\";s:2:\"id\";s:12:\"status_totop\";s:7:\"default\";s:7:\"desktop\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:18:\"desktop_and_mobile\";s:20:\"Desktop &amp; Mobile\";s:7:\"desktop\";s:7:\"Desktop\";s:6:\"mobile\";s:5:\"Mobil\";s:3:\"off\";s:3:\"Aus\";}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:7:\"desktop\";i:1;s:16:\"does-not-contain\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:16:\"no-desktop-totop\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:14:\"avadaToTopVars\";s:2:\"id\";s:12:\"status_totop\";s:7:\"trigger\";a:1:{i:0;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"status_fontawesome\";a:8:{s:5:\"label\";s:12:\"Font Awesome\";s:11:\"description\";s:128:\"Choose which Font Awesome icon subsets you want to load. Note that Light subset can only be used if Font Awesome Pro is enabled.\";s:2:\"id\";s:18:\"status_fontawesome\";s:7:\"default\";a:3:{i:0;s:3:\"fab\";i:1;s:3:\"far\";i:2;s:3:\"fas\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:4:{s:3:\"fab\";s:6:\"Brands\";s:3:\"far\";s:8:\"regulär\";s:3:\"fas\";s:11:\"Durchgehend\";s:3:\"fal\";s:4:\"Hell\";}s:9:\"transport\";s:11:\"postMessage\";}s:28:\"fontawesome_v4_compatibility\";a:6:{s:5:\"label\";s:29:\"Font Awesome v4 Compatibility\";s:11:\"description\";s:62:\"Turn on to enable support for Font Awesome 4 icon code format.\";s:2:\"id\";s:28:\"fontawesome_v4_compatibility\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"status_fontawesome_pro\";a:6:{s:5:\"label\";s:16:\"Font Awesome Pro\";s:11:\"description\";s:260:\"Font Awesome Pro <a href=\"https://fontawesome.com/buy/standard\" target=\"_blank\" rel=\"noopener noreferrer\">license</a> is required and you need to <a href=\"https://fontawesome.com/account/cdn\" target=\"_blank\" rel=\"noopener noreferrer\">whitelist</a> your domain.\";s:2:\"id\";s:22:\"status_fontawesome_pro\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"status_outline\";a:6:{s:5:\"label\";s:12:\"CSS Outlines\";s:11:\"description\";s:86:\"Turn on to enable browser specific CSS element outlines used to improve accessibility.\";s:2:\"id\";s:14:\"status_outline\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:22:\"fusion-disable-outline\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"status_opengraph\";a:6:{s:5:\"label\";s:20:\"Open Graph Meta Tags\";s:11:\"description\";s:296:\"Turn on to enable open graph meta tags which are mainly used when sharing pages on social networking sites like Facebook. <strong>IMPORTANT:</strong> Some optimization plugins, like e.g. Yoast SEO, add their own implementation of this, and if you want to use that, this option should be disabled.\";s:2:\"id\";s:16:\"status_opengraph\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:31:\"disable_date_rich_snippet_pages\";a:6:{s:5:\"label\";s:13:\"Rich Snippets\";s:11:\"description\";s:172:\"Turn on to enable rich snippets data site wide. If set to &quot;On&quot;, you can also control individual items below. If set to &quot;Off&quot; all items will be disabled.\";s:2:\"id\";s:31:\"disable_date_rich_snippet_pages\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:26:\"disable_rich_snippet_title\";a:7:{s:5:\"label\";s:19:\"Rich Snippets Title\";s:11:\"description\";s:52:\"Turn on to enable title rich snippet data site wide.\";s:2:\"id\";s:26:\"disable_rich_snippet_title\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:27:\"disable_rich_snippet_author\";a:7:{s:5:\"label\";s:25:\"Rich Snippets Author Info\";s:11:\"description\";s:53:\"Turn on to enable author rich snippet data site wide.\";s:2:\"id\";s:27:\"disable_rich_snippet_author\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:25:\"disable_rich_snippet_date\";a:7:{s:5:\"label\";s:30:\"Rich Snippets Last Update Date\";s:11:\"description\";s:57:\"Turn on to enable udate date rich snippet data site wide.\";s:2:\"id\";s:25:\"disable_rich_snippet_date\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"disable_rich_snippet_faq\";a:7:{s:5:\"label\";s:17:\"Rich Snippets FAQ\";s:11:\"description\";s:54:\"Turn on to enable the FAQ rich snippet data site wide.\";s:2:\"id\";s:24:\"disable_rich_snippet_faq\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:34:\"enable_block_editor_backend_styles\";a:6:{s:5:\"label\";s:37:\"Enable WP Block Editor Backend Styles\";s:11:\"description\";s:77:\"Turn on to enable Avada&#039;s backend style support for the WP block editor.\";s:2:\"id\";s:34:\"enable_block_editor_backend_styles\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:17:\"load_block_styles\";a:7:{s:5:\"label\";s:26:\"Load Frontend Block Styles\";s:11:\"description\";s:126:\"Select &quot;Auto&quot; to automatically detect if there are blocks present in your page, and load block-styles in the footer.\";s:2:\"id\";s:17:\"load_block_styles\";s:7:\"default\";s:2:\"on\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"auto\";s:4:\"Auto\";s:2:\"on\";s:2:\"An\";s:3:\"off\";s:3:\"Aus\";}s:9:\"transport\";s:7:\"refresh\";}s:16:\"google_analytics\";a:7:{s:5:\"label\";s:13:\"Tracking Code\";s:11:\"description\";s:138:\"Füge deinen Tracking hier ein. Er wird ein die Kopfzeilenvorlage deines Themes eingebettet. Platziere Code innerhalb &lt;script&gt; tags.\";s:2:\"id\";s:16:\"google_analytics\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:300;s:5:\"theme\";s:6:\"chrome\";}s:9:\"transport\";s:11:\"postMessage\";}s:10:\"space_head\";a:7:{s:5:\"label\";s:29:\"Leerzeichen vor &lt;/head&gt;\";s:11:\"description\";s:121:\"Only accepts JavaScript code wrapped with &lt;script&gt; tags and HTML markup that is valid inside the &lt;/head&gt; tag.\";s:2:\"id\";s:10:\"space_head\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:350;s:5:\"theme\";s:6:\"chrome\";}s:9:\"transport\";s:11:\"postMessage\";}s:10:\"space_body\";a:7:{s:5:\"label\";s:29:\"Leerzeichen vor &lt;/body&gt;\";s:11:\"description\";s:114:\"Only accepts JavaScript code, wrapped with &lt;script&gt; tags and valid HTML markup inside the &lt;/body&gt; tag.\";s:2:\"id\";s:10:\"space_body\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:350;s:5:\"theme\";s:6:\"chrome\";}s:9:\"transport\";s:11:\"postMessage\";}s:20:\"status_fusion_slider\";a:6:{s:5:\"label\";s:12:\"Avada Slider\";s:11:\"description\";s:35:\"Turn on to enable the Avada Slider.\";s:2:\"id\";s:20:\"status_fusion_slider\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"status_eslider\";a:6:{s:5:\"label\";s:14:\"Elastic Slider\";s:11:\"description\";s:37:\"Turn on to enable the elastic slider.\";s:2:\"id\";s:14:\"status_eslider\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"status_fusion_forms\";a:6:{s:5:\"label\";s:15:\"Avada Formulare\";s:11:\"description\";s:34:\"Turn on to enable the Avada Forms.\";s:2:\"id\";s:19:\"status_fusion_forms\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"status_awb_Off_Canvas\";a:6:{s:5:\"label\";s:16:\"Avada Off Canvas\";s:11:\"description\";s:39:\"Turn on to enable the Avada Off Canvas.\";s:2:\"id\";s:21:\"status_awb_Off_Canvas\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"status_fusion_portfolio\";a:6:{s:5:\"label\";s:15:\"Avada Portfolio\";s:11:\"description\";s:38:\"Turn on to enable the Avada Portfolio.\";s:2:\"id\";s:23:\"status_fusion_portfolio\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:18:\"status_fusion_faqs\";a:6:{s:5:\"label\";s:10:\"Avada FAQs\";s:11:\"description\";s:33:\"Turn on to enable the Avada Faqs.\";s:2:\"id\";s:18:\"status_fusion_faqs\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:15:\"pw_jpeg_quality\";a:7:{s:5:\"label\";s:21:\"WordPress JPG Quality\";s:11:\"description\";s:471:\"Controls the quality of the generated image sizes for every uploaded image. Ranges between 0 and 100 percent. Higher values lead to better image qualities but also higher file sizes. <strong>NOTE:</strong> After changing this value, please install and run the <a target=\"_blank\" href=\"https://unternehmen.wir-noi.org/wp-admin/plugin-install.php?s=Regenerate+Thumbnails&tab=search&type=term\" title=\"Vorschaubilder neu erzeugen\">Vorschaubilder neu erzeugen</a> plugin once.\";s:2:\"id\";s:15:\"pw_jpeg_quality\";s:7:\"default\";s:2:\"82\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:9:\"transport\";s:11:\"postMessage\";}s:27:\"wp_big_image_size_threshold\";a:7:{s:5:\"label\";s:34:\"WordPress Big Image Size Threshold\";s:11:\"description\";s:207:\"Sets the threshold for image height and width, above which WordPress will scale down newly uploaded images to this values as max-width or max-height. Set to &quot;0&quot; to disable the threshold completely.\";s:2:\"id\";s:27:\"wp_big_image_size_threshold\";s:7:\"default\";s:4:\"2560\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"5000\";s:4:\"step\";s:1:\"1\";}s:9:\"transport\";s:11:\"postMessage\";}s:9:\"lazy_load\";a:7:{s:5:\"label\";s:24:\"Lazy Loading für Bilder\";s:11:\"description\";s:219:\"Choose your preferred lazy loading method for your website\'s images to improve performance. <strong>IMPORTANT:</strong> The WordPress native method can cause issues with dynamically loaded elements like image carousels.\";s:2:\"id\";s:9:\"lazy_load\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:5:\"avada\";s:5:\"Avada\";s:9:\"wordpress\";s:9:\"WordPress\";s:4:\"none\";s:5:\"Keine\";}s:9:\"transport\";s:11:\"postMessage\";}s:17:\"lazy_load_iframes\";a:7:{s:5:\"label\";s:19:\"Iframe Lazy Loading\";s:11:\"description\";s:91:\"Choose your preferred lazy loading method for your website\'s iframe to improve performance.\";s:2:\"id\";s:17:\"lazy_load_iframes\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:5:\"avada\";s:5:\"Avada\";s:9:\"wordpress\";s:9:\"WordPress\";s:4:\"none\";s:5:\"Keine\";}s:9:\"transport\";s:11:\"postMessage\";}s:17:\"font_face_display\";a:7:{s:5:\"label\";s:19:\"Font Face Rendering\";s:11:\"description\";s:315:\"Choose &quot;Swap All&quot; for faster rendering with possible flash of unstyled text (FOUT) or &quot;Block&quot; for clean rendering but longer wait time until first paint. &quot;Swap Non-Icon Fonts&quot; will use a mix of the first 2 methods (&quot;swap&quot; for text fonts and &quot;block&quot; for icon-fonts).\";s:2:\"id\";s:17:\"font_face_display\";s:7:\"default\";s:5:\"block\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:5:\"block\";s:10:\"Blockieren\";s:4:\"swap\";s:19:\"Swap Non-Icon Fonts\";s:8:\"swap-all\";s:13:\"Alle tauschen\";}s:9:\"transport\";s:11:\"postMessage\";}s:13:\"preload_fonts\";a:7:{s:5:\"label\";s:17:\"Preload Key Fonts\";s:11:\"description\";s:210:\"Make a selection to prioritize fetching resources that will be requested later in page load. This improves page load time as the browser caches preloaded resources so they are available immediately when needed.\";s:2:\"id\";s:13:\"preload_fonts\";s:7:\"default\";s:10:\"icon_fonts\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:3:\"all\";s:4:\"Alle\";s:12:\"google_fonts\";s:12:\"Google Fonts\";s:10:\"icon_fonts\";s:10:\"Icon Fonts\";s:4:\"none\";s:5:\"Keine\";}s:9:\"transport\";s:11:\"postMessage\";}s:22:\"preload_fonts_variants\";a:9:{s:5:\"label\";s:28:\"Preload Google Font Variants\";s:11:\"description\";s:99:\"Select the variants of Google fonts that should get preloaded. Leave empty to preload all variants.\";s:2:\"id\";s:22:\"preload_fonts_variants\";s:7:\"default\";s:3:\"400\";s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:17:{i:100;s:15:\"Ultra-Light 100\";s:10:\"100-italic\";s:22:\"Ultra-Light 100 Kursiv\";i:200;s:9:\"Light 200\";s:10:\"200-italic\";s:16:\"Light 200 Kursiv\";i:300;s:8:\"Book 300\";s:10:\"300-italic\";s:15:\"Book 300 Kursiv\";i:400;s:10:\"Normal 400\";s:10:\"400-italic\";s:17:\"Normal 400 Kursiv\";i:500;s:10:\"Medium 500\";s:10:\"500-italic\";s:17:\"Medium 500 Kursiv\";i:600;s:13:\"Semi-Bold 600\";s:10:\"600-italic\";s:20:\"Semi-Bold 600 Kursiv\";i:700;s:8:\"Bold 700\";s:10:\"700-italic\";s:15:\"Bold 700 Kursiv\";i:800;s:14:\"Extra-Bold 800\";s:10:\"900-italic\";s:21:\"Ultra-Bold 900 Kursiv\";i:900;s:14:\"Ultra-Bold 900\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}i:1;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:10:\"icon_fonts\";}}s:9:\"transport\";s:11:\"postMessage\";}s:21:\"preload_fonts_subsets\";a:9:{s:5:\"label\";s:27:\"Preload Google Font Subsets\";s:11:\"description\";s:97:\"Select the subsets of Google fonts that should get preloaded. Leave empty to preload all subsets.\";s:2:\"id\";s:21:\"preload_fonts_subsets\";s:7:\"default\";s:5:\"latin\";s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:28:{s:6:\"arabic\";s:5:\"Latin\";s:7:\"bengali\";s:7:\"Bengali\";s:16:\"chinese-hongkong\";s:16:\"Chinese Hongkong\";s:18:\"chinese-simplified\";s:18:\"Chinese Simplified\";s:19:\"chinese-traditional\";s:19:\"Chinese Traditional\";s:8:\"cyrillic\";s:8:\"Cyrillic\";s:12:\"cyrillic-ext\";s:17:\"Cyrillic Extended\";s:10:\"devanagari\";s:10:\"Devanagari\";s:5:\"greek\";s:5:\"Greek\";s:9:\"greek-ext\";s:14:\"Greek Extended\";s:8:\"gujarati\";s:8:\"Gujarati\";s:8:\"gurmukhi\";s:8:\"Gurmukhi\";s:6:\"hebrew\";s:6:\"Hebrew\";s:8:\"japanese\";s:8:\"Japanese\";s:7:\"kannada\";s:7:\"Kannada\";s:5:\"khmer\";s:5:\"Khmer\";s:6:\"korean\";s:6:\"Korean\";s:5:\"latin\";s:5:\"Latin\";s:9:\"latin-ext\";s:14:\"Latin Extended\";s:9:\"malayalam\";s:9:\"Malayalam\";s:7:\"myanmar\";s:7:\"Myanmar\";s:5:\"oriya\";s:5:\"Oriya\";s:7:\"sinhala\";s:7:\"Sinhala\";s:5:\"tamil\";s:5:\"Tamil\";s:6:\"telugu\";s:6:\"Telugu\";s:4:\"thai\";s:4:\"Thai\";s:7:\"tibetan\";s:7:\"Tibetan\";s:10:\"vietnamese\";s:10:\"Vietnamese\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}i:1;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:10:\"icon_fonts\";}}s:9:\"transport\";s:11:\"postMessage\";}s:15:\"emojis_disabled\";a:7:{s:5:\"label\";s:13:\"Emojis Script\";s:11:\"description\";s:99:\"If you don&#039;t use emojis you can improve performance by removing WordPress&#039; emojis script.\";s:2:\"id\";s:15:\"emojis_disabled\";s:7:\"default\";s:7:\"enabled\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"enabled\";s:10:\"Aktivieren\";s:8:\"disabled\";s:12:\"Deaktivieren\";}s:9:\"transport\";s:11:\"postMessage\";}s:23:\"jquery_migrate_disabled\";a:7:{s:5:\"label\";s:21:\"jQuery Migrate Script\";s:11:\"description\";s:100:\"If you are not using any deprecated jQuery code, you can disable this script to improve performance.\";s:2:\"id\";s:23:\"jquery_migrate_disabled\";s:7:\"default\";s:7:\"enabled\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"enabled\";s:10:\"Aktivieren\";s:8:\"disabled\";s:12:\"Deaktivieren\";}s:9:\"transport\";s:11:\"postMessage\";}s:12:\"defer_jquery\";a:6:{s:5:\"label\";s:21:\"Load jQuery In Footer\";s:11:\"description\";s:228:\"Set to &#039;on&#039; to defer loading of jQuery to the footer of the page.  This will only take effect if no other jQuery dependent scripts are added to the head. Turning this on can cause JS scripts to break, use with caution.\";s:2:\"id\";s:12:\"defer_jquery\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"defer_styles\";a:6:{s:5:\"label\";s:26:\"Load Stylesheets In Footer\";s:11:\"description\";s:238:\"Set to &#039;on&#039; to defer loading of the stylesheets to the footer of the page. This improves page load time by making the styles non-render-blocking. Depending on the connection speed, a flash of unstyled content (FOUC) might occur.\";s:2:\"id\";s:12:\"defer_styles\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"gzip_status\";a:6:{s:5:\"label\";s:23:\"Enable Gzip Compression\";s:11:\"description\";s:176:\"Set to \'on\' to add Gzip Compression rules to the .htaccess file. <strong>IMPORTANT:</strong> This option works only on Apache web servers with mod_gzip and mod_deflate enabled.\";s:2:\"id\";s:11:\"gzip_status\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"video_facade\";a:7:{s:5:\"label\";s:19:\"Enable Video Facade\";s:11:\"description\";s:160:\"Use video facade in order to load video player only when video is played. <strong>IMPORTANT:</strong> This option is only applied to YouTube and Vimeo elements.\";s:2:\"id\";s:12:\"video_facade\";s:7:\"default\";s:3:\"off\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:2:\"on\";s:2:\"An\";s:3:\"off\";s:3:\"Aus\";}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"dynamic_compiler_section\";a:4:{s:5:\"label\";s:24:\"Dynamisches CSS &amp; JS\";s:2:\"id\";s:24:\"dynamic_compiler_section\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:16:\"css_cache_method\";a:7:{s:5:\"label\";s:20:\"CSS Compiling Method\";s:11:\"description\";s:281:\"Select &quot;File&quot; mode to compile the dynamic CSS to files (a separate file will be created for each of your pages &amp; posts inside of the uploads/fusion-styles folder), &quot;Database&quot; mode to cache the CSS in your database, or select &quot;Disabled&quot; to disable.\";s:2:\"id\";s:16:\"css_cache_method\";s:7:\"default\";s:4:\"file\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"file\";s:5:\"Datei\";s:2:\"db\";s:9:\"Datenbank\";s:3:\"off\";s:11:\"Deaktiviert\";}s:9:\"transport\";s:11:\"postMessage\";}s:30:\"css_combine_third_party_assets\";a:7:{s:5:\"label\";s:29:\"Combine Third Party CSS Files\";s:11:\"description\";s:449:\"When enabled, third party CSS files will be combined into Avada\'s main stylesheet. Plugins affected are WooCommerce, The Events Calendar, Slider Revolution, ConvertPlus, Contact Form 7 and bbPress. <strong>IMPORTANT:</strong> Enabling this option is not recommended when you are are using third party file combining services, like cache plugins. <strong>NOTE:</strong> When this option is changed, Avada Caches have to be reset for changes to apply.\";s:2:\"id\";s:30:\"css_combine_third_party_assets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"css_cache_method\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"file\";}}}s:19:\"media_queries_async\";a:6:{s:5:\"label\";s:39:\"Load Media-Queries Files Asynchronously\";s:11:\"description\";s:140:\"When enabled, the CSS media-queries will be enqueued separately and then loaded asynchronously, improving performance on mobile and desktop.\";s:2:\"id\";s:19:\"media_queries_async\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"critical_css\";a:6:{s:5:\"label\";s:19:\"Enable Critical CSS\";s:11:\"description\";s:125:\"Set to \'on\' to enable the generation of critical CSS. Once enabled, a critical CSS page will be added to the Avada dashboard.\";s:2:\"id\";s:12:\"critical_css\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:15:\"cache_server_ip\";a:6:{s:5:\"label\";s:15:\"Cache Server IP\";s:11:\"description\";s:201:\"For unique cases where you are using CloudFlare and a cache server, ex: varnish cache. Enter your cache server IP to clear the Global Options dynamic CSS cache. Consult with your server admin for help.\";s:2:\"id\";s:15:\"cache_server_ip\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"js_compiler\";a:6:{s:5:\"label\";s:21:\"Aktiviere JS Compiler\";s:11:\"description\";s:174:\"By default all the JavaScript files are combined. Disabling the JS compiler will load non-combined JavaScript files. This will have an impact on the performance of your site.\";s:2:\"id\";s:11:\"js_compiler\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"pwa_section\";a:4:{s:5:\"label\";s:19:\"Progressive Web App\";s:2:\"id\";s:11:\"pwa_section\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:19:\"pwa_required_notice\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:389:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> To use the Avada PWA feature you need to install and activate the latest version of the PWA plugin. Please <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-plugins\">visit the Avada Plugins page</a> to install and activate the plugin and then refresh Global Options to edit the options.</div>\";s:2:\"id\";s:19:\"pwa_required_notice\";s:4:\"type\";s:6:\"custom\";}s:10:\"custom_css\";a:6:{s:5:\"label\";s:8:\"CSS Code\";s:11:\"description\";s:338:\"Gib Deinen CSS Code in das nachfolgende Feld ein. Füge keine Tags oder HTML in das Feld ein. Das hier eingegebene benutzerdefinierte CSS überschreibt das CSS des Designs. In einigen Fällen kann der <code>!important</code> Tag benötigt werden. Keine Bild- oder SVG Pfade encodieren. Der Inhalt dieses Feldes wird automatisch encodiert.\";s:2:\"id\";s:10:\"custom_css\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:5:{s:8:\"language\";s:3:\"css\";s:6:\"height\";i:450;s:5:\"theme\";s:6:\"chrome\";s:8:\"minLines\";i:40;s:8:\"maxLines\";i:50;}}s:17:\"shortcode_styling\";a:3:{s:5:\"label\";s:22:\"Avada Builder Elemente\";s:2:\"id\";s:17:\"shortcode_styling\";s:4:\"icon\";s:23:\"fusiona-element-options\";}s:9:\"import_to\";a:6:{s:5:\"label\";s:27:\"Importiere globale Optionen\";s:11:\"description\";s:99:\"Import Global Options. You can import via file, copy and paste or select an Avada prebuilt website.\";s:2:\"id\";s:9:\"import_to\";s:4:\"type\";s:6:\"import\";s:5:\"demos\";a:0:{}s:7:\"context\";s:2:\"TO\";}s:9:\"export_to\";a:6:{s:5:\"label\";s:27:\"Exportiere globale Optionen\";s:11:\"description\";s:77:\"Export your Global Options. You can either export as a file or copy the data.\";s:2:\"id\";s:9:\"export_to\";s:4:\"type\";s:6:\"export\";s:7:\"context\";s:2:\"TO\";s:4:\"text\";s:27:\"Exportiere globale Optionen\";}}','no'),(16606,'_transient_timeout_fusion_tos','1646323503','no');
+INSERT INTO `wp_options` VALUES (16607,'_transient_fusion_tos','a:30:{s:6:\"layout\";a:6:{s:5:\"label\";s:6:\"Layout\";s:2:\"id\";s:14:\"heading_layout\";s:8:\"priority\";i:1;s:4:\"icon\";s:15:\"el-icon-website\";s:8:\"alt_icon\";s:15:\"fusiona-browser\";s:6:\"fields\";a:14:{s:6:\"layout\";a:7:{s:5:\"label\";s:6:\"Layout\";s:11:\"description\";s:30:\"Kontrolliert das Seitenlayout.\";s:2:\"id\";s:6:\"layout\";s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"boxed\";s:10:\"Eingerahmt\";s:4:\"wide\";s:5:\"Breit\";}s:6:\"output\";a:4:{i:0;a:6:{s:7:\"element\";s:4:\"html\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:11:\"toLowerCase\";b:1;s:13:\"value_pattern\";s:19:\"avada-html-layout-$\";s:12:\"remove_attrs\";a:2:{i:0;s:23:\"avada-html-layout-boxed\";i:1;s:22:\"avada-html-layout-wide\";}}i:1;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:11:\"toLowerCase\";b:1;s:13:\"value_pattern\";s:13:\"layout-$-mode\";s:12:\"remove_attrs\";a:2:{i:0;s:17:\"layout-boxed-mode\";i:1;s:16:\"layout-wide-mode\";}}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:11:\"site_layout\";s:7:\"trigger\";a:1:{i:0;s:22:\"fusionPositionSubmenus\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:11:\"layout_mode\";s:7:\"trigger\";a:2:{i:0;s:21:\"fusionSliderReTrigger\";i:1;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"site_width\";a:10:{s:5:\"label\";s:12:\"Seitenbreite\";s:11:\"description\";s:40:\"Kontrolliert die generelle Seitenbreite.\";s:2:\"id\";s:10:\"site_width\";s:7:\"default\";s:6:\"1200px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:4:\"desc\";s:0:\"\";s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:12:\"--site_width\";}i:1;a:2:{s:4:\"name\";s:16:\"--site_width-int\";s:8:\"callback\";a:2:{i:0;s:23:\"convert_font_size_to_px\";i:1;s:0:\"\";}}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:1:\"%\";i:1;s:8:\"contains\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:28:\"avada-has-site-width-percent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:4:\"100%\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:32:\"avada-has-site-width-100-percent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionTypographyVars\";s:2:\"id\";s:10:\"site_width\";s:7:\"trigger\";a:1:{i:0;s:20:\"fusionInitTypography\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:3:{s:36:\"site_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:35:\"site_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:17:\"site_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:13:\"margin_offset\";a:9:{s:5:\"label\";s:28:\"Boxed Mode Top/Bottom Offset\";s:11:\"description\";s:55:\"Controls the top/bottom offset of the boxed background.\";s:2:\"id\";s:13:\"margin_offset\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:7:\"default\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"boxed\";}}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:19:\"--margin_offset-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:22:\"--margin_offset-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:3:{s:4:\"name\";s:30:\"--margin_offset-top-no-percent\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vh\";}}}i:3;a:3:{s:4:\"name\";s:33:\"--margin_offset-bottom-no-percent\";s:6:\"choice\";s:6:\"bottom\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vh\";}}}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"is-zero-or-empty\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:32:\"avada-has-zero-margin-offset-top\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"scroll_offset\";a:8:{s:5:\"label\";s:29:\"Boxed Mode Offset Scroll Mode\";s:11:\"description\";s:145:\"Choose how the page will scroll. Framed scrolling will keep the offset in place, while Full scrolling removes the offset when scrolling the page.\";s:2:\"id\";s:13:\"scroll_offset\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:6:\"framed\";s:16:\"Framed Scrolling\";s:4:\"full\";s:14:\"Full Scrolling\";}s:7:\"default\";s:4:\"full\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"boxed\";}}s:6:\"output\";a:3:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:3:\"===\";i:1;s:6:\"framed\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:24:\"avada-html-layout-framed\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:11:\"toLowerCase\";b:1;s:13:\"value_pattern\";s:22:\"layout-scroll-offset-$\";s:12:\"remove_attrs\";a:2:{i:0;s:27:\"layout-scroll-offset-framed\";i:1;s:25:\"layout-scroll-offset-full\";}}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:13:\"scroll_offset\";s:7:\"trigger\";a:1:{i:0;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"boxed_modal_shadow\";a:8:{s:5:\"label\";s:22:\"Boxed Mode Shadow Type\";s:11:\"description\";s:53:\"Controls the type of shadow your boxed mode displays.\";s:2:\"id\";s:18:\"boxed_modal_shadow\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:4:\"none\";s:13:\"Kein Schatten\";s:5:\"light\";s:17:\"Leichter Schatten\";s:6:\"medium\";s:18:\"Mittlerer Schatten\";s:4:\"hard\";s:15:\"Harter Schatten\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"boxed\";}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:30:\"avada-has-boxed-modal-shadow-$\";s:12:\"remove_attrs\";a:4:{i:0;s:33:\"avada-has-boxed-modal-shadow-none\";i:1;s:34:\"avada-has-boxed-modal-shadow-light\";i:2;s:35:\"avada-has-boxed-modal-shadow-medium\";i:3;s:33:\"avada-has-boxed-modal-shadow-hard\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:12:\"main_padding\";a:7:{s:5:\"label\";s:26:\"Seiten Inhalt Innenabstand\";s:11:\"description\";s:45:\"Oberer/unterer Abstand für den Seiteninhalt.\";s:2:\"id\";s:12:\"main_padding\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:7:\"default\";a:2:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"60px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:3:{i:0;a:2:{s:4:\"name\";s:18:\"--main_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:26:\"--main_padding-top-or-55px\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:26:\"fallback_to_value_if_empty\";i:1;s:4:\"55px\";}}i:2;a:2:{s:4:\"name\";s:21:\"--main_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}}}s:16:\"hundredp_padding\";a:7:{s:5:\"label\";s:24:\"100% Breite Innenabstand\";s:11:\"description\";s:179:\"Controls the left and right padding for page content when using 100% site width, 100% width page template or 100% width post option. This does not affect Avada Builder containers.\";s:2:\"id\";s:16:\"hundredp_padding\";s:7:\"default\";s:4:\"30px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:4:{i:0;a:1:{s:4:\"name\";s:18:\"--hundredp_padding\";}i:1;a:2:{s:4:\"name\";s:35:\"--hundredp_padding-fallback_to_zero\";s:8:\"callback\";s:16:\"fallback_to_zero\";}i:2;a:2:{s:4:\"name\";s:38:\"--hundredp_padding-fallback_to_zero_px\";s:8:\"callback\";a:2:{i:0;s:26:\"fallback_to_value_if_empty\";i:1;s:3:\"0px\";}}i:3;a:2:{s:4:\"name\";s:50:\"--hundredp_padding-hundred_percent_negative_margin\";s:8:\"callback\";a:2:{i:0;s:31:\"hundred_percent_negative_margin\";i:1;s:0:\"\";}}}}s:27:\"single_sidebar_layouts_info\";a:4:{s:5:\"label\";s:29:\"Einzelnes Seitenleiste Layout\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"single_sidebar_layouts_info\";s:4:\"type\";s:4:\"info\";}s:13:\"sidebar_width\";a:7:{s:5:\"label\";s:28:\"Einzelne Seitenleiste Breite\";s:11:\"description\";s:68:\"Steuert die Breite der Sidebar, wenn nur eine Sidebar vorhanden ist.\";s:2:\"id\";s:13:\"sidebar_width\";s:7:\"default\";s:3:\"24%\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:15:\"--sidebar_width\";}}}s:14:\"sidebar_gutter\";a:6:{s:5:\"label\";s:29:\"Einzelne Seitenleiste Abstand\";s:11:\"description\";s:78:\"Steuert den Abstand zwischen dem Hauptinhalt und einer einzelnen Seitenleiste.\";s:2:\"id\";s:14:\"sidebar_gutter\";s:7:\"default\";s:2:\"6%\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--sidebar_gutter\";}}}s:25:\"dual_sidebar_layouts_info\";a:4:{s:5:\"label\";s:27:\"Duales Seitenleisten Layout\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"dual_sidebar_layouts_info\";s:4:\"type\";s:4:\"info\";}s:17:\"sidebar_2_1_width\";a:7:{s:5:\"label\";s:26:\"Dual Seitenleiste Breite 1\";s:11:\"description\";s:63:\"Controls the width of sidebar 1 when dual sidebars are present.\";s:2:\"id\";s:17:\"sidebar_2_1_width\";s:7:\"default\";s:3:\"20%\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--sidebar_2_1_width\";}}}s:17:\"sidebar_2_2_width\";a:7:{s:5:\"label\";s:26:\"Dual Seitenleiste Breite 2\";s:11:\"description\";s:63:\"Controls the width of sidebar 2 when dual sidebars are present.\";s:2:\"id\";s:17:\"sidebar_2_2_width\";s:7:\"default\";s:3:\"20%\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--sidebar_2_2_width\";}}}s:19:\"dual_sidebar_gutter\";a:6:{s:5:\"label\";s:25:\"Dual Seitenleiste Abstand\";s:11:\"description\";s:107:\"Steuert den Abstand zwischen dem Hauptinhalt und den Seitenleisten, wenn zwei Seitenleisten vorhanden sind.\";s:2:\"id\";s:19:\"dual_sidebar_gutter\";s:7:\"default\";s:2:\"4%\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:21:\"--dual_sidebar_gutter\";}}}}}s:6:\"mobile\";a:6:{s:5:\"label\";s:10:\"Responsive\";s:2:\"id\";s:6:\"mobile\";s:8:\"priority\";i:2;s:4:\"icon\";s:25:\"el-icon-resize-horizontal\";s:8:\"alt_icon\";s:14:\"fusiona-mobile\";s:6:\"fields\";a:13:{s:10:\"responsive\";a:6:{s:5:\"label\";s:17:\"Responsive Design\";s:11:\"description\";s:87:\"Turn on to use the responsive design features. If set to off, the fixed layout is used.\";s:2:\"id\";s:10:\"responsive\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{i:1;s:2:\"An\";i:0;s:3:\"Aus\";}}s:21:\"grid_main_break_point\";a:9:{s:5:\"label\";s:26:\"Grid Responsive Breakpoint\";s:11:\"description\";s:121:\"Controls when grid layouts (blog/portfolio) start to break into smaller columns. Further breakpoints are auto calculated.\";s:2:\"id\";s:21:\"grid_main_break_point\";s:7:\"default\";s:4:\"1000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:3:\"360\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:23:\"--grid_main_break_point\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"side_header_break_point\";a:9:{s:5:\"label\";s:28:\"Header Responsive Breakpoint\";s:11:\"description\";s:62:\"Controls when the desktop header changes to the mobile header.\";s:2:\"id\";s:23:\"side_header_break_point\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:25:\"--side_header_break_point\";}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"content_break_point\";a:9:{s:5:\"label\";s:34:\"Site Content Responsive Breakpoint\";s:11:\"description\";s:130:\"Controls when the site content area changes to the mobile layout. This includes all content below the header including the footer.\";s:2:\"id\";s:19:\"content_break_point\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:21:\"--content_break_point\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"sidebar_break_point\";a:8:{s:5:\"label\";s:29:\"Sidebar Responsive Breakpoint\";s:11:\"description\";s:51:\"Controls when sidebars change to the mobile layout.\";s:2:\"id\";s:19:\"sidebar_break_point\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"2000\";s:4:\"step\";s:1:\"1\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusionRecalcAllMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"mobile_zoom\";a:8:{s:5:\"label\";s:18:\"Mobile Device Zoom\";s:11:\"description\";s:50:\"Turn on to enable pinch to zoom on mobile devices.\";s:2:\"id\";s:11:\"mobile_zoom\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:7:\"choices\";a:2:{s:2:\"on\";s:2:\"An\";s:3:\"off\";s:3:\"Aus\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:41:\"element_responsive_breakpoints_info_title\";a:5:{s:5:\"label\";s:30:\"Element Responsive Breakpoints\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:41:\"element_responsive_breakpoints_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:16:\"visibility_small\";a:8:{s:5:\"label\";s:12:\"Small Screen\";s:11:\"description\";s:73:\"Controls when the small screen options and visibility should take effect.\";s:2:\"id\";s:16:\"visibility_small\";s:7:\"default\";s:3:\"640\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:4:\"2000\";}s:11:\"option_name\";s:14:\"fusion_options\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:34:\"fusionRecalcVisibilityMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"visibility_medium\";a:8:{s:5:\"label\";s:13:\"Medium Screen\";s:11:\"description\";s:74:\"Controls when the medium screen options and visibility should take effect.\";s:2:\"id\";s:17:\"visibility_medium\";s:7:\"default\";s:4:\"1024\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:4:\"2000\";}s:11:\"option_name\";s:14:\"fusion_options\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:34:\"fusionRecalcVisibilityMediaQueries\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"visibility_large\";a:7:{s:5:\"label\";s:12:\"Large Screen\";s:11:\"description\";s:100:\"Any screen larger than that which is defined as the medium screen will be counted as a large screen.\";s:2:\"id\";s:16:\"visibility_large\";s:10:\"full_width\";b:0;s:4:\"type\";s:3:\"raw\";s:7:\"content\";s:59:\"<div id=\"fusion-visibility-large\">> <span>1024</span></div>\";s:11:\"option_name\";s:14:\"fusion_options\";}s:32:\"responsive_typography_info_title\";a:5:{s:5:\"label\";s:21:\"Responsive Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:32:\"responsive_typography_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:22:\"typography_sensitivity\";a:9:{s:5:\"label\";s:33:\"Responsive Typography Sensitivity\";s:11:\"description\";s:83:\"Set to 0 to disable responsive typography. Increase the value for a greater effect.\";s:2:\"id\";s:22:\"typography_sensitivity\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:3:\".01\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionTypographyVars\";s:2:\"id\";s:22:\"typography_sensitivity\";s:7:\"trigger\";a:1:{i:0;s:20:\"fusionInitTypography\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:24:\"--typography_sensitivity\";}}}s:17:\"typography_factor\";a:9:{s:5:\"label\";s:24:\"Minimum Font Size Factor\";s:11:\"description\";s:112:\"The minimum font-size of elements affected by responsive typography is body font-size multiplied by this factor.\";s:2:\"id\";s:17:\"typography_factor\";s:7:\"default\";s:3:\"1.5\";s:4:\"type\";s:6:\"slider\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"4\";s:4:\"step\";s:3:\".01\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionTypographyVars\";s:2:\"id\";s:17:\"typography_factor\";s:7:\"trigger\";a:1:{i:0;s:20:\"fusionInitTypography\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--typography_factor\";}}}}}s:6:\"colors\";a:6:{s:5:\"label\";s:6:\"Farben\";s:2:\"id\";s:6:\"colors\";s:8:\"priority\";i:3;s:4:\"icon\";s:13:\"el-icon-brush\";s:8:\"alt_icon\";s:21:\"fusiona-color-dropper\";s:6:\"fields\";a:2:{s:13:\"color_palette\";a:5:{s:5:\"label\";s:13:\"Color Palette\";s:11:\"description\";s:537:\"Set your global color palette. The colors defined here can be used from other global options, from page options and element options. For best results, the 8 colors of the core palette should be set from lightest to darkest. <strong>IMPORTANT NOTE:</strong> If a global color that is used by other options gets deleted, these corresponding options will display a default color instead. Colors are internally stored with a fixed counter. Thus, adding a new color after deleting an old one, will set the same internal name to the new color.\";s:2:\"id\";s:13:\"color_palette\";s:7:\"default\";a:8:{s:6:\"color1\";a:2:{s:5:\"color\";s:19:\"rgba(255,255,255,1)\";s:5:\"label\";s:7:\"Color 1\";}s:6:\"color2\";a:2:{s:5:\"color\";s:19:\"rgba(249,249,251,1)\";s:5:\"label\";s:7:\"Color 2\";}s:6:\"color3\";a:2:{s:5:\"color\";s:19:\"rgba(242,243,245,1)\";s:5:\"label\";s:7:\"Color 3\";}s:6:\"color4\";a:2:{s:5:\"color\";s:19:\"rgba(101,189,125,1)\";s:5:\"label\";s:7:\"Color 4\";}s:6:\"color5\";a:2:{s:5:\"color\";s:18:\"rgba(25,143,217,1)\";s:5:\"label\";s:7:\"Color 5\";}s:6:\"color6\";a:2:{s:5:\"color\";s:16:\"rgba(67,69,73,1)\";s:5:\"label\";s:7:\"Color 6\";}s:6:\"color7\";a:2:{s:5:\"color\";s:16:\"rgba(33,35,38,1)\";s:5:\"label\";s:7:\"Color 7\";}s:6:\"color8\";a:2:{s:5:\"color\";s:16:\"rgba(20,22,23,1)\";s:5:\"label\";s:7:\"Color 8\";}}s:4:\"type\";s:13:\"color-palette\";}s:13:\"primary_color\";a:6:{s:5:\"label\";s:10:\"Grundfarbe\";s:11:\"description\";s:57:\"Controls the main highlight color throughout the website.\";s:2:\"id\";s:13:\"primary_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:6:{i:0;a:2:{s:4:\"name\";s:15:\"--primary_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:19:\"--primary_color-85a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.85\";}}i:2;a:2:{s:4:\"name\";s:18:\"--primary_color-7a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.7\";}}i:3;a:2:{s:4:\"name\";s:18:\"--primary_color-5a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.5\";}}i:4;a:2:{s:4:\"name\";s:19:\"--primary_color-35a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.35\";}}i:5;a:2:{s:4:\"name\";s:18:\"--primary_color-2a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.2\";}}}}}}s:6:\"header\";a:7:{s:5:\"label\";s:9:\"Kopfzeile\";s:2:\"id\";s:14:\"heading_header\";s:8:\"is_panel\";b:1;s:8:\"priority\";i:3;s:4:\"icon\";s:16:\"el-icon-arrow-up\";s:8:\"alt_icon\";s:14:\"fusiona-header\";s:6:\"fields\";a:4:{s:13:\"header_info_1\";a:8:{s:5:\"label\";s:18:\"Kopfbereich Inhalt\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:13:\"header_info_1\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:0;s:6:\"fields\";a:11:{s:44:\"header_global_header_template_content_notice\";a:4:{s:2:\"id\";s:44:\"header_global_header_template_content_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:15:\"header_position\";a:8:{s:5:\"label\";s:26:\"Position des Kopfbereiches\";s:11:\"description\";s:205:\"Controls the position of the header to be in the top, left or right of the site. The main menu height, header padding and logo margin options will auto adjust based off your selection for ideal aesthetics.\";s:2:\"id\";s:15:\"header_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:3:\"top\";s:4:\"Oben\";s:4:\"left\";s:5:\"Links\";s:5:\"right\";s:6:\"Rechts\";}s:15:\"partial_refresh\";a:2:{s:34:\"header_position_remove_before_hook\";a:3:{s:8:\"selector\";s:112:\".avada-hook-before-header-wrapper, .fusion-header-wrapper, #side-header-sticky, #side-header, #sliders-container\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:34:\"header_position_replace_after_hook\";a:4:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:15:\"header_position\";}s:21:\"success_trigger_event\";s:40:\"header-rendered fusion-partial-wooslider\";}}s:6:\"output\";a:3:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:15:\"header_position\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:21:\"avadaFusionSliderVars\";s:2:\"id\";s:15:\"header_position\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:1:{s:11:\"js_callback\";a:1:{i:0;s:22:\"change_header_position\";}}}}s:13:\"header_layout\";a:10:{s:5:\"label\";s:27:\"Wähle das Kopfzeilenlayout\";s:11:\"description\";s:322:\"Controls the general layout of the header. Headers 2-5 allow additional content areas via the header content options 1-3. Header 6 only allows parent level menu items, no child levels will display. The main menu height, header padding and logo margin options will auto adjust based off your selection for ideal aesthetics.\";s:2:\"id\";s:13:\"header_layout\";s:7:\"default\";s:2:\"v3\";s:4:\"type\";s:11:\"radio-image\";s:7:\"choices\";a:7:{s:2:\"v1\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header1.jpg\";s:2:\"v2\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header2.jpg\";s:2:\"v3\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header3.jpg\";s:2:\"v4\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header4.jpg\";s:2:\"v5\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header5.jpg\";s:2:\"v6\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header6.jpg\";s:2:\"v7\";s:90:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/header7.jpg\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:15:\"partial_refresh\";a:3:{s:47:\"header_content_header_layout_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:46:\"header_content_header_layout_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:28:\"header_content_header_layout\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:14:\".fusion-header\";i:1;s:33:\"#side-header .side-header-wrapper\";}s:9:\"shortcuts\";a:3:{i:0;a:4:{s:10:\"aria_label\";s:18:\"Edit Header Layout\";s:4:\"icon\";s:14:\"fusiona-header\";s:11:\"open_parent\";b:1;s:5:\"order\";i:1;}i:1;a:5:{s:10:\"aria_label\";s:18:\"Slider hinzufügen\";s:4:\"icon\";s:15:\"fusiona-uniF61C\";s:4:\"link\";s:1:\"#\";s:9:\"css_class\";s:10:\"add-slider\";s:5:\"order\";i:4;}i:2;a:5:{s:10:\"aria_label\";s:18:\"Add Page Title Bar\";s:4:\"icon\";s:18:\"fusiona-page_title\";s:4:\"link\";s:1:\"#\";s:9:\"css_class\";s:7:\"add-ptb\";s:5:\"order\";i:5;}}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:22:\"fusion-header-layout-$\";s:12:\"remove_attrs\";a:7:{i:0;s:23:\"fusion-header-layout-v1\";i:1;s:23:\"fusion-header-layout-v2\";i:2;s:23:\"fusion-header-layout-v3\";i:3;s:23:\"fusion-header-layout-v4\";i:4;s:23:\"fusion-header-layout-v5\";i:5;s:23:\"fusion-header-layout-v6\";i:6;s:23:\"fusion-header-layout-v7\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:13:\"header_layout\";s:7:\"trigger\";a:1:{i:0;s:31:\"fusionReSettStickySidebarStatus\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"slider_position\";a:9:{s:5:\"label\";s:15:\"Slider Position\";s:11:\"description\";s:58:\"Controls if the slider displays below or above the header.\";s:2:\"id\";s:15:\"slider_position\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"below\";s:8:\"Darunter\";s:5:\"above\";s:8:\"Darüber\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:9:\"transport\";s:11:\"postMessage\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:22:\"change_slider_position\";i:1;a:1:{s:7:\"element\";s:18:\"#sliders-container\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"header_left_content\";a:9:{s:5:\"label\";s:25:\"Inhalt für Kopfbereich 1\";s:11:\"description\";s:59:\"Controls the content that displays in the top left section.\";s:2:\"id\";s:19:\"header_left_content\";s:7:\"default\";s:12:\"social_links\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:12:\"contact_info\";s:20:\"Kontaktinformationen\";s:12:\"social_links\";s:12:\"Social Links\";s:10:\"navigation\";s:10:\"Navigation\";s:11:\"leave_empty\";s:11:\"Leer lassen\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:15:\"partial_refresh\";a:3:{s:53:\"header_content_header_left_content_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:52:\"header_content_header_left_content_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:34:\"header_content_header_left_content\";a:4:{s:8:\"selector\";s:57:\".fusion-header-wrapper, #side-header-sticky, #side-header\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:22:\"header-rendered resize\";}}}s:20:\"header_right_content\";a:9:{s:5:\"label\";s:25:\"Inhalt für Kopfbereich 2\";s:11:\"description\";s:60:\"Controls the content that displays in the top right section.\";s:2:\"id\";s:20:\"header_right_content\";s:7:\"default\";s:10:\"navigation\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:12:\"contact_info\";s:20:\"Kontaktinformationen\";s:12:\"social_links\";s:12:\"Social Links\";s:10:\"navigation\";s:10:\"Navigation\";s:11:\"leave_empty\";s:11:\"Leer lassen\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:15:\"partial_refresh\";a:3:{s:54:\"header_content_header_right_content_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:53:\"header_content_header_right_content_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:35:\"header_content_header_right_content\";a:4:{s:8:\"selector\";s:57:\".fusion-header-wrapper, #side-header-sticky, #side-header\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:22:\"header-rendered resize\";}}}s:17:\"header_v4_content\";a:9:{s:5:\"label\";s:25:\"Inhalt für Kopfbereich 3\";s:11:\"description\";s:63:\"Controls the content that displays in the middle right section.\";s:2:\"id\";s:17:\"header_v4_content\";s:7:\"default\";s:18:\"tagline_and_search\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:7:\"tagline\";s:7:\"Tagline\";s:6:\"search\";s:5:\"Suche\";s:18:\"tagline_and_search\";s:18:\"Tagline And Search\";s:6:\"banner\";s:6:\"Banner\";s:4:\"none\";s:11:\"Leer lassen\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}}s:15:\"partial_refresh\";a:3:{s:51:\"header_content_header_v4_content_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:50:\"header_content_header_v4_content_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:32:\"header_content_header_v4_content\";a:4:{s:8:\"selector\";s:57:\".fusion-header-wrapper, #side-header-sticky, #side-header\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:22:\"header-rendered resize\";}}}s:13:\"header_number\";a:8:{s:5:\"label\";s:39:\"Telefonnummer für Kontaktinformationen\";s:11:\"description\";s:115:\"This content will display if you have &quot;Contact Info&quot; selected for the Header Content 1 or 2 option above.\";s:2:\"id\";s:13:\"header_number\";s:7:\"default\";s:28:\"Call Us Today! 1.555.555.555\";s:4:\"type\";s:4:\"text\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:33:\".fusion-contact-info-phone-number\";s:8:\"function\";s:4:\"html\";}}}s:12:\"header_email\";a:8:{s:5:\"label\";s:40:\"E-Mail-Adresse für Kontaktinformationen\";s:11:\"description\";s:115:\"This content will display if you have &quot;Contact Info&quot; selected for the Header Content 1 or 2 option above.\";s:2:\"id\";s:12:\"header_email\";s:7:\"default\";s:19:\"info@yourdomain.com\";s:4:\"type\";s:4:\"text\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:34:\".fusion-contact-info-email-address\";s:8:\"function\";s:4:\"html\";s:13:\"value_pattern\";s:24:\"<a href=\"mailto:$\">$</a>\";}}}s:14:\"header_tagline\";a:8:{s:5:\"label\";s:26:\"Tagline für Kopfbereich 3\";s:11:\"description\";s:105:\"This content will display if you have &quot;Tagline&quot; selected for the Header Content 3 option above.\";s:2:\"id\";s:14:\"header_tagline\";s:7:\"default\";s:19:\"Insert Tagline Here\";s:4:\"type\";s:8:\"textarea\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:8:\"contains\";s:5:\"value\";s:7:\"tagline\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:2;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:8:\"contains\";s:5:\"value\";s:7:\"tagline\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:22:\".fusion-header-tagline\";s:8:\"function\";s:4:\"html\";}}}s:18:\"header_banner_code\";a:9:{s:5:\"label\";s:29:\"Bannercode für Kopfbereich 3\";s:11:\"description\";s:194:\"This content will display if you have &quot;Banner&quot; selected for the Header Content 3 option above. Add HTML banner code for Header Content 3. Elements, like buttons, can be used here also.\";s:2:\"id\";s:18:\"header_banner_code\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:2:{s:8:\"language\";s:4:\"html\";s:5:\"theme\";s:6:\"chrome\";}s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"banner\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:2;a:3:{s:7:\"setting\";s:17:\"header_v4_content\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"banner\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:15:\"partial_refresh\";a:1:{s:26:\"header_content_banner_code\";a:4:{s:8:\"selector\";s:32:\".fusion-header-content-3-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:22:\"avada_header_content_3\";s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}}}s:13:\"header_info_2\";a:8:{s:5:\"label\";s:33:\"Hintergrundbild des Kopfbereiches\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:13:\"header_info_2\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:0;s:6:\"fields\";a:5:{s:39:\"header_global_header_template_bg_notice\";a:4:{s:2:\"id\";s:39:\"header_global_header_template_bg_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:15:\"header_bg_image\";a:8:{s:5:\"label\";s:39:\"Hintergrundbild für den  Kopfbereiches\";s:11:\"description\";s:384:\"Select an image for the header background. If left empty, the header background color will be used. For top headers the image displays on top of the header background color and will only display if header background color opacity is set to 1. For side headers the image displays behind the header background color so the header background opacity must be set below 1 to see the image.\";s:2:\"id\";s:15:\"header_bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--header_bg_image\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:0:\"\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:25:\"avada-has-header-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:14:\"header_bg_full\";a:7:{s:5:\"label\";s:20:\"100% Hintergrundbild\";s:11:\"description\";s:109:\"Turn on to have the header background image display at 100% in width and height according to the window size.\";s:2:\"id\";s:14:\"header_bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:24:\"avada-has-header-bg-full\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"header_bg_parallax\";a:7:{s:5:\"label\";s:24:\"Parallax Hintergrundbild\";s:11:\"description\";s:103:\"Turn on to use a parallax scrolling effect on the background image. Only works for top header position.\";s:2:\"id\";s:18:\"header_bg_parallax\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:2;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:3;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:28:\"avada-has-header-bg-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"header_bg_repeat\";a:9:{s:5:\"label\";s:23:\"Hintergrund wiederholen\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:16:\"header_bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:16:\"Alle Wiederholen\";s:8:\"repeat-x\";s:22:\"Horizontal Wiederholen\";s:8:\"repeat-y\";s:20:\"Vertikal Wiederholen\";s:9:\"no-repeat\";s:18:\"Keine Wiederholung\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:15:\"header_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:18:\"--header_bg_repeat\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"avada-header-bg-$\";s:12:\"remove_attrs\";a:4:{i:0;s:22:\"avada-header-bg-repeat\";i:1;s:24:\"avada-header-bg-repeat-x\";i:2;s:24:\"avada-header-bg-repeat-y\";i:3;s:25:\"avada-header-bg-no-repeat\";}}}}}}s:14:\"header_styling\";a:8:{s:5:\"label\";s:22:\"Kopfbereich Gestaltung\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:14:\"header_styling\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:0;s:6:\"fields\";a:11:{s:44:\"header_global_header_template_styling_notice\";a:4:{s:2:\"id\";s:44:\"header_global_header_template_styling_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:17:\"side_header_width\";a:9:{s:5:\"label\";s:55:\"Breite des Kopfbereiches für die linke/rechte Position\";s:11:\"description\";s:52:\"Controls the width of the left or right side header.\";s:2:\"id\";s:17:\"side_header_width\";s:7:\"default\";s:3:\"280\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"800\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:19:\"--side_header_width\";s:13:\"value_pattern\";s:3:\"$px\";}i:1;a:1:{s:4:\"name\";s:23:\"--side_header_width-int\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:5:\"dummy\";s:2:\"id\";s:5:\"dummy\";s:7:\"trigger\";a:1:{i:0;s:6:\"resize\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:14:\"header_padding\";a:8:{s:5:\"label\";s:25:\"Kopfbereich Innen Abstand\";s:11:\"description\";s:58:\"Controls the top/right/bottom/left padding for the header.\";s:2:\"id\";s:14:\"header_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:20:\"--header_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:23:\"--header_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:21:\"--header_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:22:\"--header_padding-right\";s:6:\"choice\";s:5:\"right\";}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:18:\"header_padding_top\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:6:\"bottom\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:21:\"header_padding_bottom\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"header_shadow\";a:6:{s:5:\"label\";s:26:\"Schatten des Kopfbereiches\";s:11:\"description\";s:40:\"Turn on to display a header drop shadow.\";s:2:\"id\";s:13:\"header_shadow\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:55:\".fusion-top-header .fusion-header-wrapper, #side-header\";s:9:\"className\";s:20:\"fusion-header-shadow\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"header_100_width\";a:7:{s:5:\"label\";s:29:\"100% Breite des Kopfbereiches\";s:11:\"description\";s:114:\"Turn on to have the header area display at 100% width according to the window size. Turn off to follow site width.\";s:2:\"id\";s:16:\"header_100_width\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:6:\"layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"wide\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:26:\"avada-has-header-100-width\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"header_bg_color\";a:7:{s:5:\"label\";s:28:\"Kopfbereich Hintergrundfarbe\";s:11:\"description\";s:288:\"Controls the background color and opacity for the header. For top headers, opacity set below 1 will remove the header height completely. For side headers, opacity set below 1 will display a color overlay. Transparent headers are disabled on all archive pages due to technical limitations.\";s:2:\"id\";s:15:\"header_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--header_bg_color\";s:7:\"element\";s:27:\"#side-header,.fusion-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:17:\"header-not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:29:\"avada-header-color-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"archive_header_bg_color\";a:7:{s:5:\"label\";s:31:\"Archive Header Background Color\";s:11:\"description\";s:247:\"Controls the background color and opacity for the header on archive pages, search page and 404 page. For top headers, opacity set below 1 will remove the header height completely. For side headers, opacity set below 1 will display a color overlay.\";s:2:\"id\";s:23:\"archive_header_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--archive_header_bg_color\";s:7:\"element\";s:27:\"#side-header,.fusion-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:17:\"header-not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:29:\"avada-header-color-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"header_border_color\";a:9:{s:5:\"label\";s:29:\"Rahmenfarbe des Kopfbereiches\";s:11:\"description\";s:117:\"Controls the border colors for the header. If using left or right header position it controls the menu divider lines.\";s:2:\"id\";s:19:\"header_border_color\";s:7:\"default\";s:19:\"rgba(226,226,226,0)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--header_border_color\";s:7:\"element\";s:35:\".fusion-header-wrapper,#side-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:42:\"avada-header-border-color-full-transparent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"header_top_bg_color\";a:8:{s:5:\"label\";s:41:\"Hintergrundfarbe des oberen Kopfbereiches\";s:11:\"description\";s:86:\"Steuert die Hintergrundfarbe des in Überschriften 2-5 genutzten oberen Kopfbereiches.\";s:2:\"id\";s:19:\"header_top_bg_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v1\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--header_top_bg_color\";s:7:\"element\";s:24:\".fusion-secondary-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:10:\"not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:30:\"avada-header-top-bg-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"tagline_font_size\";a:9:{s:5:\"label\";s:41:\"Schriftgrösse der Tagline im Kopfbereich\";s:11:\"description\";s:64:\"Controls the font size for the tagline text when using header 4.\";s:2:\"id\";s:17:\"tagline_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--tagline_font_size\";s:7:\"element\";s:22:\".fusion-header-tagline\";}}}s:18:\"tagline_font_color\";a:8:{s:5:\"label\";s:38:\"Schriftfarbe des Tagline Kopfbereiches\";s:11:\"description\";s:65:\"Controls the font color for the tagline text when using header 4.\";s:2:\"id\";s:18:\"tagline_font_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--tagline_font_color\";s:7:\"element\";s:22:\".fusion-header-tagline\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:13:\"sticky_header\";a:8:{s:5:\"label\";s:18:\"Fixierte Kopfzeile\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:13:\"sticky_header\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:0;s:6:\"fields\";a:11:{s:43:\"header_global_header_template_sticky_notice\";a:4:{s:2:\"id\";s:43:\"header_global_header_template_sticky_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:13:\"header_sticky\";a:7:{s:5:\"label\";s:18:\"Fixierte Kopfzeile\";s:11:\"description\";s:34:\"Turn on to enable a sticky header.\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"default\";i:1;s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:3:{s:40:\"header_content_sticky_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:39:\"header_content_sticky_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:21:\"header_content_sticky\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:43:\"fusion-reinit-sticky-header header-rendered\";}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"fusion-sticky-header\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:13:\"header_sticky\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"header_sticky_tablet\";a:7:{s:5:\"label\";s:30:\"Fixierte Kopfzeile auf Tablets\";s:11:\"description\";s:60:\"Turn on to enable a sticky header when scrolling on tablets.\";s:2:\"id\";s:20:\"header_sticky_tablet\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:23:\"no-tablet-sticky-header\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"header_sticky_tablet\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:20:\"header_sticky_tablet\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:20:\"header_sticky_tablet\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"header_sticky_mobile\";a:7:{s:5:\"label\";s:36:\"Fixierte Kopfzeile auf Mobilgeräten\";s:11:\"description\";s:60:\"Turn on to enable a sticky header when scrolling on mobiles.\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:4:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:23:\"no-mobile-sticky-header\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:17:\"avadaSidebarsVars\";s:2:\"id\";s:20:\"header_sticky_mobile\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"header_sticky_shrinkage\";a:7:{s:5:\"label\";s:28:\"Fixierte Kopfzeile Animation\";s:11:\"description\";s:124:\"Turn on to allow the sticky header to animate to a smaller height when activated. Only works with header v1 - v3, v6 and v7.\";s:2:\"id\";s:23:\"header_sticky_shrinkage\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:22:\"avada-sticky-shrinkage\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"header_sticky_type2_layout\";a:8:{s:5:\"label\";s:40:\"Sticky Header Display For Headers 4 - 5 \";s:11:\"description\";s:70:\"Controls what displays in the sticky header when using header v4 - v5.\";s:2:\"id\";s:26:\"header_sticky_type2_layout\";s:7:\"default\";s:9:\"menu_only\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:9:\"menu_only\";s:9:\"Nur Menü\";s:13:\"menu_and_logo\";s:22:\"Menü und Logo Bereich\";}s:8:\"required\";a:7:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v1\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v2\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v3\";}i:5;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:6;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v7\";}}s:15:\"partial_refresh\";a:3:{s:45:\"header_sticky_type2_layout_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:44:\"header_sticky_type2_layout_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:33:\"header_sticky_type2_layout_layout\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:43:\"fusion-reinit-sticky-header header-rendered\";}}}s:20:\"header_sticky_shadow\";a:7:{s:5:\"label\";s:20:\"Sticky Header Shadow\";s:11:\"description\";s:47:\"Turn on to display a sticky header drop shadow.\";s:2:\"id\";s:20:\"header_sticky_shadow\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"header_sticky_shadow\";s:7:\"trigger\";a:2:{i:0;s:5:\"ready\";i:1;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:14:\".fusion-header\";s:9:\"className\";s:20:\"fusion-sticky-shadow\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"header_sticky_bg_color\";a:8:{s:5:\"label\";s:30:\"Sticky Header Background Color\";s:11:\"description\";s:52:\"Controls the background color for the sticky header.\";s:2:\"id\";s:22:\"header_sticky_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--header_sticky_bg_color\";s:7:\"element\";s:53:\".fusion-arrow-svg,.fusion-header-wrapper,#side-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:9:\"globalVar\";s:19:\"fusionContainerVars\";s:2:\"id\";s:28:\"is_sticky_header_transparent\";s:7:\"trigger\";a:2:{i:0;s:6:\"resize\";i:1;s:46:\"fusion-element-render-fusion_builder_container\";}s:8:\"callback\";s:25:\"fusionReturnColorAlphaInt\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"header_sticky_menu_color\";a:7:{s:5:\"label\";s:29:\"Sticky Header Menu Font Color\";s:11:\"description\";s:59:\"Controls the color for main menu text in the sticky header.\";s:2:\"id\";s:24:\"header_sticky_menu_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--header_sticky_menu_color\";s:7:\"element\";s:17:\".fusion-main-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"header_sticky_nav_padding\";a:8:{s:5:\"label\";s:52:\"Abstand der Menüelemente des fixierten Kopfbereichs\";s:11:\"description\";s:63:\"Controls the space between each menu item in the sticky header.\";s:2:\"id\";s:25:\"header_sticky_nav_padding\";s:7:\"default\";s:2:\"35\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:27:\"--header_sticky_nav_padding\";s:7:\"element\";s:41:\".fusion-main-menu,.fusion-logo-background\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:27:\"header_sticky_nav_font_size\";a:8:{s:5:\"label\";s:57:\"Schriftgrösse der Navigation des fixierten Kopfbereiches\";s:11:\"description\";s:62:\"Controls the font size of the menu items in the sticky header.\";s:2:\"id\";s:27:\"header_sticky_nav_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_sticky\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";i:0;}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:29:\"--header_sticky_nav_font_size\";s:7:\"element\";s:17:\".fusion-main-menu\";}}}}}}}s:4:\"menu\";a:6:{s:5:\"label\";s:5:\"Menü\";s:2:\"id\";s:20:\"heading_menu_section\";s:8:\"priority\";i:1;s:4:\"icon\";s:13:\"el-icon-lines\";s:8:\"alt_icon\";s:12:\"fusiona-bars\";s:6:\"fields\";a:6:{s:12:\"heading_menu\";a:6:{s:5:\"label\";s:10:\"Hauptmenü\";s:2:\"id\";s:12:\"heading_menu\";s:8:\"priority\";i:6;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:0;s:6:\"fields\";a:30:{s:34:\"menu_global_header_template_notice\";a:4:{s:2:\"id\";s:34:\"menu_global_header_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:10:\"nav_height\";a:11:{s:5:\"label\";s:16:\"Hauptmenü Höhe\";s:11:\"description\";s:155:\"Kontrolliert die Menühöhe.<span id=\"fusion-menu-height-hint\" style=\"display:inline\">  Um an Logogröße anzupassen setze auf <strong>370</strong>.</span>\";s:2:\"id\";s:10:\"nav_height\";s:7:\"default\";s:2:\"94\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"300\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"--nav_height\";s:7:\"element\";s:17:\".fusion-main-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:10:\"nav_height\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:14:\".fusion-header\";i:1;s:33:\"#side-header .side-header-wrapper\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:20:\"Hauptmenu bearbeiten\";s:4:\"link\";s:73:\"https://unternehmen.wir-noi.org/wp-admin/nav-menus.php?action=edit&menu=3\";s:5:\"order\";i:3;}}}}s:20:\"menu_highlight_style\";a:10:{s:5:\"label\";s:27:\"Hauptmenu Hervorhebungsstil\";s:11:\"description\";s:508:\"Controls the highlight style for main menu links and also affects the look of menu dropdowns. Arrow style cannot work with a transparent header background. Bar highlights will display vertically on side header layouts. <strong>IMPORTANT:</strong> Arrow & Background style can require configuration of other options depending on desired effect. <a href=\"https://theme-fusion.com/documentation/avada/main-menu-highlight-styles/\" target=\"_blank\" rel=\"noopener noreferrer\">See this post for more information</a>.\";s:2:\"id\";s:20:\"menu_highlight_style\";s:7:\"default\";s:3:\"bar\";s:7:\"choices\";a:5:{s:3:\"bar\";s:12:\"Obere Leiste\";s:9:\"bottombar\";s:13:\"Untere Leiste\";s:5:\"arrow\";s:5:\"Pfeil\";s:10:\"background\";s:11:\"Hintergrund\";s:9:\"textcolor\";s:9:\"Nur Farbe\";}s:4:\"type\";s:6:\"select\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:6:\"output\";a:2:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:28:\"avada-menu-highlight-style-$\";s:12:\"remove_attrs\";a:5:{i:0;s:30:\"avada-menu-highlight-style-bar\";i:1;s:36:\"avada-menu-highlight-style-bottombar\";i:2;s:32:\"avada-menu-highlight-style-arrow\";i:3;s:37:\"avada-menu-highlight-style-background\";i:4;s:36:\"avada-menu-highlight-style-textcolor\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:19:\"nav_highlight_style\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:3:{s:46:\"menu_highlight_style_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:45:\"menu_highlight_style_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:27:\"menu_highlight_style_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:25:\"menu_highlight_background\";a:8:{s:5:\"label\";s:36:\"Main Menu Highlight Background Color\";s:11:\"description\";s:53:\"Controls the background color of main menu highlight.\";s:2:\"id\";s:25:\"menu_highlight_background\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:10:\"background\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:10:\"background\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--menu_highlight_background\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:15:\"menu_arrow_size\";a:9:{s:5:\"label\";s:23:\"Hauptmenü Pfeilgrösse\";s:11:\"description\";s:53:\"Controls the width and height of the main menu arrow.\";s:2:\"id\";s:15:\"menu_arrow_size\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"23px\";s:6:\"height\";s:4:\"12px\";}s:4:\"type\";s:10:\"dimensions\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"arrow\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"arrow\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:3:{i:0;a:2:{s:4:\"name\";s:23:\"--menu_arrow_size-width\";s:6:\"choice\";s:5:\"width\";}i:1;a:2:{s:4:\"name\";s:24:\"--menu_arrow_size-height\";s:6:\"choice\";s:6:\"height\";}i:2;a:3:{s:4:\"name\";s:55:\"--menu_arrow_size-width-header_border_color_condition_5\";s:6:\"choice\";s:5:\"width\";s:8:\"callback\";a:2:{i:0;s:31:\"header_border_color_condition_5\";i:1;s:0:\"\";}}}}s:20:\"nav_highlight_border\";a:10:{s:5:\"label\";s:51:\"Grösse des hervorgehobenen Balkens des Hauptmenüs\";s:11:\"description\";s:44:\"Controls the size of the menu highlight bar.\";s:2:\"id\";s:20:\"nav_highlight_border\";s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"40\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:38:\"fusion-gutter-and-or-and-or-and-or-and\";s:8:\"required\";a:8:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:4;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:5;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:6;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:7;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--nav_highlight_border\";s:13:\"value_pattern\";s:3:\"$px\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;s:1:\"0\";}}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:20:\"nav_highlight_border\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:5:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:10:\"nav_height\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}s:9:\"condition\";a:5:{i:0;s:20:\"menu_highlight_style\";i:1;s:3:\"===\";i:2;s:3:\"bar\";i:3;s:1:\"$\";i:4;s:1:\"0\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"nav_padding\";a:8:{s:5:\"label\";s:25:\"Abstand der Menüelemente\";s:11:\"description\";s:55:\"Controls the right padding for menu text (left on RTL).\";s:2:\"id\";s:11:\"nav_padding\";s:7:\"default\";s:2:\"48\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:13:\"--nav_padding\";s:13:\"value_pattern\";s:3:\"$px\";}i:1;a:2:{s:4:\"name\";s:21:\"--nav_padding-no-zero\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:3:\"$px\";i:1;s:0:\"\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:11:\"nav_padding\";i:1;s:2:\"==\";i:2;s:1:\"0\";}}}}}}}s:18:\"mobile_nav_padding\";a:8:{s:5:\"label\";s:32:\"Main Menu Item Padding On Mobile\";s:11:\"description\";s:110:\"Controls the right padding for menu text (left on RTL) when the normal desktop menu is used on mobile devices.\";s:2:\"id\";s:18:\"mobile_nav_padding\";s:7:\"default\";s:2:\"25\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--mobile_nav_padding\";s:7:\"element\";s:17:\".fusion-main-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:15:\"megamenu_shadow\";a:8:{s:5:\"label\";s:21:\"Main Menu Drop Shadow\";s:11:\"description\";s:51:\"Turn on to display a drop shadow on menu dropdowns.\";s:2:\"id\";s:15:\"megamenu_shadow\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:25:\"avada-has-megamenu-shadow\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:28:\"main_menu_sub_menu_animation\";a:9:{s:5:\"label\";s:40:\"Main Menu Dropdown / Mega Menu Animation\";s:11:\"description\";s:46:\"Controls the animation type for all sub-menus.\";s:2:\"id\";s:28:\"main_menu_sub_menu_animation\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:4:\"fade\";s:7:\"choices\";a:2:{s:4:\"fade\";s:10:\"Verblassen\";s:5:\"slide\";s:5:\"Folie\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"fusion-sub-menu-$\";s:12:\"remove_attrs\";a:2:{i:0;s:20:\"fusion-sub-menu-fade\";i:1;s:21:\"fusion-sub-menu-slide\";}}}s:29:\"dropdown_menu_top_border_size\";a:9:{s:5:\"label\";s:34:\"Main Menu Dropdown Top Border Size\";s:11:\"description\";s:58:\"Controls top border size of dropdown menus and mega menus.\";s:2:\"id\";s:29:\"dropdown_menu_top_border_size\";s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:38:\"fusion-gutter-and-or-and-or-and-or-and\";s:8:\"required\";a:8:{i:0;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"bar\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:4;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:5;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:6;a:3:{s:7:\"setting\";s:20:\"menu_highlight_style\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"bottombar\";}i:7;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--dropdown_menu_top_border_size\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:19:\"dropdown_menu_width\";a:9:{s:5:\"label\";s:30:\"Breite des Hauptmenü Dropdown\";s:11:\"description\";s:35:\"Controls the width of the dropdown.\";s:2:\"id\";s:19:\"dropdown_menu_width\";s:7:\"default\";s:3:\"200\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--dropdown_menu_width\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:34:\"mainmenu_dropdown_vertical_padding\";a:9:{s:5:\"label\";s:31:\"Main Menu Dropdown Item Padding\";s:11:\"description\";s:56:\"Controls the top/bottom padding for dropdown menu items.\";s:2:\"id\";s:34:\"mainmenu_dropdown_vertical_padding\";s:7:\"default\";s:2:\"12\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:36:\"--mainmenu_dropdown_vertical_padding\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:33:\"mainmenu_dropdown_display_divider\";a:8:{s:5:\"label\";s:25:\"Hauptmenu Dropdown Teiler\";s:11:\"description\";s:57:\"Turn on to display a divider line on dropdown menu items.\";s:2:\"id\";s:33:\"mainmenu_dropdown_display_divider\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:35:\"avada-has-mainmenu-dropdown-divider\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:31:\"menu_display_dropdown_indicator\";a:9:{s:5:\"label\";s:28:\"Hauptmenu Dropdown Indikator\";s:11:\"description\";s:68:\"Turn on to display arrow indicators next to parent level menu items.\";s:2:\"id\";s:31:\"menu_display_dropdown_indicator\";s:7:\"default\";s:4:\"none\";s:7:\"choices\";a:3:{s:6:\"parent\";s:13:\"Übergeordnet\";s:12:\"parent_child\";s:13:\"Eltern + Kind\";s:4:\"none\";s:5:\"Keine\";}s:4:\"type\";s:6:\"select\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:15:\"partial_refresh\";a:3:{s:57:\"header_menu_display_dropdown_indicator_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:56:\"header_menu_display_dropdown_indicator_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:38:\"header_menu_display_dropdown_indicator\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:20:\"main_nav_search_icon\";a:7:{s:5:\"label\";s:27:\"Hauptmenu Symbol für Suche\";s:11:\"description\";s:52:\"Turn on to display the search icon in the main menu.\";s:2:\"id\";s:20:\"main_nav_search_icon\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:3:{s:46:\"header_main_nav_search_icon_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:45:\"header_main_nav_search_icon_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:27:\"header_main_nav_search_icon\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:30:\"avada-has-main-nav-search-icon\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"main_nav_search_layout\";a:9:{s:5:\"label\";s:22:\"Hauptmenu Suche Layout\";s:11:\"description\";s:55:\"Controls the layout of the search bar in the main menu.\";s:2:\"id\";s:22:\"main_nav_search_layout\";s:7:\"default\";s:7:\"overlay\";s:7:\"choices\";a:2:{s:8:\"dropdown\";s:8:\"Dropdown\";s:7:\"overlay\";s:12:\"Menu Overlay\";}s:4:\"type\";s:15:\"radio-buttonset\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:20:\"main_nav_search_icon\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:15:\"partial_refresh\";a:1:{s:30:\"main_nav_search_layout_refresh\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:8:\"dropdown\";i:1;s:7:\"overlay\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";a:2:{i:0;s:32:\"fusion-main-menu-search-dropdown\";i:1;s:31:\"fusion-main-menu-search-overlay\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"main_nav_icon_circle\";a:6:{s:5:\"label\";s:29:\"Main Menu Icon Circle Borders\";s:11:\"description\";s:64:\"Turn on to display a circle border on the cart and search icons.\";s:2:\"id\";s:20:\"main_nav_icon_circle\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"fusion-has-main-nav-icon-circle\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"main_nav_highlight_radius\";a:6:{s:5:\"label\";s:27:\"Menu Highlight Label Radius\";s:11:\"description\";s:61:\"Controls the border radius of all your menu highlight labels.\";s:2:\"id\";s:25:\"main_nav_highlight_radius\";s:7:\"default\";s:3:\"2px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--main_nav_highlight_radius\";s:7:\"element\";s:28:\".fusion-menu-highlight-label\";}}}s:17:\"menu_sub_bg_color\";a:8:{s:5:\"label\";s:35:\"Main Menu Dropdown Background Color\";s:11:\"description\";s:56:\"Controls the background color of the main menu dropdown.\";s:2:\"id\";s:17:\"menu_sub_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--menu_sub_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"menu_bg_hover_color\";a:8:{s:5:\"label\";s:41:\"Main Menu Dropdown Background Hover Color\";s:11:\"description\";s:62:\"Controls the background hover color of the main menu dropdown.\";s:2:\"id\";s:19:\"menu_bg_hover_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--menu_bg_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"menu_sub_sep_color\";a:9:{s:5:\"label\";s:34:\"Main Menu Dropdown Separator Color\";s:11:\"description\";s:63:\"Controls the color of the separators in the main menu dropdown.\";s:2:\"id\";s:18:\"menu_sub_sep_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--menu_sub_sep_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";a:3:{i:0;s:76:\".fusion-main-menu .fusion-main-menu-search .fusion-custom-menu-item-contents\";i:1;s:74:\".fusion-main-menu .fusion-main-menu-cart .fusion-custom-menu-item-contents\";i:2;s:74:\".fusion-main-menu .fusion-menu-login-box .fusion-custom-menu-item-contents\";}s:8:\"property\";s:6:\"border\";s:11:\"js_callback\";a:2:{i:0;s:31:\"fusionReturnStringIfTransparent\";i:1;a:2:{s:11:\"transparent\";s:1:\"0\";s:6:\"opaque\";s:0:\"\";}}s:17:\"sanitize_callback\";a:2:{i:0;s:22:\"Avada_Output_Callbacks\";i:1;s:18:\"menu_sub_sep_color\";}}}}s:17:\"menu_h45_bg_color\";a:8:{s:5:\"label\";s:59:\"Hintergrundfarbe des Hauptmenüs für Kopfbereich 4 &amp; 5\";s:11:\"description\";s:72:\"Controls the background color of the main menu when using header 4 or 5.\";s:2:\"id\";s:17:\"menu_h45_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--menu_h45_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"main_menu_typography_info\";a:4:{s:5:\"label\";s:20:\"Main Menu Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"main_menu_typography_info\";s:4:\"type\";s:4:\"info\";}s:14:\"nav_typography\";a:8:{s:2:\"id\";s:14:\"nav_typography\";s:5:\"label\";s:16:\"Menus Typography\";s:11:\"description\";s:72:\"These settings control the typography for all main menu top-level items.\";s:4:\"type\";s:10:\"typography\";s:5:\"class\";s:17:\"avada-no-fontsize\";s:7:\"choices\";a:5:{s:11:\"font-family\";b:1;s:11:\"font-weight\";b:1;s:9:\"font-size\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:5:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:8:\"css_vars\";a:8:{i:0;a:3:{s:4:\"name\";s:28:\"--nav_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:14:\"nav_typography\";}}i:1;a:3:{s:4:\"name\";s:28:\"--nav_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:26:\"--nav_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:3;a:2:{s:4:\"name\";s:27:\"--nav_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:4;a:3:{s:4:\"name\";s:31:\"--nav_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:5;a:2:{s:4:\"name\";s:22:\"--nav_typography-color\";s:6:\"choice\";s:5:\"color\";}i:6;a:3:{s:4:\"name\";s:26:\"--nav_typography-color-65a\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;d:0.65;}}i:7;a:3:{s:4:\"name\";s:26:\"--nav_typography-color-35a\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;d:0.35;}}}}s:15:\"menu_text_align\";a:11:{s:5:\"label\";s:20:\"Main Menu Text Align\";s:11:\"description\";s:75:\"Controls the main menu text alignment for top headers 4-5 and side headers.\";s:2:\"id\";s:15:\"menu_text_align\";s:7:\"default\";s:6:\"center\";s:7:\"choices\";a:3:{s:4:\"left\";s:5:\"Links\";s:6:\"center\";s:9:\"Zentriert\";s:5:\"right\";s:6:\"Rechts\";}s:4:\"type\";s:6:\"select\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v5\";}i:2;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:17:\"--menu_text_align\";s:7:\"element\";s:17:\".fusion-main-menu\";}}s:6:\"output\";a:3:{i:0;a:0:{}i:1;a:0:{}i:2;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"menu-text-align-$\";s:12:\"remove_attrs\";a:3:{i:0;s:20:\"menu-text-align-left\";i:1;s:22:\"menu-text-align-center\";i:2;s:21:\"menu-text-align-right\";}}}s:15:\"partial_refresh\";a:3:{s:41:\"menu_text_align_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:40:\"menu_text_align_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:22:\"menu_text_align_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:22:\"menu_hover_first_color\";a:6:{s:5:\"label\";s:33:\"Main Menu Font Hover/Active Color\";s:11:\"description\";s:97:\"Controls the color for main menu text hover and active states, highlight bar and dropdown border.\";s:2:\"id\";s:22:\"menu_hover_first_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:24:\"--menu_hover_first_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:28:\"--menu_hover_first_color-65a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.65\";}}}}s:14:\"menu_sub_color\";a:8:{s:5:\"label\";s:29:\"Main Menu Dropdown Font Color\";s:11:\"description\";s:47:\"Controls the color for main menu dropdown text.\";s:2:\"id\";s:14:\"menu_sub_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--menu_sub_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"nav_dropdown_font_size\";a:9:{s:5:\"label\";s:38:\"Schriftgrösse des Hauptmenü Dropdown\";s:11:\"description\";s:51:\"Controls the font size for main menu dropdown text.\";s:2:\"id\";s:22:\"nav_dropdown_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:24:\"--nav_dropdown_font_size\";}}}s:18:\"side_nav_font_size\";a:7:{s:5:\"label\";s:25:\"Side Navigation Font Size\";s:11:\"description\";s:86:\"Controls the font size for the menu text when using the side navigation page template.\";s:2:\"id\";s:18:\"side_nav_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--side_nav_font_size\";s:7:\"element\";s:9:\".side-nav\";}}}}}s:22:\"flyout_menu_subsection\";a:5:{s:5:\"label\";s:11:\"Flyout Menu\";s:2:\"id\";s:22:\"flyout_menu_subsection\";s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:0;s:6:\"fields\";a:8:{s:31:\"flyout_menu_important_note_info\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:224:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Flyout Menu Options are only available when using Header Layout #6 or Mobile Flyout Menu. Your current setup does not utilize the flyout menu.</div>\";s:2:\"id\";s:31:\"flyout_menu_important_note_info\";s:4:\"type\";s:6:\"custom\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:3;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}}s:26:\"flyout_menu_icon_font_size\";a:9:{s:5:\"label\";s:26:\"Flyout Menu Icon Font Size\";s:11:\"description\";s:49:\"Controls the font size for the flyout menu icons.\";s:2:\"id\";s:26:\"flyout_menu_icon_font_size\";s:7:\"default\";s:4:\"20px\";s:4:\"type\";s:9:\"dimension\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:28:\"--flyout_menu_icon_font_size\";}i:1;a:2:{s:4:\"name\";s:31:\"--flyout_menu_icon_font_size_px\";s:8:\"callback\";a:1:{i:0;s:11:\"units_to_px\";}}}}s:24:\"flyout_nav_icons_padding\";a:9:{s:5:\"label\";s:24:\"Flyout Menu Icon Padding\";s:11:\"description\";s:63:\"Controls the right padding for flyout menu icons (left on RTL).\";s:2:\"id\";s:24:\"flyout_nav_icons_padding\";s:7:\"default\";s:2:\"32\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--flyout_nav_icons_padding\";s:7:\"element\";s:25:\".fusion-flyout-menu-icons\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"flyout_menu_icon_color\";a:8:{s:5:\"label\";s:22:\"Flyout Menu Icon Color\";s:11:\"description\";s:44:\"Controls the color of the flyout menu icons.\";s:2:\"id\";s:22:\"flyout_menu_icon_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--flyout_menu_icon_color\";s:7:\"element\";s:25:\".fusion-flyout-menu-icons\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"flyout_menu_icon_hover_color\";a:8:{s:5:\"label\";s:28:\"Flyout Menu Icon Hover Color\";s:11:\"description\";s:50:\"Controls the hover color of the flyout menu icons.\";s:2:\"id\";s:28:\"flyout_menu_icon_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--flyout_menu_icon_hover_color\";s:7:\"element\";s:25:\".fusion-flyout-menu-icons\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"flyout_menu_background_color\";a:8:{s:5:\"label\";s:28:\"Flyout Menu Background Color\";s:11:\"description\";s:48:\"Controls the background color of the flyout menu\";s:2:\"id\";s:28:\"flyout_menu_background_color\";s:7:\"default\";s:96:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 6%))\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--flyout_menu_background_color\";s:7:\"element\";s:22:\".fusion-flyout-menu-bg\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"flyout_menu_direction\";a:9:{s:5:\"label\";s:21:\"Flyout Menu Direction\";s:11:\"description\";s:51:\"Controls the direction the flyout menu starts from.\";s:2:\"id\";s:21:\"flyout_menu_direction\";s:7:\"default\";s:4:\"fade\";s:4:\"type\";s:6:\"select\";s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:7:\"choices\";a:5:{s:4:\"fade\";s:10:\"Verblassen\";s:4:\"left\";s:5:\"Links\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:3:\"top\";s:4:\"Oben\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:22:\".fusion-logo-alignment\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:29:\"avada-flyout-menu-direction-$\";s:12:\"remove_attrs\";a:5:{i:0;s:32:\"avada-flyout-menu-direction-fade\";i:1;s:32:\"avada-flyout-menu-direction-left\";i:2;s:33:\"avada-flyout-menu-direction-right\";i:3;s:34:\"avada-flyout-menu-direction-bottom\";i:4;s:31:\"avada-flyout-menu-direction-top\";}}}}s:24:\"flyout_menu_item_padding\";a:9:{s:5:\"label\";s:24:\"Flyout Menu Item Padding\";s:11:\"description\";s:47:\"Controls the padding between flyout menu items.\";s:2:\"id\";s:24:\"flyout_menu_item_padding\";s:7:\"default\";s:2:\"32\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:20:\"fusion-gutter-and-or\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--flyout_menu_item_padding\";s:7:\"element\";s:19:\".fusion-flyout-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}}}}s:26:\"heading_secondary_top_menu\";a:6:{s:5:\"label\";s:18:\"Secondary Top Menu\";s:2:\"id\";s:26:\"heading_secondary_top_menu\";s:8:\"priority\";i:6;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:0;s:6:\"fields\";a:12:{s:22:\"no_secondary_menu_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:227:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Secondary Top Menu Options are only available when using Header Layouts #2-5. Your current Header Layout does not utilize the secondary top menu.</div>\";s:2:\"id\";s:22:\"no_secondary_menu_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}}}s:23:\"topmenu_dropwdown_width\";a:9:{s:5:\"label\";s:29:\"Secondary Menu Dropdown Width\";s:11:\"description\";s:50:\"Controls the width of the secondary menu dropdown.\";s:2:\"id\";s:23:\"topmenu_dropwdown_width\";s:7:\"default\";s:3:\"200\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--topmenu_dropwdown_width\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:29:\"header_top_first_border_color\";a:8:{s:5:\"label\";s:28:\"Secondary Menu Divider Color\";s:11:\"description\";s:62:\"Steuert die Trennlinienfarbe der Untermenüs auf erster Ebene.\";s:2:\"id\";s:29:\"header_top_first_border_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--header_top_first_border_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"header_top_sub_bg_color\";a:8:{s:5:\"label\";s:40:\"Secondary Menu Dropdown Background Color\";s:11:\"description\";s:61:\"Controls the background color of the secondary menu dropdown.\";s:2:\"id\";s:23:\"header_top_sub_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--header_top_sub_bg_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"header_top_menu_bg_hover_color\";a:8:{s:5:\"label\";s:46:\"Secondary Menu Dropdown Background Hover Color\";s:11:\"description\";s:67:\"Controls the background hover color of the secondary menu dropdown.\";s:2:\"id\";s:30:\"header_top_menu_bg_hover_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--header_top_menu_bg_hover_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:29:\"header_top_menu_sub_sep_color\";a:8:{s:5:\"label\";s:39:\"Secondary Menu Dropdown Separator Color\";s:11:\"description\";s:68:\"Controls the color of the separators in the secondary menu dropdown.\";s:2:\"id\";s:29:\"header_top_menu_sub_sep_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--header_top_menu_sub_sep_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"secondary_menu_typography_info\";a:5:{s:5:\"label\";s:29:\"Secondary Top Menu Typography\";s:2:\"id\";s:30:\"secondary_menu_typography_info\";s:4:\"type\";s:4:\"info\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}}s:14:\"snav_font_size\";a:9:{s:5:\"label\";s:24:\"Secondary Menu Font Size\";s:11:\"description\";s:47:\"Controls the font size for secondary menu text.\";s:2:\"id\";s:14:\"snav_font_size\";s:7:\"default\";s:4:\"12px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--snav_font_size\";}}}s:11:\"sec_menu_lh\";a:9:{s:5:\"label\";s:27:\"Linienhöhe des Untermenüs\";s:11:\"description\";s:44:\"Controls the line height for secondary menu.\";s:2:\"id\";s:11:\"sec_menu_lh\";s:7:\"default\";s:4:\"48px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:13:\"--sec_menu_lh\";}i:1;a:3:{s:4:\"name\";s:16:\"--top-bar-height\";s:7:\"element\";s:14:\".fusion-header\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:11:\"calc($ / 2)\";i:1;s:6:\"21.5px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:11:\"sec_menu_lh\";i:1;s:1:\">\";i:2;s:2:\"43\";}}}}}}}s:10:\"snav_color\";a:8:{s:5:\"label\";s:25:\"Secondary Menu Font Color\";s:11:\"description\";s:43:\"Controls the color for secondary menu text.\";s:2:\"id\";s:10:\"snav_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:12:\"--snav_color\";s:7:\"element\";s:24:\".fusion-secondary-header\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"header_top_menu_sub_color\";a:8:{s:5:\"label\";s:34:\"Secondary Menu Dropdown Font Color\";s:11:\"description\";s:52:\"Controls the color for secondary menu dropdown text.\";s:2:\"id\";s:25:\"header_top_menu_sub_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--header_top_menu_sub_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:31:\"header_top_menu_sub_hover_color\";a:8:{s:5:\"label\";s:40:\"Secondary Menu Dropdown Font Hover Color\";s:11:\"description\";s:58:\"Controls the hover color for secondary menu dropdown text.\";s:2:\"id\";s:31:\"header_top_menu_sub_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v2\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v3\";}i:3;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v4\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"v5\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:33:\"--header_top_menu_sub_hover_color\";s:7:\"element\";s:22:\".fusion-secondary-menu\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:19:\"heading_mobile_menu\";a:6:{s:5:\"label\";s:11:\"Mobile Menu\";s:2:\"id\";s:19:\"heading_mobile_menu\";s:8:\"priority\";i:6;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:0;s:6:\"fields\";a:18:{s:25:\"no_responsive_mode_info_1\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:280:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Please enable responsive mode. Mobile menus are only available when you\'re using the responsive mode. To enable it please go to the \"Responsive\" section and set the \"Responsive Design\" option to ON.</div>\";s:2:\"id\";s:25:\"no_responsive_mode_info_1\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"0\";}}}s:19:\"no_mobile_menu_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:319:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Because of the design of your Header Layout #6, only a few options are available here. More options are available when using Header Layouts #1-5 or 7. The rest of the options for Header Layout #6 are on the Flyout Menu and Main Menu tab.</div>\";s:2:\"id\";s:19:\"no_mobile_menu_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"top\";}}}s:18:\"mobile_menu_design\";a:10:{s:5:\"label\";s:21:\"Mobilmenü Gestaltung\";s:11:\"description\";s:96:\"Controls the design of the mobile menu. Flyout design style only allows parent level menu items.\";s:2:\"id\";s:18:\"mobile_menu_design\";s:7:\"default\";s:7:\"classic\";s:4:\"type\";s:6:\"select\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:7:\"choices\";a:3:{s:7:\"classic\";s:9:\"Klassisch\";s:6:\"modern\";s:6:\"Modern\";s:6:\"flyout\";s:6:\"Flyout\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:6:\"output\";a:1:{i:0;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"mobile-menu-design-$\";s:12:\"remove_attrs\";a:3:{i:0;s:26:\"mobile-menu-design-classic\";i:1;s:25:\"mobile-menu-design-modern\";i:2;s:25:\"mobile-menu-design-flyout\";}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:3:{s:44:\"mobile_menu_design_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"mobile_menu_design_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"mobile_menu_design_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:28:\"mobile_menu_icons_top_margin\";a:9:{s:5:\"label\";s:28:\"Mobile Menu Icons Top Margin\";s:11:\"description\";s:82:\"Controls the top margin for the icons in the modern and flyout mobile menu design.\";s:2:\"id\";s:28:\"mobile_menu_icons_top_margin\";s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"classic\";}i:2;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"classic\";}i:5;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--mobile_menu_icons_top_margin\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"mobile_menu_nav_height\";a:9:{s:5:\"label\";s:32:\"Mobile Menu Dropdown Item Height\";s:11:\"description\";s:47:\"Controls the height of each dropdown menu item.\";s:2:\"id\";s:22:\"mobile_menu_nav_height\";s:7:\"default\";s:2:\"42\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--mobile_menu_nav_height\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:27:\"mobile_nav_submenu_slideout\";a:8:{s:5:\"label\";s:31:\"Mobile Menu Dropdown Slide Outs\";s:11:\"description\";s:60:\"Turn on to allow dropdown sections to slide out when tapped.\";s:2:\"id\";s:27:\"mobile_nav_submenu_slideout\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:16:\"submenu_slideout\";s:7:\"trigger\";a:1:{i:0;s:16:\"fusionMobileMenu\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"mobile_menu_search\";a:7:{s:5:\"label\";s:37:\"Display Mobile Menu Search Icon/Field\";s:11:\"description\";s:60:\"Turn on to display the search icon/field in the mobile menu.\";s:2:\"id\";s:18:\"mobile_menu_search\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:3:{s:44:\"mobile_menu_search_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"mobile_menu_search_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"mobile_menu_search_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:29:\"mobile_menu_submenu_indicator\";a:7:{s:5:\"label\";s:30:\"Mobile Menu Sub-Menu Indicator\";s:11:\"description\";s:69:\"Turn on to display the mobile menu sub-menu indicator: &quot;-&quot;.\";s:2:\"id\";s:29:\"mobile_menu_submenu_indicator\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:25:\".fusion-mobile-nav-holder\";s:9:\"className\";s:33:\"fusion-mobile-menu-indicator-hide\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"mobile_header_bg_color\";a:9:{s:5:\"label\";s:33:\"Mobil Kopfzeilen Hintergrundfarbe\";s:11:\"description\";s:62:\"Controls the background color of the header on mobile devices.\";s:2:\"id\";s:22:\"mobile_header_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--mobile_header_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:10:\"not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:36:\"avada-mobile-header-color-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:0;}}}s:30:\"mobile_archive_header_bg_color\";a:8:{s:5:\"label\";s:38:\"Mobile Archive Header Background Color\";s:11:\"description\";s:75:\"Controls the background color of the archive page header on mobile devices.\";s:2:\"id\";s:30:\"mobile_archive_header_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--mobile_header_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:28:\"mobile_menu_background_color\";a:8:{s:5:\"label\";s:27:\"Mobilmenü Hintergrundfarbe\";s:11:\"description\";s:86:\"Controls the background color of the mobile menu dropdown and classic mobile menu box.\";s:2:\"id\";s:28:\"mobile_menu_background_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--mobile_menu_background_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"mobile_menu_hover_color\";a:8:{s:5:\"label\";s:34:\"Mobile Menu Background Hover Color\";s:11:\"description\";s:64:\"Controls the background hover color of the mobile menu dropdown.\";s:2:\"id\";s:23:\"mobile_menu_hover_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--mobile_menu_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"mobile_menu_border_color\";a:8:{s:5:\"label\";s:20:\"Mobilmenü Randfarbe\";s:11:\"description\";s:95:\"Controls the border and divider colors of the mobile menu dropdown and classic mobile menu box.\";s:2:\"id\";s:24:\"mobile_menu_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--mobile_menu_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"mobile_menu_toggle_color\";a:8:{s:5:\"label\";s:24:\"Mobile Menu Toggle Color\";s:11:\"description\";s:50:\"Controls the color of the mobile menu toggle icon.\";s:2:\"id\";s:24:\"mobile_menu_toggle_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--mobile_menu_toggle_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"mobile_menu_typography_info\";a:5:{s:5:\"label\";s:22:\"Mobile Menu Typography\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"mobile_menu_typography_info\";s:4:\"type\";s:4:\"info\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}}}s:22:\"mobile_menu_typography\";a:9:{s:2:\"id\";s:22:\"mobile_menu_typography\";s:5:\"label\";s:22:\"Mobile Menu Typography\";s:11:\"description\";s:54:\"These settings control the typography for mobile menu.\";s:4:\"type\";s:10:\"typography\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography3-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:10:{i:0;a:3:{s:4:\"name\";s:36:\"--mobile_menu_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:22:\"mobile_menu_typography\";}}i:1;a:2:{s:4:\"name\";s:34:\"--mobile_menu_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:36:\"--mobile_menu_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:3;a:2:{s:4:\"name\";s:36:\"--mobile_menu_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:4;a:3:{s:4:\"name\";s:39:\"--mobile_menu_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:5;a:2:{s:4:\"name\";s:30:\"--mobile_menu_typography-color\";s:6:\"choice\";s:5:\"color\";}i:6;a:2:{s:4:\"name\";s:35:\"--mobile_menu_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:7;a:2:{s:4:\"name\";s:36:\"--mobile_menu_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";}i:8;a:3:{s:4:\"name\";s:45:\"--mobile_menu_typography-font-size-30-or-24px\";s:6:\"choice\";s:9:\"font-size\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:4:\"30px\";i:1;s:4:\"24px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:33:\"mobile_menu_typography[font-size]\";i:1;s:1:\">\";i:2;s:2:\"35\";}}}}}i:9;a:3:{s:4:\"name\";s:47:\"--mobile_menu_typography-font-size-open-submenu\";s:6:\"choice\";s:9:\"font-size\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:4:\"20px\";i:1;s:45:\"var(--mobile_menu_typography-font-size, 13px)\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:33:\"mobile_menu_typography[font-size]\";i:1;s:1:\">\";i:2;s:2:\"30\";}}}}}}}s:28:\"mobile_menu_font_hover_color\";a:8:{s:5:\"label\";s:45:\"Hover-Farbe des Menüs in der mobilen Ansicht\";s:11:\"description\";s:99:\"Controls the hover color of the mobile menu item. Also, used to highlight current mobile menu item.\";s:2:\"id\";s:28:\"mobile_menu_font_hover_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:24:\"fusion-gutter-and-or-and\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--mobile_menu_font_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"mobile_menu_text_align\";a:9:{s:5:\"label\";s:22:\"Mobile Menu Text Align\";s:11:\"description\";s:40:\"Controls the mobile menu text alignment.\";s:2:\"id\";s:22:\"mobile_menu_text_align\";s:7:\"default\";s:4:\"left\";s:7:\"choices\";a:3:{s:4:\"left\";s:5:\"Links\";s:6:\"center\";s:9:\"Zentriert\";s:5:\"right\";s:6:\"Rechts\";}s:4:\"type\";s:6:\"select\";s:5:\"class\";s:32:\"fusion-gutter-and-and-or-and-and\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}i:3;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:4;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:5;a:3:{s:7:\"setting\";s:18:\"mobile_menu_design\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"flyout\";}}s:6:\"output\";a:4:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:6:{s:7:\"element\";s:28:\"nav.fusion-mobile-nav-holder\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:31:\"fusion-mobile-menu-text-align-$\";s:12:\"remove_attrs\";a:3:{i:0;s:34:\"fusion-mobile-menu-text-align-left\";i:1;s:36:\"fusion-mobile-menu-text-align-center\";i:2;s:35:\"fusion-mobile-menu-text-align-right\";}s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:1:{s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:18:\"mobile_menu_design\";i:1;s:3:\"!==\";i:2;s:6:\"flyout\";}}}}}}}}}s:20:\"mega_menu_subsection\";a:4:{s:5:\"label\";s:9:\"Mega Menu\";s:2:\"id\";s:20:\"mega_menu_subsection\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:8:{s:19:\"header_v6_used_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:212:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Mega Menu Options are only available when using Header Layouts #1-5. Your current Header Layout #6 does not utilize the mega menu.</div>\";s:2:\"id\";s:19:\"header_v6_used_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v6\";}}}s:22:\"megamenu_disabled_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:178:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Mega Menu is disabled in Advanced > Theme Features section. Please enable it to see the options.</div>\";s:2:\"id\";s:22:\"megamenu_disabled_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}}s:14:\"megamenu_width\";a:10:{s:5:\"label\";s:27:\"Mega Menu Wrapper Max Width\";s:11:\"description\";s:132:\"Controls the max width of the mega menu. On boxed side header layouts, &quot;Viewport Width&quot; will match &quot;Site Width&quot;.\";s:2:\"id\";s:14:\"megamenu_width\";s:4:\"type\";s:6:\"select\";s:7:\"default\";s:10:\"site_width\";s:7:\"choices\";a:3:{s:10:\"site_width\";s:12:\"Seitenbreite\";s:14:\"viewport_width\";s:11:\"100% Breite\";s:12:\"custom_width\";s:12:\"Custom Width\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:19:\"megamenu_base_width\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:9:\"transport\";s:7:\"refresh\";s:15:\"partial_refresh\";a:3:{s:40:\"megamenu_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:39:\"megamenu_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:22:\"mmegamenu_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:18:\"megamenu_max_width\";a:8:{s:5:\"label\";s:19:\"Mega Menu Max-Width\";s:11:\"description\";s:40:\"Controls the max width of the mega menu.\";s:2:\"id\";s:18:\"megamenu_max_width\";s:7:\"default\";s:4:\"1200\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"4096\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:14:\"megamenu_width\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:12:\"custom_width\";}}s:15:\"partial_refresh\";a:3:{s:44:\"megamenu_max_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"megamenu_max_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"megamenu_max_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:31:\"megamenu_interior_content_width\";a:8:{s:5:\"label\";s:32:\"Mega Menu Interior Content Width\";s:11:\"description\";s:103:\"For full width mega menus select if the interior menu content is contained to site width or 100% width.\";s:2:\"id\";s:31:\"megamenu_interior_content_width\";s:4:\"type\";s:6:\"select\";s:7:\"default\";s:14:\"viewport_width\";s:7:\"choices\";a:2:{s:10:\"site_width\";s:12:\"Seitenbreite\";s:14:\"viewport_width\";s:11:\"100% Breite\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:3:\"top\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:2;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:14:\"megamenu_width\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:14:\"viewport_width\";}}s:15:\"partial_refresh\";a:3:{s:40:\"megamenu_width_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:39:\"megamenu_width_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:22:\"mmegamenu_width_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:19:\"megamenu_title_size\";a:8:{s:5:\"label\";s:29:\"Megamenü Spaltentitelgrösse\";s:11:\"description\";s:51:\"Controls the font size for mega menu column titles.\";s:2:\"id\";s:19:\"megamenu_title_size\";s:7:\"default\";s:4:\"18px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--megamenu_title_size\";s:7:\"element\";s:22:\".fusion-megamenu-title\";}}}s:30:\"megamenu_item_vertical_padding\";a:8:{s:5:\"label\";s:31:\"Mega Menu Dropdown Item Padding\";s:11:\"description\";s:61:\"Controls the top/bottom padding for mega menu dropdown items.\";s:2:\"id\";s:30:\"megamenu_item_vertical_padding\";s:7:\"default\";s:1:\"7\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--megamenu_item_vertical_padding\";s:7:\"element\";s:24:\".fusion-megamenu-submenu\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:29:\"megamenu_item_display_divider\";a:7:{s:5:\"label\";s:24:\"Mega Menu Widget Bereich\";s:11:\"description\";s:62:\"Turn on to display a divider between mega menu dropdown items.\";s:2:\"id\";s:29:\"megamenu_item_display_divider\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v6\";}i:1;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-has-megamenu-item-divider\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:21:\"menu_icons_subsection\";a:5:{s:5:\"label\";s:15:\"Main Menu Icons\";s:2:\"id\";s:21:\"menu_icons_subsection\";s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:0;s:6:\"fields\";a:6:{s:15:\"menu_icons_note\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:381:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Icons are available for both the main and dropdown menus. However, the options below only apply to the main menu. Dropdown menu icons do not use these options below, they follow the dropdown font size and color. The icons themselves can be added to your menu items in the Appearance > Menus section.</div>\";s:2:\"id\";s:15:\"menu_icons_note\";s:4:\"type\";s:6:\"custom\";}s:18:\"menu_icon_position\";a:8:{s:5:\"label\";s:23:\"Main Menu Icon Position\";s:11:\"description\";s:37:\"Controls the main menu icon position.\";s:2:\"id\";s:18:\"menu_icon_position\";s:7:\"default\";s:4:\"left\";s:7:\"choices\";a:4:{s:3:\"top\";s:4:\"Oben\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:4:\"left\";s:5:\"Links\";}s:4:\"type\";s:6:\"select\";s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:26:\"avada-menu-icon-position-$\";s:12:\"remove_attrs\";a:4:{i:0;s:28:\"avada-menu-icon-position-top\";i:1;s:30:\"avada-menu-icon-position-right\";i:2;s:31:\"avada-menu-icon-position-bottom\";i:3;s:29:\"avada-menu-icon-position-left\";}}}s:15:\"partial_refresh\";a:3:{s:44:\"menu_icon_position_header_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:43:\"menu_icon_position_header_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:25:\"menu_icon_position_header\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:14:\"menu_icon_size\";a:7:{s:5:\"label\";s:19:\"Main Menu Icon Size\";s:11:\"description\";s:46:\"Controls the size of the top-level menu icons.\";s:2:\"id\";s:14:\"menu_icon_size\";s:7:\"default\";s:2:\"14\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--menu_icon_size\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:15:\"menu_icon_color\";a:6:{s:5:\"label\";s:20:\"Main Menu Icon Color\";s:11:\"description\";s:52:\"Controls the color of the top-level main menu icons.\";s:2:\"id\";s:15:\"menu_icon_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--menu_icon_color\";s:7:\"element\";s:21:\".fusion-megamenu-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"menu_icon_hover_color\";a:6:{s:5:\"label\";s:26:\"Main Menu Icon Hover Color\";s:11:\"description\";s:58:\"Controls the hover color of the top-level main menu icons.\";s:2:\"id\";s:21:\"menu_icon_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--menu_icon_hover_color\";s:7:\"element\";s:21:\".fusion-megamenu-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"menu_thumbnail_size\";a:8:{s:5:\"label\";s:24:\"Mega Menu Thumbnail Size\";s:11:\"description\";s:149:\"Controls the width and height of the top-level mega menu thumbnails. Use &quot;auto&quot; for automatic resizing if you added either width or height.\";s:2:\"id\";s:19:\"menu_thumbnail_size\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"26px\";s:6:\"height\";s:4:\"14px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_megamenu\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:27:\"--menu_thumbnail_size-width\";s:6:\"choice\";s:5:\"width\";s:7:\"element\";s:17:\".fusion-main-menu\";}i:1;a:3:{s:4:\"name\";s:28:\"--menu_thumbnail_size-height\";s:6:\"choice\";s:6:\"height\";s:7:\"element\";s:17:\".fusion-main-menu\";}}}}}}}s:4:\"logo\";a:7:{s:5:\"label\";s:4:\"Logo\";s:2:\"id\";s:12:\"heading_logo\";s:8:\"is_panel\";b:1;s:4:\"logo\";i:5;s:4:\"icon\";s:17:\"el-icon-plus-sign\";s:8:\"alt_icon\";s:19:\"fusiona-plus-circle\";s:6:\"fields\";a:2:{s:20:\"logo_options_wrapper\";a:7:{s:5:\"label\";s:4:\"Logo\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:20:\"logo_options_wrapper\";s:4:\"icon\";b:1;s:8:\"position\";s:5:\"start\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:14:{s:14:\"logo_alignment\";a:9:{s:5:\"label\";s:16:\"Logo Ausrichtung\";s:11:\"description\";s:119:\"Kontrolliert die Ausrichtung des Logos. &quot;Zentriert&quot; funktioniert nur mit Option Kopf 5 und Kopf an der Seite.\";s:2:\"id\";s:14:\"logo_alignment\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"left\";s:5:\"Links\";s:6:\"center\";s:9:\"Zentriert\";s:5:\"right\";s:6:\"Rechts\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--logo_alignment\";}}s:6:\"output\";a:5:{i:0;a:5:{s:7:\"element\";s:22:\".fusion-logo-alignment\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:13:\"fusion-logo-$\";s:12:\"remove_attrs\";a:3:{i:0;s:16:\"fusion-logo-left\";i:1;s:18:\"fusion-logo-center\";i:2;s:17:\"fusion-logo-right\";}}i:1;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:13:\"avadaMenuVars\";s:2:\"id\";s:14:\"logo_alignment\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:17:\"mobile-logo-pos-$\";s:12:\"remove_attrs\";a:3:{i:0;s:20:\"mobile-logo-pos-left\";i:1;s:22:\"mobile-logo-pos-center\";i:2;s:21:\"mobile-logo-pos-right\";}}i:3;a:5:{s:7:\"element\";s:41:\".side-header-wrapper .side-header-content\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:13:\"fusion-logo-$\";s:12:\"remove_attrs\";a:3:{i:0;s:16:\"fusion-logo-left\";i:1;s:18:\"fusion-logo-center\";i:2;s:17:\"fusion-logo-right\";}}i:4;a:5:{s:7:\"element\";s:48:\".side-header-wrapper .fusion-main-menu-container\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:18:\"fusion-logo-menu-$\";s:12:\"remove_attrs\";a:3:{i:0;s:21:\"fusion-logo-menu-left\";i:1;s:23:\"fusion-logo-menu-center\";i:2;s:22:\"fusion-logo-menu-right\";}}}}s:11:\"logo_margin\";a:9:{s:5:\"label\";s:14:\"Logo Abstände\";s:11:\"description\";s:69:\"Kontrolliert die oberen/rechten/unteren/linken Ränder für das Logo.\";s:2:\"id\";s:11:\"logo_margin\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"34px\";s:6:\"bottom\";s:4:\"34px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:8:\"css_vars\";a:4:{i:0;a:4:{s:4:\"name\";s:17:\"--logo_margin-top\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:3:\"top\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}i:1;a:4:{s:4:\"name\";s:20:\"--logo_margin-bottom\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:6:\"bottom\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}i:2;a:4:{s:4:\"name\";s:18:\"--logo_margin-left\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:4:\"left\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}i:3;a:4:{s:4:\"name\";s:19:\"--logo_margin-right\";s:7:\"element\";s:12:\".fusion-logo\";s:6:\"choice\";s:5:\"right\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:3:\"0px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:9:\"logo[url]\";i:1;s:3:\"!==\";i:2;s:0:\"\";}}}}}}s:6:\"output\";a:6:{i:0;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:3:\"top\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:15:\"data-margin-top\";}i:1;a:3:{s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:2:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:18:\"header_padding_top\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:6:\"bottom\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:18:\"data-margin-bottom\";}i:3;a:3:{s:6:\"choice\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaHeaderVars\";s:2:\"id\";s:18:\"logo_margin_bottom\";s:7:\"trigger\";a:1:{i:0;s:27:\"fusion-reinit-sticky-header\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:4;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:4:\"left\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:16:\"data-margin-left\";}i:5;a:4:{s:7:\"element\";a:2:{i:0;s:27:\".fusion-header .fusion-logo\";i:1;s:25:\"#side-header .fusion-logo\";}s:6:\"choice\";s:5:\"right\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:17:\"data-margin-right\";}}}s:15:\"logo_background\";a:9:{s:5:\"label\";s:16:\"Logo Hintergrund\";s:11:\"description\";s:68:\"Einschalten, um einen farbigen Hintergrund für das Logo anzuzeigen.\";s:2:\"id\";s:15:\"logo_background\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:28:\"fusion-gutter-and-and-or-and\";s:8:\"required\";a:5:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:3;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:4;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}s:15:\"partial_refresh\";a:1:{s:20:\"partial_refresh_logo\";a:3:{s:8:\"selector\";s:36:\".fusion-logo,.fusion-logo-background\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:9:\"body,html\";s:9:\"className\";s:25:\"avada-has-logo-background\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:21:\"logo_background_color\";a:8:{s:5:\"label\";s:21:\"Logo Hintergrundfarbe\";s:11:\"description\";s:48:\"Kontrolliert die Hintergrundfarbe für das Logo.\";s:2:\"id\";s:21:\"logo_background_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:5:\"class\";s:36:\"fusion-gutter-and-and-and-or-and-and\";s:8:\"required\";a:7:{i:0;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v4\";}i:1;a:3:{s:7:\"setting\";s:13:\"header_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:2:\"v5\";}i:2;a:3:{s:7:\"setting\";s:15:\"logo_background\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:4;a:3:{s:7:\"setting\";s:15:\"header_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:5;a:3:{s:7:\"setting\";s:15:\"logo_background\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:6;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--logo_background_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"logo_custom_link\";a:6:{s:5:\"label\";s:33:\"Logo Benutzerdefinierter Link URL\";s:11:\"description\";s:95:\"Enter a custom URL the site logo should link to. Leave empty to let logo link to the home page.\";s:2:\"id\";s:16:\"logo_custom_link\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:17:\".fusion-logo-link\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:4:\"href\";s:13:\"value_pattern\";s:1:\"$\";}}}s:23:\"default_logo_info_title\";a:5:{s:5:\"label\";s:13:\"Standard Logo\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"default_logo_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:4:\"logo\";a:9:{s:5:\"label\";s:13:\"Standard Logo\";s:11:\"description\";s:37:\"Wähle eine Bilddatei für dein Logo.\";s:2:\"id\";s:4:\"logo\";s:7:\"default\";s:78:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/logo.png\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:15:\"partial_refresh\";a:1:{s:20:\"partial_refresh_logo\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:14:\".fusion-header\";i:1;s:33:\"#side-header .side-header-wrapper\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:15:\"Logo bearbeiten\";s:4:\"icon\";s:19:\"fusiona-plus-circle\";s:5:\"order\";i:2;}}}}s:11:\"logo_retina\";a:9:{s:5:\"label\";s:19:\"Retina Default Logo\";s:11:\"description\";s:107:\"Select an image file for the retina version of the logo. It should be exactly 2x the size of the main logo.\";s:2:\"id\";s:11:\"logo_retina\";s:7:\"default\";s:81:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/logo@2x.png\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:4:\"logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:15:\"partial_refresh\";a:1:{s:27:\"partial_refresh_logo_retina\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:22:\"sticky_logo_info_title\";a:5:{s:5:\"label\";s:26:\"Fixierter Kopfbereich Logo\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"sticky_logo_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:18:\"sticky_header_logo\";a:9:{s:5:\"label\";s:26:\"Fixierter Kopfbereich Logo\";s:11:\"description\";s:49:\"Select an image file for your sticky header logo.\";s:2:\"id\";s:18:\"sticky_header_logo\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:15:\"partial_refresh\";a:1:{s:34:\"partial_refresh_sticky_header_logo\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:22:\".fusion-logo-alignment\";s:9:\"className\";s:20:\"fusion-sticky-logo-1\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"sticky_header_logo_retina\";a:9:{s:5:\"label\";s:25:\"Retina Sticky Header Logo\";s:11:\"description\";s:130:\"Select an image file for the retina version of the sticky header logo. It should be exactly 2x the size of the sticky header logo.\";s:2:\"id\";s:25:\"sticky_header_logo_retina\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"sticky_header_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:18:\"sticky_header_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:18:\"sticky_header_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:15:\"partial_refresh\";a:1:{s:41:\"partial_refresh_sticky_header_logo_retina\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:22:\"mobile_logo_info_title\";a:5:{s:5:\"label\";s:22:\"Logo für Mobilgeräte\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"mobile_logo_info_title\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:11:\"mobile_logo\";a:8:{s:5:\"label\";s:22:\"Logo für Mobilgeräte\";s:11:\"description\";s:37:\"Wähle ein Bild für das Mobile Logo.\";s:2:\"id\";s:11:\"mobile_logo\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:15:\"partial_refresh\";a:1:{s:27:\"partial_refresh_mobile_logo\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}s:18:\"mobile_logo_retina\";a:9:{s:5:\"label\";s:18:\"Retina Mobile Logo\";s:11:\"description\";s:116:\"Select an image file for the retina version of the mobile logo. It should be exactly 2x the size of the mobile logo.\";s:2:\"id\";s:18:\"mobile_logo_retina\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:3:\"min\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"mobile_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:11:\"mobile_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:11:\"mobile_logo\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:15:\"partial_refresh\";a:1:{s:34:\"partial_refresh_mobile_logo_retina\";a:3:{s:8:\"selector\";s:12:\".fusion-logo\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:4:\"logo\";}}}}}}s:8:\"favicons\";a:7:{s:5:\"label\";s:7:\"Favicon\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:8:\"favicons\";s:4:\"icon\";b:1;s:8:\"position\";s:5:\"start\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:5:{s:7:\"favicon\";a:7:{s:5:\"label\";s:7:\"Favicon\";s:11:\"description\";s:55:\"Favicon for your website at 32px x 32px or 64px x 64px.\";s:2:\"id\";s:7:\"favicon\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:11:\"iphone_icon\";a:7:{s:5:\"label\";s:32:\"Apple iPhone Icon Icon hochladen\";s:11:\"description\";s:42:\"Favicon for Apple iPhone at 120px x 120px.\";s:2:\"id\";s:11:\"iphone_icon\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:18:\"iphone_icon_retina\";a:8:{s:5:\"label\";s:34:\"Apple iPhone Retina Icon hochladen\";s:11:\"description\";s:57:\"Favicon for Apple iPhone Retina Version at 180px x 180px.\";s:2:\"id\";s:18:\"iphone_icon_retina\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"iphone_icon\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:11:\"iphone_icon\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:11:\"iphone_icon\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:9:\"transport\";s:11:\"postMessage\";}s:9:\"ipad_icon\";a:7:{s:5:\"label\";s:25:\"Apple iPad Icon hochladen\";s:11:\"description\";s:40:\"Favicon for Apple iPad at 152px x 152px.\";s:2:\"id\";s:9:\"ipad_icon\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:16:\"ipad_icon_retina\";a:8:{s:5:\"label\";s:32:\"Apple iPad Retina Icon hochladen\";s:11:\"description\";s:55:\"Favicon for Apple iPad Retina Version at 167px x 167px.\";s:2:\"id\";s:16:\"ipad_icon_retina\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:4:\"mode\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:9:\"ipad_icon\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:9:\"ipad_icon\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:9:\"ipad_icon\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:9:\"transport\";s:11:\"postMessage\";}}}}}s:14:\"page_title_bar\";a:6:{s:5:\"label\";s:20:\"Kopfzeilen-Container\";s:2:\"id\";s:22:\"heading_page_title_bar\";s:8:\"priority\";i:7;s:4:\"icon\";s:18:\"el-icon-adjust-alt\";s:8:\"alt_icon\";s:18:\"fusiona-page_title\";s:6:\"fields\";a:23:{s:39:\"page_title_bar_template_override_notice\";a:5:{s:2:\"id\";s:39:\"page_title_bar_template_override_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:334:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Page Title Bar override is currently used. To edit your global layout please visit <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:6:\"hidden\";b:1;s:4:\"type\";s:6:\"custom\";}s:30:\"page_title_bar_template_notice\";a:4:{s:2:\"id\";s:30:\"page_title_bar_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:345:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Page Title Bar Builder. To create a custom Page Title Bar Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:14:\"page_title_bar\";a:9:{s:5:\"label\";s:20:\"Kopfzeilen-Container\";s:11:\"description\";s:41:\"Controls how the page title bar displays.\";s:2:\"id\";s:14:\"page_title_bar\";s:7:\"default\";s:15:\"bar_and_content\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:15:\"bar_and_content\";s:24:\"Zeige Leiste und Inhalte\";s:12:\"content_only\";s:17:\"Zeige nur Inhalte\";s:4:\"hide\";s:10:\"Ausblenden\";}s:4:\"type\";s:6:\"select\";s:15:\"partial_refresh\";a:1:{s:38:\"page_title_bar_contents_page_title_bar\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"avada-has-titlebar-$\";s:12:\"remove_attrs\";a:3:{i:0;s:23:\"avada-has-titlebar-hide\";i:1;s:34:\"avada-has-titlebar-bar_and_content\";i:2;s:31:\"avada-has-titlebar-content_only\";}}}}s:17:\"page_title_bar_bs\";a:9:{s:5:\"label\";s:40:\"Breadcrumbs / Search Bar Content Display\";s:11:\"description\";s:337:\"Controls what displays in the breadcrumbs area.   <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"page_title_bar_bs\";s:7:\"default\";s:11:\"breadcrumbs\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"none\";s:5:\"Keine\";s:11:\"breadcrumbs\";s:11:\"Breadcrumbs\";s:10:\"search_box\";s:10:\"Suchleiste\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:57:\"page_title_bar_contents_breadcrumb_show_post_type_archive\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}}s:19:\"page_title_bar_text\";a:8:{s:5:\"label\";s:23:\"Page Title Bar Headings\";s:11:\"description\";s:336:\"Turn on to display the page title bar headings.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"page_title_bar_text\";s:7:\"default\";s:1:\"1\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:43:\"page_title_bar_contents_page_title_bar_text\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}}s:28:\"page_title_bar_styling_title\";a:6:{s:5:\"label\";s:22:\"Page Title Bar Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:28:\"page_title_bar_styling_title\";s:6:\"hidden\";b:0;s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:20:\"page_title_100_width\";a:8:{s:5:\"label\";s:25:\"Page Title Bar 100% Width\";s:11:\"description\";s:413:\"Turn on to have the page title bar area display at 100% width according to the viewport size. Turn off to follow site width.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"page_title_100_width\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:29:\"avada-has-pagetitle-100-width\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"page_title_height\";a:8:{s:5:\"label\";s:31:\"Höhe des Kopfzeilen-Containers\";s:11:\"description\";s:342:\"Controls the height of the page title bar on desktop.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"page_title_height\";s:7:\"default\";s:5:\"300px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--page_title_height\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:24:\"page_title_mobile_height\";a:9:{s:5:\"label\";s:43:\"Kopfzeilen Titelleiste Höhe mobile Geräte\";s:11:\"description\";s:341:\"Controls the height of the page title bar on mobile.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:24:\"page_title_mobile_height\";s:7:\"default\";s:5:\"240px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--page_title_mobile_height\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:2:{i:0;s:23:\"convert_font_size_to_px\";i:1;a:2:{s:7:\"setting\";s:20:\"page_title_font_size\";s:8:\"addUnits\";b:1;}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:4:\"auto\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:39:\"avada-has-page-title-mobile-height-auto\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"page_title_bg_color\";a:8:{s:5:\"label\";s:42:\"Hintergrundfarbe des Kopfzeilen-Containers\";s:11:\"description\";s:341:\"Controls the background color of the page title bar.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"page_title_bg_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--page_title_bg_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"page_title_border_color\";a:9:{s:5:\"label\";s:37:\"Rahmenfarbe des Kopfzeilen-Containers\";s:11:\"description\";s:338:\"Controls the border colors of the page title bar.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:23:\"page_title_border_color\";s:7:\"default\";s:19:\"rgba(226,226,226,0)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--page_title_border_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"property\";s:6:\"border\";s:11:\"js_callback\";a:2:{i:0;s:31:\"fusionReturnStringIfTransparent\";i:1;a:2:{s:11:\"transparent\";s:4:\"none\";s:6:\"opaque\";s:0:\"\";}}s:17:\"sanitize_callback\";a:2:{i:0;s:22:\"Avada_Output_Callbacks\";i:1;s:23:\"page_title_border_color\";}}}}s:20:\"page_title_font_size\";a:9:{s:5:\"label\";s:32:\"Page Title Bar Heading Font Size\";s:11:\"description\";s:348:\"Controls the font size for the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"page_title_font_size\";s:7:\"default\";s:4:\"54px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--page_title_font_size\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:22:\"page_title_line_height\";a:9:{s:5:\"label\";s:34:\"Page Title Bar Heading Line Height\";s:11:\"description\";s:350:\"Controls the line height for the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:22:\"page_title_line_height\";s:7:\"default\";s:6:\"normal\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--page_title_line_height\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:16:\"page_title_color\";a:8:{s:5:\"label\";s:33:\"Page Title Bar Heading Font Color\";s:11:\"description\";s:348:\"Controls the text color of the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:16:\"page_title_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--page_title_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"page_title_subheader_font_size\";a:9:{s:5:\"label\";s:35:\"Page Title Bar Subheading Font Size\";s:11:\"description\";s:345:\"Controls the font size for the page titlebar subheading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:30:\"page_title_subheader_font_size\";s:7:\"default\";s:4:\"18px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--page_title_subheader_font_size\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:26:\"page_title_subheader_color\";a:8:{s:5:\"label\";s:36:\"Page Title Bar Subheading Font Color\";s:11:\"description\";s:346:\"Controls the text color of the page title bar subheading.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:26:\"page_title_subheader_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--page_title_subheader_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"page_title_alignment\";a:9:{s:5:\"label\";s:32:\"Titel- und Untertitelausrichtung\";s:11:\"description\";s:454:\"Choose the title and subhead text alignment. Breadcrumbs / search field will be on opposite side for left / right alignment and below the title for center alignment.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"page_title_alignment\";s:7:\"default\";s:6:\"center\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"left\";s:5:\"Links\";s:6:\"center\";s:9:\"Zentriert\";s:5:\"right\";s:6:\"Rechts\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:44:\"page_title_bar_contents_page_title_alignment\";a:5:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";s:17:\"skip_for_template\";a:1:{i:0;s:14:\"page_title_bar\";}}}}s:29:\"page_title_bar_bg_image_title\";a:6:{s:5:\"label\";s:31:\"Page Title Bar Background Image\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:29:\"page_title_bar_bg_image_title\";s:4:\"icon\";b:1;s:6:\"hidden\";b:0;s:4:\"type\";s:4:\"info\";}s:13:\"page_title_bg\";a:9:{s:5:\"label\";s:31:\"Page Title Bar Background Image\";s:11:\"description\";s:404:\"Select an image for the page title bar background. If left empty, the page title bar background color will be used.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:13:\"page_title_bg\";s:7:\"default\";s:0:\"\";s:6:\"hidden\";b:0;s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:15:\"--page_title_bg\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:4:\"none\";}}}}}s:20:\"page_title_bg_retina\";a:10:{s:5:\"label\";s:38:\"Retina Page Title Bar Background Image\";s:11:\"description\";s:428:\"Select an image for the retina version of the page title bar background. It should be exactly 2x the size of the page title bar background.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"page_title_bg_retina\";s:7:\"default\";s:0:\"\";s:6:\"hidden\";b:0;s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:22:\"--page_title_bg_retina\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:20:\"var(--page_title_bg)\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:38:\"avada-has-pagetitlebar-retina-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"page_title_bg_full\";a:8:{s:5:\"label\";s:20:\"100% Hintergrundbild\";s:11:\"description\";s:406:\"Turn on to have the page title bar background image display at 100% in width and height according to the window size.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:18:\"page_title_bg_full\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-pagetitle-bg-full\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"page_title_bg_parallax\";a:8:{s:5:\"label\";s:24:\"Parallax Hintergrundbild\";s:11:\"description\";s:356:\"Turn on to use a parallax scrolling effect on the background image.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:22:\"page_title_bg_parallax\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-has-pagetitle-bg-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"page_title_fading\";a:8:{s:5:\"label\";s:22:\"Verblassende Animation\";s:11:\"description\";s:340:\"Turn on to have the page title text fade on scroll.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"page_title_fading\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:13:\"avadaFadeVars\";s:2:\"id\";s:17:\"page_title_fading\";s:7:\"trigger\";a:1:{i:0;s:27:\"avadaTriggerPageTitleFading\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:11:\"breadcrumbs\";a:6:{s:5:\"label\";s:11:\"Breadcrumbs\";s:2:\"id\";s:19:\"heading_breadcrumbs\";s:8:\"priority\";i:7;s:4:\"icon\";s:21:\"el-icon-chevron-right\";s:8:\"alt_icon\";s:18:\"fusiona-breadcrumb\";s:6:\"fields\";a:8:{s:17:\"breadcrumb_mobile\";a:7:{s:5:\"label\";s:41:\"Brotkrumennavigation auf mobilen Geräten\";s:11:\"description\";s:338:\"Turn on to display breadcrumbs on mobile devices.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"breadcrumb_mobile\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:34:\"avada-has-breadcrumb-mobile-hidden\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"breacrumb_prefix\";a:7:{s:5:\"label\";s:18:\"Breadcrumbs Prefix\";s:11:\"description\";s:334:\"Controls the text before the breadcrumb menu.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:16:\"breacrumb_prefix\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:40:\"page_title_bar_contents_breacrumb_prefix\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:20:\"breadcrumb_separator\";a:7:{s:5:\"label\";s:21:\"Breadcrumbs Separator\";s:11:\"description\";s:344:\"Controls the type of separator between each breadcrumb.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"breadcrumb_separator\";s:7:\"default\";s:1:\"/\";s:4:\"type\";s:4:\"text\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:44:\"page_title_bar_contents_breadcrumb_separator\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:21:\"breadcrumbs_font_size\";a:8:{s:5:\"label\";s:39:\"Schriftgrösse der Brotkrumennavigation\";s:11:\"description\";s:337:\"Controls the font size for the breadcrumbs text.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:21:\"breadcrumbs_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--breadcrumbs_font_size\";s:7:\"element\";s:22:\".fusion-page-title-bar\";}}}s:22:\"breadcrumbs_text_color\";a:7:{s:5:\"label\";s:34:\"Textfarbe der Brotkrumennavigation\";s:11:\"description\";s:337:\"Controls the text color of the breadcrumbs font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:22:\"breadcrumbs_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--breadcrumbs_text_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"breadcrumbs_text_hover_color\";a:7:{s:5:\"label\";s:28:\"Breadcrumbs Text Hover Color\";s:11:\"description\";s:343:\"Controls the text hover color of the breadcrumbs font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:28:\"breadcrumbs_text_hover_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--breadcrumbs_text_hover_color\";s:7:\"element\";s:22:\".fusion-page-title-bar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"breadcrumb_show_categories\";a:7:{s:5:\"label\";s:30:\"Post Categories on Breadcrumbs\";s:11:\"description\";s:352:\"Turn on to display the post categories in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:26:\"breadcrumb_show_categories\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:50:\"page_title_bar_contents_breadcrumb_show_categories\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}s:33:\"breadcrumb_show_post_type_archive\";a:7:{s:5:\"label\";s:33:\"Post Type Archives on Breadcrumbs\";s:11:\"description\";s:351:\"Turn on to display post type archives in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:33:\"breadcrumb_show_post_type_archive\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:57:\"page_title_bar_contents_breadcrumb_show_post_type_archive\";a:4:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}s:21:\"success_trigger_event\";s:20:\"fusion-ptb-refreshed\";}}}}}s:11:\"sliding_bar\";a:6:{s:5:\"label\";s:11:\"Sliding Bar\";s:2:\"id\";s:19:\"heading_sliding_bar\";s:8:\"priority\";i:8;s:4:\"icon\";s:20:\"el-icon-chevron-down\";s:8:\"alt_icon\";s:18:\"fusiona-arrow-down\";s:6:\"fields\";a:21:{s:18:\"slidingbar_widgets\";a:8:{s:5:\"label\";s:23:\"Sliding Bar on Desktops\";s:11:\"description\";s:47:\"Turn on to display the sliding bar on desktops.\";s:2:\"id\";s:18:\"slidingbar_widgets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:24:\".fusion-sliding-bar-area\";}s:9:\"shortcuts\";a:2:{i:0;a:2:{s:10:\"aria_label\";s:16:\"Edit Sliding Bar\";s:4:\"icon\";s:18:\"fusiona-arrow-down\";}i:1;a:2:{s:10:\"aria_label\";s:24:\"Edit Sliding Bar Widgets\";s:4:\"link\";s:52:\"https://unternehmen.wir-noi.org/wp-admin/widgets.php\";}}}s:15:\"partial_refresh\";a:2:{s:38:\"sliding_bar_content_slidingbar_widgets\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}s:33:\"header_content_slidingbar_widgets\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:28:\"avada-has-slidingbar-widgets\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"mobile_slidingbar_widgets\";a:7:{s:5:\"label\";s:21:\"Sliding Bar On Mobile\";s:11:\"description\";s:258:\"Turn on to display the sliding bar on mobiles. <strong>IMPORTANT:</strong> Due to mobile screen sizes and overlapping issues, when this option is enabled the triangle toggle style in the top right position will be forced for square and circle desktop styles.\";s:2:\"id\";s:25:\"mobile_slidingbar_widgets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"no-mobile-slidingbar\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:23:\"slidingbar_open_on_load\";a:7:{s:5:\"label\";s:40:\"Sliding Bar öffnet beim Laden der Seite\";s:11:\"description\";s:57:\"Turn on to have the sliding bar open when the page loads.\";s:2:\"id\";s:23:\"slidingbar_open_on_load\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:19:\"slidingbar_position\";a:9:{s:5:\"label\";s:20:\"Sliding Bar Position\";s:11:\"description\";s:93:\"Controls the position of the sliding bar to be in the top, right, bottom or left of the site.\";s:2:\"id\";s:19:\"slidingbar_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:3:\"top\";s:4:\"Oben\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:4:\"left\";s:5:\"Links\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:39:\"sliding_bar_content_slidingbar_position\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:31:\"avada-has-slidingbar-position-$\";s:12:\"remove_attrs\";a:4:{i:0;s:33:\"avada-has-slidingbar-position-top\";i:1;s:35:\"avada-has-slidingbar-position-right\";i:2;s:36:\"avada-has-slidingbar-position-bottom\";i:3;s:34:\"avada-has-slidingbar-position-left\";}}}}s:16:\"slidingbar_width\";a:8:{s:5:\"label\";s:17:\"Sliding Bar Width\";s:11:\"description\";s:60:\"Controls the width of the sliding bar on left/right layouts.\";s:2:\"id\";s:16:\"slidingbar_width\";s:7:\"default\";s:5:\"300px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"bottom\";}}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:18:\"--slidingbar_width\";}i:1;a:2:{s:4:\"name\";s:32:\"--slidingbar_width-percent_to_vw\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vw\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:1:\"%\";i:1;s:8:\"contains\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:34:\"avada-has-slidingbar-width-percent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"slidingbar_sticky\";a:7:{s:5:\"label\";s:18:\"Sticky Sliding Bar\";s:11:\"description\";s:39:\"Turn on to enable a sticky sliding bar.\";s:2:\"id\";s:17:\"slidingbar_sticky\";s:7:\"default\";i:1;s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:5:\"right\";}i:2;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"left\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-slidingbar-sticky\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:16:\"#slidingbar-area\";s:9:\"className\";s:25:\"fusion-sliding-bar-sticky\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"slidingbar_widgets_columns\";a:8:{s:5:\"label\";s:32:\"Anzahl Spalte in der Sliding Bar\";s:11:\"description\";s:50:\"Controls the number of columns in the sliding bar.\";s:2:\"id\";s:26:\"slidingbar_widgets_columns\";s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"6\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:46:\"sliding_bar_content_slidingbar_widgets_columns\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}}}s:27:\"slidingbar_column_alignment\";a:8:{s:5:\"label\";s:28:\"Sliding Bar Column Alignment\";s:11:\"description\";s:132:\"Allows your sliding bar columns to be stacked (one above the other) or floated (side by side) when using the left or right position.\";s:2:\"id\";s:27:\"slidingbar_column_alignment\";s:7:\"default\";s:7:\"stacked\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"stacked\";s:7:\"Stacked\";s:7:\"floated\";s:7:\"Floated\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"top\";}i:2;a:3:{s:7:\"setting\";s:19:\"slidingbar_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"bottom\";}}s:15:\"partial_refresh\";a:1:{s:47:\"sliding_bar_content_slidingbar_column_alignment\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}}}s:26:\"slidingbar_content_padding\";a:8:{s:5:\"label\";s:27:\"Sliding Bar Content Padding\";s:11:\"description\";s:68:\"Controls the top/right/bottom/left paddings of the sliding bar area.\";s:2:\"id\";s:26:\"slidingbar_content_padding\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"60px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:32:\"--slidingbar_content_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:35:\"--slidingbar_content_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:33:\"--slidingbar_content_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:34:\"--slidingbar_content_padding-right\";s:6:\"choice\";s:5:\"right\";}}}s:24:\"slidingbar_content_align\";a:8:{s:5:\"label\";s:29:\"Sliding Bar Content Alignment\";s:11:\"description\";s:39:\"Controls sliding bar content alignment.\";s:2:\"id\";s:24:\"slidingbar_content_align\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"left\";s:5:\"Links\";s:6:\"center\";s:9:\"Zentriert\";s:5:\"right\";s:6:\"Rechts\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--slidingbar_content_align\";s:7:\"element\";s:19:\".fusion-sliding-bar\";}}}s:25:\"sliding_bar_styling_title\";a:5:{s:5:\"label\";s:19:\"Sliding Bar Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"sliding_bar_styling_title\";s:4:\"type\";s:4:\"info\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:23:\"slidingbar_toggle_style\";a:10:{s:5:\"label\";s:24:\"Sliding Bar Toggle Style\";s:11:\"description\";s:50:\"Controls the appearance of the sliding bar toggle.\";s:2:\"id\";s:23:\"slidingbar_toggle_style\";s:7:\"default\";s:6:\"circle\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:4:{s:8:\"triangle\";s:8:\"Triangle\";s:9:\"rectangle\";s:9:\"Rectangle\";s:6:\"circle\";s:6:\"Circle\";s:4:\"menu\";s:14:\"Main Menu Icon\";}s:5:\"icons\";a:4:{s:8:\"triangle\";s:210:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><g transform=\"translate(-54.320053,-196.29156)\"><path d=\"m 54.320053,196.29156 h 24 v 24 z\" style=\"stroke-width:0\" /></g></svg>\";s:9:\"rectangle\";s:121:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><path d=\"M24 0h-24v24h24v-24z\"/></svg>\";s:6:\"circle\";s:121:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><circle cx=\"12\" cy=\"12\" r=\"12\"/></svg>\";s:4:\"menu\";s:176:\"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"><path d=\"M24 10h-10v-10h-4v10h-10v4h10v10h4v-10h10z\"/></svg><span class=\"screen-reader-text\">\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:3:{s:43:\"sliding_bar_content_slidingbar_toggle_style\";a:3:{s:8:\"selector\";s:27:\".fusion-sliding-bar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"sliding_bar\";}}s:49:\"slidingbar_toggle_style_header_remove_before_hook\";a:3:{s:8:\"selector\";s:112:\".avada-hook-before-header-wrapper, .fusion-header-wrapper, #side-header-sticky, #side-header, #sliders-container\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:49:\"slidingbar_toggle_style_header_replace_after_hook\";a:4:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:15:\"header_position\";}s:21:\"success_trigger_event\";s:40:\"header-rendered fusion-partial-wooslider\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:32:\"avada-slidingbar-toggle-style--$\";s:12:\"remove_attrs\";a:4:{i:0;s:38:\"avada-slidingbar-toggle-style-triangle\";i:1;s:39:\"avada-slidingbar-toggle-style-rectangle\";i:2;s:36:\"avada-slidingbar-toggle-style-circle\";i:3;s:34:\"avada-slidingbar-toggle-style-menu\";}}}}s:19:\"slidingbar_bg_color\";a:7:{s:5:\"label\";s:28:\"Sliding Bar Background Color\";s:11:\"description\";s:49:\"Controls the background color of the sliding bar.\";s:2:\"id\";s:19:\"slidingbar_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--slidingbar_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"slidingbar_divider_color\";a:7:{s:5:\"label\";s:39:\"Farbe der Trennlinie in der Sliding Bar\";s:11:\"description\";s:49:\"Steuert die Trennlinienfarbe in den Sliding Bars.\";s:2:\"id\";s:24:\"slidingbar_divider_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--slidingbar_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"slidingbar_toggle_icon_color\";a:7:{s:5:\"label\";s:35:\"Sliding Bar Toggle/Close Icon Color\";s:11:\"description\";s:118:\"Controls the color of the sliding bar toggle icon and of the close icon when using the main menu icon as toggle style.\";s:2:\"id\";s:28:\"slidingbar_toggle_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:30:\"--slidingbar_toggle_icon_color\";s:7:\"element\";s:25:\".fusion-sb-toggle-wrapper\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"slidingbar_font_size\";a:8:{s:5:\"label\";s:29:\"Sliding Bar Heading Font Size\";s:11:\"description\";s:56:\"Controls the font size for the sliding bar heading text.\";s:2:\"id\";s:20:\"slidingbar_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--slidingbar_font_size\";s:7:\"element\";s:11:\"#slidingbar\";}}}s:25:\"slidingbar_headings_color\";a:7:{s:5:\"label\";s:47:\"Schriftfarbe der Überschriften der Sliding Bar\";s:11:\"description\";s:62:\"Steuert die Schriftfarbe der Überschrift in den Sliding Bars.\";s:2:\"id\";s:25:\"slidingbar_headings_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:27:\"--slidingbar_headings_color\";s:7:\"element\";s:16:\"#slidingbar-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"slidingbar_text_color\";a:7:{s:5:\"label\";s:28:\"Schriftfarbe der Sliding Bar\";s:11:\"description\";s:48:\"Controls the text color of the sliding bar font.\";s:2:\"id\";s:21:\"slidingbar_text_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 40%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--slidingbar_text_color\";s:7:\"element\";s:16:\"#slidingbar-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"slidingbar_link_color\";a:7:{s:5:\"label\";s:25:\"Linkfarbe der Sliding Bar\";s:11:\"description\";s:52:\"Steuert die Textfarbe der Links in den Sliding Bars.\";s:2:\"id\";s:21:\"slidingbar_link_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 14%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--slidingbar_link_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"slidingbar_link_color_hover\";a:7:{s:5:\"label\";s:28:\"Sliding Bar Link Hover Color\";s:11:\"description\";s:59:\"Controls the text hover color of the sliding bar link font.\";s:2:\"id\";s:27:\"slidingbar_link_color_hover\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:29:\"--slidingbar_link_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:17:\"slidingbar_border\";a:7:{s:5:\"label\";s:21:\"Border on Sliding Bar\";s:11:\"description\";s:82:\"Turn on to display a border line on the sliding bar which makes it stand out more.\";s:2:\"id\";s:17:\"slidingbar_border\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:18:\"slidingbar_widgets\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-slidingbar-border\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:16:\"#slidingbar-area\";s:9:\"className\";s:25:\"fusion-sliding-bar-border\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:6:\"footer\";a:7:{s:5:\"label\";s:9:\"Fusszeile\";s:2:\"id\";s:14:\"heading_footer\";s:8:\"priority\";i:9;s:4:\"icon\";s:18:\"el-icon-arrow-down\";s:8:\"alt_icon\";s:14:\"fusiona-footer\";s:5:\"class\";s:22:\"hidden-section-heading\";s:6:\"fields\";a:3:{s:33:\"footer_content_options_subsection\";a:6:{s:5:\"label\";s:17:\"Fusszeilen Inhalt\";s:2:\"id\";s:33:\"footer_content_options_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:0;s:6:\"fields\";a:8:{s:38:\"footer_options_template_content_notice\";a:4:{s:2:\"id\";s:38:\"footer_options_template_content_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:14:\"footer_widgets\";a:7:{s:5:\"label\";s:18:\"Fusszeilen Widgets\";s:11:\"description\";s:42:\"Anzeige von Fußleistenwidgets anschalten.\";s:2:\"id\";s:14:\"footer_widgets\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:29:\"footer_content_footer_widgets\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:14:\".fusion-footer\";}s:9:\"shortcuts\";a:2:{i:0;a:4:{s:10:\"aria_label\";s:21:\"Fußleiste bearbeiten\";s:4:\"icon\";s:14:\"fusiona-footer\";s:11:\"open_parent\";b:1;s:35:\"link_to_template_if_override_active\";s:6:\"footer\";}i:1;a:4:{s:10:\"aria_label\";s:29:\"Fußleistenwidgets bearbeiten\";s:9:\"css_class\";s:19:\"fusion-edit-sidebar\";s:4:\"link\";s:52:\"https://unternehmen.wir-noi.org/wp-admin/widgets.php\";s:28:\"disable_on_template_override\";s:6:\"footer\";}}}}s:22:\"footer_widgets_columns\";a:8:{s:5:\"label\";s:30:\"Anzahl Spalte in der Fusszeile\";s:11:\"description\";s:343:\"Kontrolliert die Anzahl der Spalten in der Fußleiste.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:22:\"footer_widgets_columns\";s:7:\"default\";s:1:\"4\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"6\";s:4:\"step\";s:1:\"1\";}s:4:\"type\";s:6:\"slider\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:37:\"footer_content_footer_widgets_columns\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:29:\"footer_widgets_center_content\";a:7:{s:5:\"label\";s:29:\"Center Footer Widgets Content\";s:11:\"description\";s:333:\"Turn on to center the footer widget content.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:29:\"footer_widgets_center_content\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:45:\".fusion-footer-widget-area.fusion-widget-area\";s:9:\"className\";s:32:\"fusion-footer-widget-area-center\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"footer_special_effects\";a:8:{s:5:\"label\";s:22:\"Footer Special Effects\";s:11:\"description\";s:44:\"Select a special effect for the footer area.\";s:2:\"id\";s:22:\"footer_special_effects\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:5:\"radio\";s:7:\"choices\";a:5:{s:4:\"none\";s:5:\"Keine\";s:22:\"footer_parallax_effect\";a:2:{i:0;s:22:\"Footer Parallax Effect\";i:1;s:59:\"This enables a fixed footer with parallax scrolling effect.\";}s:23:\"footer_area_bg_parallax\";a:2:{i:0;s:24:\"Parallax Hintergrundbild\";i:1;s:125:\"This enables a parallax effect on the background image selected in &quot;Background Image For Footer Widget Area&quot; field.\";}s:13:\"footer_sticky\";a:2:{i:0;s:18:\"Fixierte Fusszeile\";i:1;s:317:\"This enables a sticky footer. On short pages, the footer will always stick at the bottom, just &quot;above the fold&quot;. On long enough pages, it will act just like a normal footer. IMPORTANT: This will not work properly when using a Left or Right Side Header layout and the side header is larger than the viewport.\";}s:36:\"footer_sticky_with_parallax_bg_image\";a:2:{i:0;s:43:\"Sticky Footer and Parallax Background Image\";i:1;s:239:\"This enables a sticky footer together with a parallax effect on the background image. On short pages, the footer will always stick at the bottom, just &quot;above the fold&quot;. On long enough pages, it will act just like a normal footer.\";}}s:6:\"output\";a:8:{i:0;a:4:{s:7:\"element\";s:4:\"html\";s:8:\"property\";s:6:\"height\";s:13:\"value_pattern\";s:4:\"100%\";s:7:\"exclude\";a:3:{i:0;s:4:\"none\";i:1;s:22:\"footer_parallax_effect\";i:2;s:23:\"footer_area_bg_parallax\";}}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaSideHeaderVars\";s:2:\"id\";s:22:\"footer_special_effects\";s:7:\"trigger\";a:1:{i:0;s:22:\"fusionSideHeaderScroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:22:\"footer_parallax_effect\";i:1;s:3:\"===\";}s:7:\"element\";s:14:\".fusion-footer\";s:9:\"className\";s:22:\"fusion-footer-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:4:\"none\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"avada-footer-fx-none\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:4;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:22:\"footer_parallax_effect\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-footer-fx-parallax-effect\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:5;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:23:\"footer_area_bg_parallax\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-footer-fx-bg-parallax\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:6;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:13:\"footer_sticky\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:22:\"avada-footer-fx-sticky\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:7;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:36:\"footer_sticky_with_parallax_bg_image\";i:1;s:3:\"===\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:42:\"avada-footer-sticky-with-parallax-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:15:\"partial_refresh\";a:1:{s:37:\"footer_content_footer_special_effects\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:16:\"footer_copyright\";a:6:{s:5:\"label\";s:16:\"Copyright Leiste\";s:11:\"description\";s:37:\"Turn on to display the copyright bar.\";s:2:\"id\";s:16:\"footer_copyright\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:31:\"footer_content_footer_copyright\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:31:\"footer_copyright_center_content\";a:7:{s:5:\"label\";s:26:\"Zentriere Copyright Inhalt\";s:11:\"description\";s:333:\"Turn on to center the copyright bar content.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:31:\"footer_copyright_center_content\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:9:\"className\";s:30:\"fusion-footer-copyright-center\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"footer_text\";a:9:{s:5:\"label\";s:14:\"Copyright-Text\";s:11:\"description\";s:385:\"Fügen Sie den Text ein, der im Copyrightbalken angezeigt wird. HTML Markup kann genutzt werden.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:11:\"footer_text\";s:7:\"default\";s:217:\"Copyright 2012 - 2022 | <a href=\"https://bit.ly/2YJkGCr\">Avada Website Builder</a> by <a href=\"https://theme-fusion.com\">ThemeFusion</a> | All Rights Reserved | Powered by <a href=\"https://wordpress.org\">WordPress</a>\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:300;s:5:\"theme\";s:6:\"chrome\";}s:17:\"sanitize_callback\";a:2:{i:0;s:22:\"Avada_Output_Callbacks\";i:1;s:10:\"unfiltered\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:11:\"footer_text\";a:4:{s:8:\"selector\";s:24:\".fusion-copyright-notice\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:9:\"copyright\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}}}s:42:\"footer_background_image_options_subsection\";a:6:{s:5:\"label\";s:27:\"Fusszeilen Hintergrund Bild\";s:2:\"id\";s:42:\"footer_background_image_options_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:0;s:6:\"fields\";a:5:{s:33:\"footer_options_template_bg_notice\";a:4:{s:2:\"id\";s:33:\"footer_options_template_bg_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:16:\"footerw_bg_image\";a:9:{s:5:\"label\";s:46:\"Hintergrundbild für Fusszeilen Widget Bereich\";s:11:\"description\";s:395:\"Select an image for the footer widget background. If left empty, the footer background color will be used.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:16:\"footerw_bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:18:\"--footerw_bg_image\";s:6:\"choice\";s:3:\"url\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:0:\"\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:32:\"avada-has-footer-widget-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"footerw_bg_full\";a:7:{s:5:\"label\";s:20:\"100% Hintergrundbild\";s:11:\"description\";s:398:\"Turn on to have the footer background image display at 100% in width and height according to the window size.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:15:\"footerw_bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:22:\"--footerw_bg_full-size\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:5:\"cover\";i:1;s:7:\"initial\";}s:10:\"conditions\";a:1:{i:0;a:2:{i:0;s:15:\"footerw_bg_full\";i:1;s:4:\"true\";}}}}}i:1;a:3:{s:4:\"name\";s:26:\"--footerw_bg_full-position\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:13:\"center center\";i:1;s:21:\"var(--footerw_bg_pos)\";}s:10:\"conditions\";a:1:{i:0;a:2:{i:0;s:15:\"footerw_bg_full\";i:1;s:4:\"true\";}}}}}}}s:17:\"footerw_bg_repeat\";a:8:{s:5:\"label\";s:23:\"Hintergrund wiederholen\";s:11:\"description\";s:331:\"Controls how the background image repeats.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"footerw_bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:16:\"Alle Wiederholen\";s:8:\"repeat-x\";s:22:\"Horizontal Wiederholen\";s:8:\"repeat-y\";s:20:\"Vertikal Wiederholen\";s:9:\"no-repeat\";s:18:\"Keine Wiederholung\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--footerw_bg_repeat\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";}}}s:14:\"footerw_bg_pos\";a:8:{s:5:\"label\";s:20:\"Hintergrund Position\";s:11:\"description\";s:343:\"Kontrolliert die Positionierung des Hintergrundbildes.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:14:\"footerw_bg_pos\";s:7:\"default\";s:13:\"center center\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:9:{s:8:\"top left\";s:10:\"Oben links\";s:10:\"top center\";s:10:\"Oben mitte\";s:9:\"top right\";s:11:\"Oben rechts\";s:11:\"center left\";s:11:\"Mitte links\";s:13:\"center center\";s:11:\"Mitte Mitte\";s:12:\"center right\";s:12:\"Mitte rechts\";s:11:\"bottom left\";s:11:\"Unten links\";s:13:\"bottom center\";s:11:\"Unten mitte\";s:12:\"bottom right\";s:12:\"Unten rechts\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--footerw_bg_pos\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";}}}}}s:33:\"footer_styling_options_subsection\";a:6:{s:5:\"label\";s:19:\"Fußleisten Styling\";s:2:\"id\";s:33:\"footer_styling_options_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"hidden\";b:0;s:6:\"fields\";a:24:{s:38:\"footer_options_template_styling_notice\";a:4:{s:2:\"id\";s:38:\"footer_options_template_styling_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:16:\"footer_100_width\";a:8:{s:5:\"label\";s:21:\"100% Fusszeilenbreite\";s:11:\"description\";s:403:\"Turn on to have the footer area display at 100% width according to the window size. Turn off to follow site width.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:16:\"footer_100_width\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:20:\"avada-has-100-footer\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"footer_area_padding\";a:9:{s:5:\"label\";s:22:\"Fußzeile Innenabstand\";s:11:\"description\";s:347:\"Controls the top/right/bottom/left padding for the footer.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"footer_area_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"60px\";s:6:\"bottom\";s:4:\"64px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:25:\"--footer_area_padding-top\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:28:\"--footer_area_padding-bottom\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:3:{s:4:\"name\";s:26:\"--footer_area_padding-left\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:4:\"left\";}i:3;a:3:{s:4:\"name\";s:27:\"--footer_area_padding-right\";s:7:\"element\";s:14:\".fusion-footer\";s:6:\"choice\";s:5:\"right\";}}}s:15:\"footer_bg_color\";a:7:{s:5:\"label\";s:30:\"Hintergrundfarbe der Fußzeile\";s:11:\"description\";s:332:\"Steuert die Hintergrundfarbe der Fusszeile.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:15:\"footer_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--footer_bg_color\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"footer_border_size\";a:8:{s:5:\"label\";s:24:\"Fußleiste Rahmengröße\";s:11:\"description\";s:332:\"Controls the size of the top footer border.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:18:\"footer_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--footer_border_size\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:19:\"footer_border_color\";a:7:{s:5:\"label\";s:25:\"Rahmenfarbe der Fusszeile\";s:11:\"description\";s:330:\"Controls the border colors of the footer.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"footer_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--footer_border_color\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"footer_divider_line\";a:9:{s:5:\"label\";s:41:\"Footer Widgets Area Vertical Divider Line\";s:11:\"description\";s:374:\"Turn on to have the footer widget area display vertical divider line between columns.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"footer_divider_line\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--footer_divider_line-flex\";s:7:\"element\";s:14:\".fusion-footer\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:4:\"flex\";i:1;s:5:\"block\";}s:10:\"conditions\";a:1:{i:0;a:2:{i:0;s:19:\"footer_divider_line\";i:1;s:4:\"true\";}}}}}}s:15:\"partial_refresh\";a:1:{s:27:\"footer_divider_line_partial\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:24:\"footer_divider_line_size\";a:8:{s:5:\"label\";s:46:\"Footer Widgets Area Vertical Divider Line Size\";s:11:\"description\";s:371:\"Controls the size of the vertical divider line between footer widget area columns.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:24:\"footer_divider_line_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--footer_divider_line_size\";s:7:\"element\";s:14:\".fusion-footer\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:25:\"footer_divider_line_style\";a:8:{s:5:\"label\";s:47:\"Footer Widgets Area Vertical Divider Line Style\";s:11:\"description\";s:372:\"Controls the style of the vertical divider line between footer widget area columns.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:25:\"footer_divider_line_style\";s:7:\"default\";s:5:\"solid\";s:7:\"choices\";a:7:{s:4:\"none\";s:4:\"None\";s:5:\"solid\";s:5:\"Solid\";s:6:\"dashed\";s:6:\"Dashed\";s:6:\"dotted\";s:6:\"Dotted\";s:6:\"double\";s:6:\"Double\";s:6:\"groove\";s:6:\"Groove\";s:5:\"ridge\";s:5:\"Ridge\";}s:4:\"type\";s:6:\"select\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--footer_divider_line_style\";s:7:\"element\";s:14:\".fusion-footer\";}}}s:20:\"footer_divider_color\";a:7:{s:5:\"label\";s:40:\"Trennlinienfarbe im Widget der Fusszeile\";s:11:\"description\";s:420:\"Kontrolliert die Farbe der Teiler in den Fußleistenwidgets und ebenfalls die der vertikalen Teilerlinien zwischen Widgetbereichen.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"footer_divider_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--footer_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"footer_widgets_padding\";a:9:{s:5:\"label\";s:32:\"Fußleiste Widgetbereich Padding\";s:11:\"description\";s:362:\"Kontrolliert das rechte/linke Padding für den Fußleisten-Widgetbereich.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:22:\"footer_widgets_padding\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}}s:5:\"class\";s:16:\"fusion-or-gutter\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--footer_widgets_padding\";s:7:\"element\";s:14:\".fusion-footer\";}}}s:17:\"copyright_padding\";a:8:{s:5:\"label\";s:17:\"Copyright Padding\";s:11:\"description\";s:348:\"Kontrolliert das obere/untere Padding im Copyright-Bereich.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"copyright_padding\";s:7:\"default\";a:2:{s:3:\"top\";s:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";}s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:4:\"type\";s:7:\"spacing\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:23:\"--copyright_padding-top\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:26:\"--copyright_padding-bottom\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:6:\"choice\";s:6:\"bottom\";}}}s:18:\"copyright_bg_color\";a:7:{s:5:\"label\";s:31:\"Hintergrundfarbe des Copyrights\";s:11:\"description\";s:348:\"Controls the background color of the footer copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:18:\"copyright_bg_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--copyright_bg_color\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"copyright_border_size\";a:8:{s:5:\"label\";s:23:\"Copyright Rahmengröße\";s:11:\"description\";s:335:\"Controls the size of the top copyright border.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:21:\"copyright_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--copyright_border_size\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"copyright_border_color\";a:7:{s:5:\"label\";s:26:\"Rahmenfarbe des Copyrights\";s:11:\"description\";s:346:\"Controls the border colors for the footer copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:22:\"copyright_border_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--copyright_border_color\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"footer_typography_info\";a:4:{s:5:\"label\";s:22:\"Fußleiste Typographie\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"footer_typography_info\";s:4:\"type\";s:4:\"info\";}s:26:\"footer_headings_typography\";a:8:{s:2:\"id\";s:26:\"footer_headings_typography\";s:5:\"label\";s:37:\"Fußleiste Überschriften Typographie\";s:11:\"description\";s:376:\"Diese Einstellungen kontrollieren die Typographie der Überschriften in der Fußleiste.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:4:\"type\";s:10:\"typography\";s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography2-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography2-font-size)\";s:11:\"font-weight\";s:3:\"600\";s:11:\"line-height\";s:34:\"var(--awb-typography2-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography2-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color1)\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:7:{i:0;a:3:{s:4:\"name\";s:40:\"--footer_headings_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:26:\"footer_headings_typography\";}}i:1;a:2:{s:4:\"name\";s:38:\"--footer_headings_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:40:\"--footer_headings_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:3;a:2:{s:4:\"name\";s:40:\"--footer_headings_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:4;a:2:{s:4:\"name\";s:39:\"--footer_headings_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:3:{s:4:\"name\";s:43:\"--footer_headings_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:6;a:2:{s:4:\"name\";s:34:\"--footer_headings_typography-color\";s:6:\"choice\";s:5:\"color\";}}}s:17:\"footer_text_color\";a:7:{s:5:\"label\";s:22:\"Fußzeile Schriftfarbe\";s:11:\"description\";s:340:\"Steuert die Textfarbe der Schrift in der Fusszeile.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"footer_text_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 40%))\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--footer_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:17:\"footer_link_color\";a:7:{s:5:\"label\";s:19:\"Fußzeile Linkfarbe\";s:11:\"description\";s:338:\"Steuert die Textfarbe der Links in der Fusszeile.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"footer_link_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:19:\"--footer_link_color\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"footer_link_color_hover\";a:7:{s:5:\"label\";s:35:\"Fußleiste Link Farbe bei Mouseover\";s:11:\"description\";s:343:\"Controls the text hover color of the footer link font.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:23:\"footer_link_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:25:\"--footer_link_color_hover\";s:7:\"element\";s:26:\".fusion-footer-widget-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"copyright_text_color\";a:7:{s:5:\"label\";s:20:\"Copyright Text Farbe\";s:11:\"description\";s:58:\"Kontrolliert die Textfarbe im Copyright-Fußzeilenbereich.\";s:2:\"id\";s:20:\"copyright_text_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 60%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"footer_copyright\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--copyright_text_color\";s:7:\"element\";s:24:\".fusion-copyright-notice\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"copyright_link_color\";a:7:{s:5:\"label\";s:20:\"Copyright Link Farbe\";s:11:\"description\";s:64:\"Kontrolliert die Farbe des Links im Copyright-Fußzeilenbereich.\";s:2:\"id\";s:20:\"copyright_link_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"footer_copyright\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--copyright_link_color\";s:7:\"element\";s:24:\".fusion-copyright-notice\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"copyright_link_color_hover\";a:7:{s:5:\"label\";s:26:\"Copyright Link Hover Color\";s:11:\"description\";s:59:\"Controls the link hover color of the footer copyright area.\";s:2:\"id\";s:26:\"copyright_link_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"footer_copyright\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--copyright_link_color_hover\";s:7:\"element\";s:29:\".fusion-footer-copyright-area\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"copyright_font_size\";a:8:{s:5:\"label\";s:24:\"Schriftgrösse Copyright\";s:11:\"description\";s:335:\"Controls the font size for the copyright text.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"copyright_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--copyright_font_size\";s:7:\"element\";s:24:\".fusion-copyright-notice\";}}}}}}}s:8:\"sidebars\";a:7:{s:5:\"label\";s:13:\"Seitenleisten\";s:2:\"id\";s:16:\"heading_sidebars\";s:8:\"is_panel\";b:1;s:8:\"priority\";i:10;s:4:\"icon\";s:15:\"el-icon-website\";s:8:\"alt_icon\";s:15:\"fusiona-sidebar\";s:6:\"fields\";a:7:{s:16:\"sidebars_styling\";a:5:{s:5:\"label\";s:23:\"Seitenleiste Gestaltung\";s:2:\"id\";s:16:\"sidebars_styling\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:7:{s:24:\"responsive_sidebar_order\";a:8:{s:2:\"id\";s:24:\"responsive_sidebar_order\";s:5:\"label\";s:24:\"Sidebar Responsive Order\";s:11:\"description\";s:101:\"Choose the order of sidebars and main content area on mobile layouts through drag &amp; drop sorting.\";s:4:\"type\";s:8:\"sortable\";s:7:\"choices\";a:3:{s:7:\"content\";s:6:\"Inhalt\";s:7:\"sidebar\";s:14:\"Seitenleiste 1\";s:9:\"sidebar-2\";s:14:\"Seitenleiste 2\";}s:7:\"default\";s:25:\"content,sidebar,sidebar-2\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:10:\"responsive\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:14:\"sidebar_sticky\";a:7:{s:5:\"label\";s:20:\"Sticky Seitenleisten\";s:11:\"description\";s:266:\"Select the sidebar(s) that should remain sticky when scrolling the page. If the sidebar content is taller than the screen, it acts like a normal sidebar until the bottom of the sidebar is within the viewport, which will then remain fixed in place as you scroll down.\";s:2:\"id\";s:14:\"sidebar_sticky\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:4:\"none\";s:5:\"Keine\";s:11:\"sidebar_one\";s:14:\"Seitenleiste 1\";s:11:\"sidebar_two\";s:14:\"Seitenleiste 2\";s:4:\"both\";s:5:\"Beide\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:15:\"sidebar_padding\";a:7:{s:5:\"label\";s:20:\"Seitenleiste Abstand\";s:11:\"description\";s:29:\"Controls the sidebar padding.\";s:2:\"id\";s:15:\"sidebar_padding\";s:7:\"default\";s:3:\"0px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:17:\"--sidebar_padding\";s:7:\"element\";s:8:\".sidebar\";}i:1;a:3:{s:4:\"name\";s:31:\"--sidebar_padding-percent_to_vw\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:2:{i:0;s:14:\"string_replace\";i:1;a:2:{i:0;s:1:\"%\";i:1;s:2:\"vw\";}}}}}s:16:\"sidebar_bg_color\";a:6:{s:5:\"label\";s:30:\"Seitenleiste Hintergrundfarfbe\";s:11:\"description\";s:46:\"Steuert die Hintergrundfarbe der Seitenleiste.\";s:2:\"id\";s:16:\"sidebar_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--sidebar_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"sidebar_widget_bg_color\";a:6:{s:5:\"label\";s:39:\"Sidebar Widget Heading Background Color\";s:11:\"description\";s:108:\"Controls the background color of the widget title box. If left transparent the widget title will be unboxed.\";s:2:\"id\";s:23:\"sidebar_widget_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:25:\"--sidebar_widget_bg_color\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:3:{s:4:\"name\";s:40:\"--sidebar_widget_bg_color-opaque-padding\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:2:{i:0;s:28:\"return_string_if_transparent\";i:1;a:2:{s:11:\"transparent\";s:0:\"\";s:6:\"opaque\";s:8:\"9px 15px\";}}}}}s:15:\"sidew_font_size\";a:6:{s:5:\"label\";s:52:\"Widget Überschriften Schriftgrösse in Seitenleiste\";s:11:\"description\";s:50:\"Controls the font size of the widget heading text.\";s:2:\"id\";s:15:\"sidew_font_size\";s:7:\"default\";s:4:\"18px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:17:\"--sidew_font_size\";s:7:\"element\";s:8:\".sidebar\";}}}s:21:\"sidebar_heading_color\";a:6:{s:5:\"label\";s:42:\"Widget Überschriftenfarbe in Seitenleiste\";s:11:\"description\";s:54:\"Controls the color of the sidebar widget heading text.\";s:2:\"id\";s:21:\"sidebar_heading_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:23:\"--sidebar_heading_color\";s:7:\"element\";s:8:\".sidebar\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:22:\"pages_sidebars_section\";a:5:{s:5:\"label\";s:6:\"Seiten\";s:2:\"id\";s:22:\"pages_sidebars_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:4:{s:13:\"pages_sidebar\";a:7:{s:5:\"label\";s:21:\"Global Page Sidebar 1\";s:11:\"description\";s:75:\"Wählen Sie Seitenleiste 1 aus, die auf allen Seiten angezeigt werden soll.\";s:2:\"id\";s:13:\"pages_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:15:\"pages_sidebar_2\";a:7:{s:5:\"label\";s:21:\"Global Page Sidebar 2\";s:11:\"description\";s:101:\"Select sidebar 2 that will display on all pages. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:15:\"pages_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:20:\"pages_global_sidebar\";a:6:{s:5:\"label\";s:31:\"Force Global Sidebars For Pages\";s:11:\"description\";s:98:\"Turn on if you want to use the same sidebars on all pages. This option overrides the page options.\";s:2:\"id\";s:20:\"pages_global_sidebar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:19:\"default_sidebar_pos\";a:7:{s:5:\"label\";s:28:\"Global Page Sidebar Position\";s:11:\"description\";s:113:\"Controls the position of sidebar 1 for all pages. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:19:\"default_sidebar_pos\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:5:\"Links\";s:5:\"Right\";s:6:\"Rechts\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}}}s:32:\"portfolio_posts_sidebars_section\";a:6:{s:5:\"label\";s:19:\"Portfolio Beiträge\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:32:\"portfolio_posts_sidebars_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:4:{s:17:\"portfolio_sidebar\";a:7:{s:5:\"label\";s:31:\"Global Portfolio Post Sidebar 1\";s:11:\"description\";s:58:\"Select sidebar 1 that will display on all portfolio posts.\";s:2:\"id\";s:17:\"portfolio_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:19:\"portfolio_sidebar_2\";a:7:{s:5:\"label\";s:31:\"Global Portfolio Post Sidebar 2\";s:11:\"description\";s:111:\"Select sidebar 2 that will display on all portfolio posts. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:19:\"portfolio_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:24:\"portfolio_global_sidebar\";a:6:{s:5:\"label\";s:41:\"Force Global Sidebars For Portfolio Posts\";s:11:\"description\";s:118:\"Turn on if you want to use the same sidebars on all portfolio posts. This option overrides the portfolio post options.\";s:2:\"id\";s:24:\"portfolio_global_sidebar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:26:\"portfolio_sidebar_position\";a:7:{s:5:\"label\";s:39:\"Globale Portfolio Seitenleiste Position\";s:11:\"description\";s:141:\"Controls the position of sidebar 1 for all portfolio posts and archive pages. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:26:\"portfolio_sidebar_position\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:5:\"Links\";s:5:\"Right\";s:6:\"Rechts\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}}}s:49:\"portfolio_archive_category_pages_sidebars_section\";a:6:{s:5:\"label\";s:17:\"Portfolio Archive\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:49:\"portfolio_archive_category_pages_sidebars_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:3:{s:37:\"portfolio_archive_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:325:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The sidebar position for portfolio archive pages is controlled by the option on the <a href=\"https://unternehmen.wir-noi.org/wp-admin/themes.php?page=avada_options&amp;lang=en#portfolio_sidebar\" target=\"_blank\">Portfolio Posts sidebar</a> tab.</div>\";s:2:\"id\";s:37:\"portfolio_archive_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:25:\"portfolio_archive_sidebar\";a:7:{s:5:\"label\";s:27:\"Portfolio Archive Sidebar 1\";s:11:\"description\";s:66:\"Select sidebar 1 that will display on the portfolio archive pages.\";s:2:\"id\";s:25:\"portfolio_archive_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:27:\"portfolio_archive_sidebar_2\";a:7:{s:5:\"label\";s:27:\"Portfolio Archive Sidebar 2\";s:11:\"description\";s:119:\"Select sidebar 2 that will display on the portfolio archive pages. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:27:\"portfolio_archive_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}}}s:27:\"blog_posts_sidebars_section\";a:6:{s:5:\"label\";s:13:\"Blogbeiträge\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"blog_posts_sidebars_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:4:{s:13:\"posts_sidebar\";a:7:{s:5:\"label\";s:26:\"Global Blog Post Sidebar 1\";s:11:\"description\";s:53:\"Select sidebar 1 that will display on all blog posts.\";s:2:\"id\";s:13:\"posts_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:27:\"#sidebar.fusion-widget-area\";}s:9:\"shortcuts\";a:3:{i:0;a:6:{s:10:\"aria_label\";s:27:\"Edit Global Sidebar Options\";s:8:\"callback\";s:23:\"fusionEditGlobalSidebar\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:11:\"fusiona-cog\";s:35:\"link_to_template_if_override_active\";s:7:\"content\";s:13:\"override_icon\";s:15:\"fusiona-content\";}i:1;a:5:{s:10:\"aria_label\";s:20:\"Edit Sidebar Options\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:16:\"fusiona-settings\";s:7:\"context\";s:2:\"po\";s:28:\"disable_on_template_override\";s:7:\"content\";}i:2;a:4:{s:10:\"aria_label\";s:20:\"Edit Sidebar Widgets\";s:9:\"css_class\";s:19:\"fusion-edit-sidebar\";s:4:\"link\";s:52:\"https://unternehmen.wir-noi.org/wp-admin/widgets.php\";s:28:\"disable_on_template_override\";s:7:\"content\";}}}}s:15:\"posts_sidebar_2\";a:7:{s:5:\"label\";s:26:\"Global Blog Post Sidebar 2\";s:11:\"description\";s:106:\"Select sidebar 2 that will display on all blog posts. Sidebar 2 can only be used if sidebar 1 is selected.\";s:2:\"id\";s:15:\"posts_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:29:\"#sidebar-2.fusion-widget-area\";}s:9:\"shortcuts\";a:3:{i:0;a:4:{s:10:\"aria_label\";s:27:\"Edit Global Sidebar Options\";s:8:\"callback\";s:23:\"fusionEditGlobalSidebar\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:11:\"fusiona-cog\";}i:1;a:4:{s:10:\"aria_label\";s:20:\"Edit Sidebar Options\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:16:\"fusiona-settings\";s:7:\"context\";s:2:\"po\";}i:2;a:2:{s:10:\"aria_label\";s:20:\"Edit Sidebar Widgets\";s:4:\"link\";s:52:\"https://unternehmen.wir-noi.org/wp-admin/widgets.php\";}}}}s:20:\"posts_global_sidebar\";a:5:{s:5:\"label\";s:36:\"Force Global Sidebars For Blog Posts\";s:11:\"description\";s:108:\"Turn on if you want to use the same sidebars on all blog posts. This option overrides the blog post options.\";s:2:\"id\";s:20:\"posts_global_sidebar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:21:\"blog_sidebar_position\";a:6:{s:5:\"label\";s:34:\"Globale Blog Seitenleiste Position\";s:11:\"description\";s:136:\"Controls the position of sidebar 1 for all blog posts and archive pages. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:21:\"blog_sidebar_position\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:5:\"Links\";s:5:\"Right\";s:6:\"Rechts\";}}}}s:44:\"blog_archive_category_pages_sidebars_section\";a:6:{s:5:\"label\";s:11:\"Blog Archiv\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:44:\"blog_archive_category_pages_sidebars_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:3:{s:32:\"blog_archive_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:311:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The sidebar position for blog archive pages is controlled by the option on the <a href=\"https://unternehmen.wir-noi.org/wp-admin/themes.php?page=avada_options&amp;lang=en#posts_sidebar\" target=\"_blank\">Blog Posts sidebar</a> tab.</div>\";s:2:\"id\";s:32:\"blog_archive_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:20:\"blog_archive_sidebar\";a:7:{s:5:\"label\";s:28:\"Blog Archive  Seitenleiste 1\";s:11:\"description\";s:70:\"Wählen Sie Seitenleiste 1, die auf Blog-Archive-Seite angezeigt wird.\";s:2:\"id\";s:20:\"blog_archive_sidebar\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:22:\"blog_archive_sidebar_2\";a:7:{s:5:\"label\";s:28:\"Blog Archive  Seitenleiste 2\";s:11:\"description\";s:70:\"Wählen Sie Seitenleiste 2, die auf Blog-Archive-Seite angezeigt wird.\";s:2:\"id\";s:22:\"blog_archive_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}}}s:23:\"search_sidebars_section\";a:6:{s:5:\"label\";s:9:\"Suchseite\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:11:\"search_only\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:3:{s:14:\"search_sidebar\";a:7:{s:5:\"label\";s:24:\"Suchseite Seitenleiste 1\";s:11:\"description\";s:70:\"Wählen Sie Seitenleiste 1, die auf Suchergebnis-Seite angezeigt wird.\";s:2:\"id\";s:14:\"search_sidebar\";s:7:\"default\";s:12:\"Blog Sidebar\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:16:\"search_sidebar_2\";a:7:{s:5:\"label\";s:24:\"Suchseite Seitenleiste 2\";s:11:\"description\";s:149:\"Wählen Sie Seitenleiste 2, die auf der Suchergebnis-Seite anzeigen wird. Seitenliste 2 kann nur benutzt werden, wenn Seitenleiste 1 ausgewählt ist.\";s:2:\"id\";s:16:\"search_sidebar_2\";s:7:\"default\";s:4:\"None\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"None\";s:4:\"None\";s:12:\"Blog Sidebar\";s:12:\"Blog Sidebar\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 1\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 2\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 3\";s:15:\"Footer Widget 4\";s:15:\"Footer Widget 4\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 1\";s:20:\"Sliding Bar Widget 2\";s:20:\"Sliding Bar Widget 2\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}s:23:\"search_sidebar_position\";a:7:{s:5:\"label\";s:28:\"Seitenleisten-Suche Position\";s:11:\"description\";s:127:\"Controls the position of sidebar 1 for the search results page. If sidebar 2 is selected, it will display on the opposite side.\";s:2:\"id\";s:23:\"search_sidebar_position\";s:7:\"default\";s:5:\"Right\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Left\";s:5:\"Links\";s:5:\"Right\";s:6:\"Rechts\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"!==\";s:5:\"value\";s:13:\"100-width.php\";}}}}}}}s:10:\"background\";a:6:{s:5:\"label\";s:11:\"Hintergrund\";s:2:\"id\";s:18:\"heading_background\";s:8:\"priority\";i:11;s:4:\"icon\";s:13:\"el-icon-photo\";s:8:\"alt_icon\";s:13:\"fusiona-image\";s:6:\"fields\";a:2:{s:18:\"page_bg_subsection\";a:6:{s:5:\"label\";s:15:\"Page Background\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:18:\"page_bg_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:6:{s:8:\"bg_image\";a:8:{s:5:\"label\";s:25:\"Background Image For Page\";s:11:\"description\";s:50:\"Select an image to use for a full page background.\";s:2:\"id\";s:8:\"bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:10:\"--bg_image\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:4:\"none\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:9:\"has-image\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:23:\"avada-html-has-bg-image\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:7:\"bg_full\";a:7:{s:5:\"label\";s:20:\"100% Hintergrundbild\";s:11:\"description\";s:107:\"Turn on to have the page background image display at 100% in width and height according to the window size.\";s:2:\"id\";s:7:\"bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:23:\"avada-has-bg-image-full\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:9:\"bg_repeat\";a:8:{s:5:\"label\";s:23:\"Hintergrund wiederholen\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:9:\"bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:16:\"Alle Wiederholen\";s:8:\"repeat-x\";s:22:\"Horizontal Wiederholen\";s:8:\"repeat-y\";s:20:\"Vertikal Wiederholen\";s:9:\"no-repeat\";s:18:\"Keine Wiederholung\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:8:\"bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:11:\"--bg_repeat\";}}}s:8:\"bg_color\";a:6:{s:5:\"label\";s:25:\"Background Color For Page\";s:11:\"description\";s:167:\"Controls the background color for the page. When the color value is set to anything below 100% opacity, the color will overlay the background image if one is uploaded.\";s:2:\"id\";s:8:\"bg_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:10:\"--bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:18:\"--bg-color-overlay\";s:8:\"callback\";a:2:{i:0;s:22:\"return_color_if_opaque\";i:1;a:2:{s:11:\"transparent\";s:7:\"overlay\";s:6:\"opaque\";s:6:\"normal\";}}}}}s:17:\"bg_pattern_option\";a:6:{s:5:\"label\";s:17:\"Hintergrundmuster\";s:11:\"description\";s:52:\"Turn on to display a pattern in the page background.\";s:2:\"id\";s:17:\"bg_pattern_option\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:9:\"body,html\";s:9:\"className\";s:33:\"avada-has-page-background-pattern\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"bg_pattern\";a:7:{s:5:\"label\";s:33:\"Wählen Sie ein Hintergrundmuster\";s:2:\"id\";s:10:\"bg_pattern\";s:7:\"default\";s:8:\"pattern1\";s:4:\"type\";s:11:\"radio-image\";s:7:\"choices\";a:22:{s:8:\"pattern1\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern1.png\";s:8:\"pattern2\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern2.png\";s:8:\"pattern3\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern3.png\";s:8:\"pattern4\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern4.png\";s:8:\"pattern5\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern5.png\";s:8:\"pattern6\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern6.png\";s:8:\"pattern7\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern7.png\";s:8:\"pattern8\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern8.png\";s:8:\"pattern9\";s:91:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern9.png\";s:9:\"pattern10\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern10.png\";s:9:\"pattern11\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern11.png\";s:9:\"pattern12\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern12.png\";s:9:\"pattern13\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern13.png\";s:9:\"pattern14\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern14.png\";s:9:\"pattern15\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern15.png\";s:9:\"pattern16\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern16.png\";s:9:\"pattern17\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern17.png\";s:9:\"pattern18\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern18.png\";s:9:\"pattern19\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern19.png\";s:9:\"pattern20\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern20.png\";s:9:\"pattern21\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern21.png\";s:9:\"pattern22\";s:92:\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/pattern22.png\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"bg_pattern_option\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:12:\"--bg_pattern\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:91:\"url(\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/patterns/$.png\")\";i:1;s:0:\"\";}}}}}}}s:26:\"main_content_bg_subsection\";a:6:{s:5:\"label\";s:23:\"Main Content Background\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:26:\"main_content_bg_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:4:{s:16:\"content_bg_color\";a:7:{s:5:\"label\";s:29:\"Main Content Background Color\";s:11:\"description\";s:59:\"Steuert die Hintergrundfarbe des Bereichs des Hauptinhalts.\";s:2:\"id\";s:16:\"content_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--content_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:10:\"not-opaque\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:27:\"avada-content-bg-not-opaque\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"content_bg_image\";a:7:{s:5:\"label\";s:49:\"Hintergrundbild für den Bereich des Hauptinhalts\";s:11:\"description\";s:60:\"Select an image to use for the main content area background.\";s:2:\"id\";s:16:\"content_bg_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--content_bg_image\";s:6:\"choice\";s:3:\"url\";s:8:\"callback\";a:2:{i:0;s:17:\"fallback_to_value\";i:1;a:2:{i:0;s:8:\"url(\"$\")\";i:1;s:4:\"none\";}}}}}s:15:\"content_bg_full\";a:7:{s:5:\"label\";s:20:\"100% Hintergrundbild\";s:11:\"description\";s:115:\"Turn on to have the main content background image display at 100% in width and height according to the window size.\";s:2:\"id\";s:15:\"content_bg_full\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:5:\"#main\";s:9:\"className\";s:7:\"full-bg\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"content_bg_repeat\";a:8:{s:5:\"label\";s:23:\"Hintergrund wiederholen\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:16:\"Alle Wiederholen\";s:8:\"repeat-x\";s:22:\"Horizontal Wiederholen\";s:8:\"repeat-y\";s:20:\"Vertikal Wiederholen\";s:9:\"no-repeat\";s:18:\"Keine Wiederholung\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:0:\"\";}i:1;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:1:{s:3:\"url\";s:0:\"\";}}i:2;a:3:{s:7:\"setting\";s:16:\"content_bg_image\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--content_bg_repeat\";}}}}}}}s:10:\"typography\";a:7:{s:5:\"label\";s:10:\"Typografie\";s:2:\"id\";s:18:\"heading_typography\";s:8:\"is_panel\";b:1;s:8:\"priority\";i:12;s:4:\"icon\";s:16:\"el-icon-fontsize\";s:8:\"alt_icon\";s:18:\"fusiona-font-solid\";s:6:\"fields\";a:4:{s:17:\"global_typography\";a:4:{s:5:\"label\";s:17:\"Global Typography\";s:2:\"id\";s:17:\"global_typography\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:1:{s:15:\"typography_sets\";a:6:{s:5:\"label\";s:15:\"Typography Sets\";s:11:\"description\";s:520:\"Set your global typography sets. The sets defined here can be used from other global options, and element options. Each of the options within these sets can be individually overridden in options using the sets. <strong>IMPORTANT NOTE:</strong> If a global set that is used by other options gets deleted, these corresponding options will display the default font. Typography sets are internally stored with a fixed counter. Thus, adding a new set after deleting an old one, will set the same internal name to the new set.\";s:2:\"id\";s:15:\"typography_sets\";s:7:\"default\";a:5:{s:11:\"typography1\";a:11:{s:5:\"label\";s:8:\"Headings\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"46px\";s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography2\";a:11:{s:5:\"label\";s:11:\"Subheadings\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.1\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography3\";a:11:{s:5:\"label\";s:4:\"Lead\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography4\";a:11:{s:5:\"label\";s:4:\"Body\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:4:\"1.72\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}s:11:\"typography5\";a:11:{s:5:\"label\";s:5:\"Small\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"line-height\";s:4:\"1.72\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:4:\"none\";s:13:\"not_removable\";b:1;}}s:4:\"type\";s:15:\"typography-sets\";s:9:\"transport\";s:11:\"postMessage\";}}}s:15:\"body_typography\";a:4:{s:5:\"label\";s:15:\"Body Typography\";s:2:\"id\";s:15:\"body_typography\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:3:{s:35:\"body_typography_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:265:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> This tab contains general typography options. Additional typography options for specific areas can be found within other tabs. Example: For menu typography options go to the menu tab.</div>\";s:2:\"id\";s:35:\"body_typography_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:15:\"body_typography\";a:8:{s:2:\"id\";s:15:\"body_typography\";s:5:\"label\";s:15:\"Body Typography\";s:11:\"description\";s:56:\"These settings control the typography for all body text.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography4-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography4-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:8:\"css_vars\";a:8:{i:0;a:3:{s:4:\"name\";s:29:\"--body_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:15:\"body_typography\";}}i:1;a:2:{s:4:\"name\";s:27:\"--body_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:2;a:3:{s:4:\"name\";s:16:\"--base-font-size\";s:6:\"choice\";s:9:\"font-size\";s:8:\"callback\";a:2:{i:0;s:23:\"convert_font_size_to_px\";i:1;s:0:\"\";}}i:3;a:3:{s:4:\"name\";s:29:\"--body_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:28:\"--body_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:29:\"--body_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:6;a:3:{s:4:\"name\";s:32:\"--body_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:7;a:3:{s:4:\"name\";s:23:\"--body_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}}}s:10:\"link_color\";a:6:{s:5:\"label\";s:10:\"Link Farbe\";s:11:\"description\";s:36:\"Bestimmt die Farbe aller Text-Links.\";s:2:\"id\";s:10:\"link_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:12:\"--link_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:15:\"--link_color-8a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.8\";}}}}}}s:26:\"headers_typography_section\";a:4:{s:5:\"label\";s:18:\"Heading Typography\";s:2:\"id\";s:26:\"headers_typography_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:9:{s:38:\"headers_typography_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:265:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> This tab contains heading typography options. Additional typography options for specific areas can be found within other tabs. Example: For menu typography options go to the menu tab.</div>\";s:2:\"id\";s:38:\"headers_typography_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:13:\"h1_typography\";a:8:{s:2:\"id\";s:13:\"h1_typography\";s:5:\"label\";s:22:\"H1 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H1 headings.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:8:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;}s:7:\"default\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"64px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:27:\"--h1_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h1_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h1_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h1_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h1_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h1_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h1_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h1_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:26:\"--h1_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:8;a:2:{s:4:\"name\";s:29:\"--h1_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h2_typography\";a:8:{s:2:\"id\";s:13:\"h2_typography\";s:5:\"label\";s:22:\"H2 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H2 headings.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:8:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;}s:7:\"default\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"48px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:27:\"--h2_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h2_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h2_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h2_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h2_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h2_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h2_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h2_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:26:\"--h2_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:8;a:2:{s:4:\"name\";s:29:\"--h2_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h3_typography\";a:8:{s:2:\"id\";s:13:\"h3_typography\";s:5:\"label\";s:22:\"H3 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H3 headings.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:8:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;}s:7:\"default\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"36px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:27:\"--h3_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h3_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h3_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h3_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h3_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h3_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h3_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h3_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:26:\"--h3_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:8;a:2:{s:4:\"name\";s:29:\"--h3_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h4_typography\";a:8:{s:2:\"id\";s:13:\"h4_typography\";s:5:\"label\";s:22:\"H4 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H4 headings.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:8:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;}s:7:\"default\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"24px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:27:\"--h4_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h4_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h4_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h4_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h4_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h4_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h4_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h4_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:26:\"--h4_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:8;a:2:{s:4:\"name\";s:29:\"--h4_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h5_typography\";a:8:{s:2:\"id\";s:13:\"h5_typography\";s:5:\"label\";s:22:\"H5 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H5 headings.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:8:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;}s:7:\"default\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"20px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:27:\"--h5_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h5_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h5_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h5_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h5_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h5_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h5_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h5_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:26:\"--h5_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:8;a:2:{s:4:\"name\";s:29:\"--h5_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:13:\"h6_typography\";a:8:{s:2:\"id\";s:13:\"h6_typography\";s:5:\"label\";s:22:\"H6 Headings Typography\";s:11:\"description\";s:58:\"These settings control the typography for all H6 headings.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:8:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;s:10:\"margin-top\";b:1;s:13:\"margin-bottom\";b:1;}s:7:\"default\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"16px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";}s:8:\"css_vars\";a:9:{i:0;a:3:{s:4:\"name\";s:27:\"--h6_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:13:\"h6_typography\";}}i:1;a:3:{s:4:\"name\";s:27:\"--h6_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:27:\"--h6_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:30:\"--h6_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:26:\"--h6_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:25:\"--h6_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:21:\"--h6_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}i:7;a:2:{s:4:\"name\";s:26:\"--h6_typography-margin-top\";s:6:\"choice\";s:10:\"margin-top\";}i:8;a:2:{s:4:\"name\";s:29:\"--h6_typography-margin-bottom\";s:6:\"choice\";s:13:\"margin-bottom\";}}}s:21:\"post_title_typography\";a:8:{s:2:\"id\";s:21:\"post_title_typography\";s:5:\"label\";s:21:\"Post Title Typography\";s:11:\"description\";s:207:\"These settings control the typography of all post titles including archive and single posts.<br /><strong>IMPORTANT:</strong> On archive pages and in blog elements the linked post titles will use link color.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"48px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:8:\"css_vars\";a:7:{i:0;a:3:{s:4:\"name\";s:35:\"--post_title_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:21:\"post_title_typography\";}}i:1;a:3:{s:4:\"name\";s:35:\"--post_title_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:35:\"--post_title_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:38:\"--post_title_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:34:\"--post_title_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:33:\"--post_title_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:29:\"--post_title_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}}}s:29:\"post_titles_extras_typography\";a:8:{s:2:\"id\";s:29:\"post_titles_extras_typography\";s:5:\"label\";s:28:\"Post Title Extras Typography\";s:11:\"description\";s:163:\"These settings control the typography of single post title extras such as &quot;Comments&quot;, &quot;Related Posts or Projects&quot; and &quot;Author Titles&quot;\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:9:\"font-size\";s:4:\"20px\";s:11:\"font-weight\";s:3:\"400\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:8:\"css_vars\";a:7:{i:0;a:3:{s:4:\"name\";s:43:\"--post_titles_extras_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:29:\"post_titles_extras_typography\";}}i:1;a:3:{s:4:\"name\";s:43:\"--post_titles_extras_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:2:{s:4:\"name\";s:43:\"--post_titles_extras_typography-line-height\";s:6:\"choice\";s:11:\"line-height\";}i:3;a:3:{s:4:\"name\";s:46:\"--post_titles_extras_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:4;a:2:{s:4:\"name\";s:42:\"--post_titles_extras_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:5;a:2:{s:4:\"name\";s:41:\"--post_titles_extras_typography-font-size\";s:6:\"choice\";s:9:\"font-size\";}i:6;a:3:{s:4:\"name\";s:37:\"--post_titles_extras_typography-color\";s:6:\"choice\";s:5:\"color\";s:8:\"callback\";a:2:{i:0;s:14:\"sanitize_color\";i:1;s:0:\"\";}}}}}}s:33:\"custom_webfont_typography_section\";a:4:{s:5:\"label\";s:19:\"Benutzer Schriftart\";s:2:\"id\";s:33:\"custom_webfont_typography_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:2:{s:17:\"custom_fonts_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:391:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Please upload your custom fonts below. Once you upload a custom font, <strong>you will have to save your options and reload this page on your browser</strong>. After you reload the page you will be able to select your new fonts - they will be available at the top of the fonts-list in the typography controls.</div>\";s:2:\"id\";s:17:\"custom_fonts_info\";s:4:\"type\";s:6:\"custom\";}s:12:\"custom_fonts\";a:9:{s:5:\"label\";s:19:\"Benutzer Schriftart\";s:11:\"description\";s:233:\"Upload a custom font to use throughout the site. All files are not necessary but are recommended for full browser support. You can upload as many custom fonts as you need. Click the &quot;Add&quot; button for additional upload boxes.\";s:2:\"id\";s:12:\"custom_fonts\";s:7:\"default\";a:0:{}s:4:\"type\";s:8:\"repeater\";s:10:\"bind_title\";s:4:\"name\";s:5:\"limit\";i:50;s:9:\"transport\";s:11:\"postMessage\";s:6:\"fields\";a:6:{s:4:\"name\";a:6:{s:5:\"label\";s:9:\"Font Name\";s:11:\"description\";s:46:\"This will be used in the font-family dropdown.\";s:2:\"id\";s:4:\"name\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:5:\"class\";s:22:\"avada-custom-font-name\";}s:5:\"woff2\";a:6:{s:5:\"label\";s:5:\"WOFF2\";s:2:\"id\";s:5:\"woff2\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:4:\"woff\";a:6:{s:5:\"label\";s:4:\"WOFF\";s:2:\"id\";s:4:\"woff\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:3:\"ttf\";a:6:{s:5:\"label\";s:3:\"TTF\";s:2:\"id\";s:3:\"ttf\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:3:\"eot\";a:6:{s:5:\"label\";s:3:\"EOT\";s:2:\"id\";s:3:\"eot\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}s:3:\"svg\";a:6:{s:5:\"label\";s:3:\"SVG\";s:2:\"id\";s:3:\"svg\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:4:\"mode\";b:0;s:7:\"preview\";b:0;}}}}}}}s:4:\"blog\";a:7:{s:5:\"label\";s:4:\"Blog\";s:2:\"id\";s:12:\"blog_section\";s:8:\"priority\";i:15;s:4:\"icon\";s:17:\"el-icon-file-edit\";s:8:\"alt_icon\";s:12:\"fusiona-blog\";s:5:\"class\";s:22:\"hidden-section-heading\";s:6:\"fields\";a:3:{s:20:\"blog_general_options\";a:6:{s:5:\"label\";s:12:\"General Blog\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:20:\"blog_general_options\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:25:{s:32:\"general_blog_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:354:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab only control the assigned blog page in \"Settings > Reading\", blog archives or the blog single post page, not the blog element. The only options on this tab that work with the blog element are the Date Format options and Load More Post Button Color.</div>\";s:2:\"id\";s:32:\"general_blog_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:19:\"blog_page_title_bar\";a:7:{s:5:\"label\";s:19:\"Blog Page Title Bar\";s:11:\"description\";s:85:\"Controls how the page title bar displays on single blog posts and blog archive pages.\";s:2:\"id\";s:19:\"blog_page_title_bar\";s:7:\"default\";s:15:\"bar_and_content\";s:7:\"choices\";a:3:{s:15:\"bar_and_content\";s:24:\"Zeige Leiste und Inhalte\";s:12:\"content_only\";s:17:\"Zeige nur Inhalte\";s:4:\"hide\";s:10:\"Ausblenden\";}s:4:\"type\";s:6:\"select\";s:15:\"partial_refresh\";a:1:{s:43:\"page_title_bar_contents_blog_page_title_bar\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:24:\"blog_show_page_title_bar\";a:7:{s:5:\"label\";s:28:\"Blog Assigned Page Title Bar\";s:11:\"description\";s:104:\"Controls how the page title bar displays on the assigned blog page in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:24:\"blog_show_page_title_bar\";s:7:\"default\";s:15:\"bar_and_content\";s:7:\"choices\";a:3:{s:15:\"bar_and_content\";s:24:\"Zeige Leiste und Inhalte\";s:12:\"content_only\";s:17:\"Zeige nur Inhalte\";s:4:\"hide\";s:10:\"Ausblenden\";}s:4:\"type\";s:6:\"select\";s:15:\"partial_refresh\";a:1:{s:48:\"page_title_bar_contents_blog_show_page_title_bar\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:10:\"blog_title\";a:7:{s:5:\"label\";s:16:\"Blog Seitentitel\";s:11:\"description\";s:147:\"Controls the title text that displays in the page title bar only if your front page displays your latest post in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:10:\"blog_title\";s:7:\"default\";s:4:\"Blog\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"blog_show_page_title_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"hide\";}}s:15:\"partial_refresh\";a:1:{s:18:\"blog_title_partial\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:13:\"blog_subtitle\";a:7:{s:5:\"label\";s:21:\"Blog-Seite Untertitel\";s:11:\"description\";s:150:\"Controls the subtitle text that displays in the page title bar only if your front page displays your latest post in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:13:\"blog_subtitle\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"blog_show_page_title_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"hide\";}}s:15:\"partial_refresh\";a:1:{s:21:\"blog_subtitle_partial\";a:3:{s:8:\"selector\";s:28:\".avada-page-titlebar-wrapper\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:21:\"page_titlebar_wrapper\";}}}}s:11:\"blog_layout\";a:8:{s:5:\"label\";s:11:\"Blog Layout\";s:11:\"description\";s:84:\"Controls the layout for the assigned blog page in &quot;Settings &gt; Reading&quot;.\";s:2:\"id\";s:11:\"blog_layout\";s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:5:\"large\";s:5:\"Groß\";s:6:\"medium\";s:6:\"Mittel\";s:15:\"large alternate\";s:16:\"Groß Alternativ\";s:16:\"medium alternate\";s:17:\"Mittel Alternativ\";s:4:\"grid\";s:4:\"Grid\";s:8:\"timeline\";s:10:\"Zeitleiste\";s:7:\"masonry\";s:7:\"Masonry\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:26:\".blog .fusion-blog-archive\";}s:9:\"shortcuts\";a:1:{i:0;a:1:{s:10:\"aria_label\";s:17:\"Edit Blog Options\";}}}}s:19:\"blog_archive_layout\";a:7:{s:5:\"label\";s:19:\"Blog Archive Layout\";s:11:\"description\";s:47:\"Controls the layout for the blog archive pages.\";s:2:\"id\";s:19:\"blog_archive_layout\";s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:5:\"large\";s:5:\"Groß\";s:6:\"medium\";s:6:\"Mittel\";s:15:\"large alternate\";s:16:\"Groß Alternativ\";s:16:\"medium alternate\";s:17:\"Mittel Alternativ\";s:4:\"grid\";s:4:\"Grid\";s:8:\"timeline\";s:10:\"Zeitleiste\";s:7:\"masonry\";s:7:\"Masonry\";}s:15:\"update_callback\";a:1:{i:0;a:4:{i:0;a:3:{s:9:\"condition\";s:11:\"is_category\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:6:\"is_tag\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:2;a:3:{s:9:\"condition\";s:7:\"is_date\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:3;a:3:{s:9:\"condition\";s:9:\"is_author\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:20:\"blog_pagination_type\";a:7:{s:5:\"label\";s:22:\"Seitennummerierung Typ\";s:11:\"description\";s:115:\"Controls the pagination type for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:20:\"blog_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:10:\"pagination\";s:16:\"Seitennavigation\";s:15:\"infinite_scroll\";s:18:\"Infinite Scrolling\";s:16:\"load_more_button\";s:20:\"Weitere Laden Button\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:36:\"blog_load_more_posts_button_bg_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Button Background Color\";s:11:\"description\";s:94:\"Controls the background color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:36:\"blog_load_more_posts_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:38:\"--blog_load_more_posts_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:38:\"blog_load_more_posts_button_text_color\";a:7:{s:5:\"label\";s:33:\"Load More Posts Button Text Color\";s:11:\"description\";s:88:\"Controls the text color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:38:\"blog_load_more_posts_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:40:\"--blog_load_more_posts_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:42:\"blog_load_more_posts_hover_button_bg_color\";a:7:{s:5:\"label\";s:45:\"Load More Posts Button Hover Background Color\";s:11:\"description\";s:100:\"Controls the hover background color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:42:\"blog_load_more_posts_hover_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:44:\"--blog_load_more_posts_hover_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:44:\"blog_load_more_posts_hover_button_text_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Hover Button Text Color\";s:11:\"description\";s:94:\"Controls the hover text color of the load more button for ajax post loading for blog archives.\";s:2:\"id\";s:44:\"blog_load_more_posts_hover_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:46:\"--blog_load_more_posts_hover_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:20:\"blog_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:25:\"blog_archive_grid_columns\";a:9:{s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:218:\"Controls the number of columns for grid and masonry layout when using it for the assigned blog page in \"Settings > Reading\" or blog archive pages. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:25:\"blog_archive_grid_columns\";s:7:\"default\";i:3;s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:32:\"blog_archive_grid_column_spacing\";a:11:{s:5:\"label\";s:14:\"Spaltenabstand\";s:11:\"description\";s:171:\"Controls the column spacing for blog posts for grid and masonry layout when using it for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:32:\"blog_archive_grid_column_spacing\";s:7:\"default\";s:2:\"40\";s:4:\"type\";s:6:\"slider\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:9:\"transport\";s:7:\"refresh\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--blog_archive_grid_column_spacing\";s:13:\"value_pattern\";s:3:\"$px\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:18:\"blog_equal_heights\";a:9:{s:5:\"label\";s:13:\"Equal Heights\";s:11:\"description\";s:55:\"Turn on to display grid boxes to equal heights per row.\";s:2:\"id\";s:18:\"blog_equal_heights\";s:7:\"default\";i:0;s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}}s:9:\"transport\";s:7:\"refresh\";s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:25:\"blog_archive_grid_padding\";a:9:{s:5:\"label\";s:30:\"Blog Archive Grid Text Padding\";s:11:\"description\";s:106:\"Controls the top/right/bottom/left padding of the blog text when using grid / masonry or timeline layout. \";s:2:\"id\";s:25:\"blog_archive_grid_padding\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"30px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:4;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:5;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}}s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:31:\"--blog_archive_grid_padding-top\";s:6:\"choice\";s:3:\"top\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}i:1;a:3:{s:4:\"name\";s:34:\"--blog_archive_grid_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}i:2;a:3:{s:4:\"name\";s:32:\"--blog_archive_grid_padding-left\";s:6:\"choice\";s:4:\"left\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}i:3;a:3:{s:4:\"name\";s:33:\"--blog_archive_grid_padding-right\";s:6:\"choice\";s:5:\"right\";s:7:\"element\";s:28:\".fusion-post-content-wrapper\";}}}s:21:\"blog_layout_alignment\";a:9:{s:5:\"label\";s:35:\"Blog Archive Grid Content Alignment\";s:11:\"description\";s:93:\"Controls the content alignment of the blog text when using grid / masonry or timeline layout.\";s:2:\"id\";s:21:\"blog_layout_alignment\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:0:\"\";s:9:\"Text Flow\";s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:6:{i:0;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:2;a:3:{s:7:\"setting\";s:11:\"blog_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}i:3;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:4;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}i:5;a:3:{s:7:\"setting\";s:19:\"blog_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:8:\"timeline\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:14:\"content_length\";a:6:{s:5:\"label\";s:20:\"Blog Content Display\";s:11:\"description\";s:177:\"Controls if the blog content displays an excerpt or full content or is completely disabled for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:14:\"content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"excerpt\";s:6:\"Auszug\";s:12:\"full_content\";s:15:\"Gesamter Inhalt\";s:4:\"hide\";s:7:\"No Text\";}}s:19:\"excerpt_length_blog\";a:8:{s:5:\"label\";s:13:\"Auszugslänge\";s:11:\"description\";s:207:\"Controls post excerts length for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages. Limit is applied to number of letter or words depending on Basis for Excerpt Length option.\";s:2:\"id\";s:19:\"excerpt_length_blog\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"content_length\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"excerpt\";}}s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:18:\"strip_html_excerpt\";a:6:{s:5:\"label\";s:24:\"HTML im Auszug entfernen\";s:11:\"description\";s:133:\"Turn on to strip HTML content from the excerpt for the assigned blog page in &quot;Settings &gt; Reading&quot; or blog archive pages.\";s:2:\"id\";s:18:\"strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}s:15:\"featured_images\";a:7:{s:5:\"label\";s:43:\"Featured Image / Video on Blog Archive Page\";s:11:\"description\";s:72:\"Turn on to display featured images and videos on the blog archive pages.\";s:2:\"id\";s:15:\"featured_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:2:{i:0;a:3:{s:9:\"condition\";s:7:\"is_home\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}i:1;a:3:{s:9:\"condition\";s:10:\"is_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:2:{i:0;s:64:\"body:not(.single-avada_portfolio) .fusion-featured-image-wrapper\";i:1;s:77:\".single-avada_portfolio .fusion-featured-image-wrapper .fusion-post-slideshow\";}s:9:\"shortcuts\";a:1:{i:0;a:4:{s:10:\"aria_label\";s:19:\"Edit Featured Image\";s:8:\"callback\";s:23:\"fusionEditFeaturedImage\";s:9:\"css_class\";s:0:\"\";s:4:\"icon\";s:13:\"fusiona-image\";}}}}s:15:\"dates_box_color\";a:6:{s:5:\"label\";s:36:\"Blog Alternate Layout Date Box Color\";s:11:\"description\";s:78:\"Controls the color of the date box in blog alternate and recent posts layouts.\";s:2:\"id\";s:15:\"dates_box_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:17:\"--dates_box_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:32:\"alternate_date_format_month_year\";a:5:{s:5:\"label\";s:43:\"Blog Alternate Layout Month and Year Format\";s:11:\"description\";s:207:\"Controls the month and year format for blog alternate layouts. <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date and Time</a>\";s:2:\"id\";s:32:\"alternate_date_format_month_year\";s:7:\"default\";s:4:\"m, Y\";s:4:\"type\";s:4:\"text\";}s:25:\"alternate_date_format_day\";a:5:{s:5:\"label\";s:32:\"Blog Alternate Layout Day Format\";s:11:\"description\";s:196:\"Controls the day format for blog alternate layouts. <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date and Time</a>\";s:2:\"id\";s:25:\"alternate_date_format_day\";s:7:\"default\";s:1:\"j\";s:4:\"type\";s:4:\"text\";}s:20:\"timeline_date_format\";a:5:{s:5:\"label\";s:32:\"Blog Timeline Layout Date Format\";s:11:\"description\";s:197:\"Controls the timeline label format for blog timeline layouts. <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date</a>\";s:2:\"id\";s:20:\"timeline_date_format\";s:7:\"default\";s:3:\"F Y\";s:4:\"type\";s:4:\"text\";}}}s:23:\"blog_single_post_info_2\";a:7:{s:5:\"label\";s:18:\"Blog Einzelbeitrag\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"blog_single_post_info_2\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:11:{s:49:\"content_blog_single_post_template_override_notice\";a:5:{s:2:\"id\";s:49:\"content_blog_single_post_template_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:327:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Content override is currently used. To edit your global layout please visit <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:40:\"content_blog_single_post_template_notice\";a:5:{s:2:\"id\";s:40:\"content_blog_single_post_template_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:328:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Live Builder. To create a custom Content Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:14:\"blog_width_100\";a:7:{s:5:\"label\";s:15:\"100% Width Page\";s:11:\"description\";s:112:\"Turn on to display blog posts at 100% browser width according to the window size. Turn off to follow site width.\";s:2:\"id\";s:14:\"blog_width_100\";s:7:\"default\";i:0;s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:22:\"featured_images_single\";a:7:{s:5:\"label\";s:42:\"Featured Image / Video on Single Blog Post\";s:11:\"description\";s:67:\"Turn on to display featured images and videos on single blog posts.\";s:2:\"id\";s:22:\"featured_images_single\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:11:\"blog_pn_nav\";a:7:{s:5:\"label\";s:28:\"Vor/Zurück Seitennavigation\";s:11:\"description\";s:75:\"Turn on to display the previous/next post pagination for single blog posts.\";s:2:\"id\";s:11:\"blog_pn_nav\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:15:\"blog_post_title\";a:8:{s:5:\"label\";s:10:\"Post-Titel\";s:11:\"description\";s:90:\"Controls if the post title displays above or below the featured post image or is disabled.\";s:2:\"id\";s:15:\"blog_post_title\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:5:\"below\";s:9:\"Darunter \";s:5:\"above\";s:8:\"Darüber\";s:8:\"disabled\";s:11:\"Deaktiviert\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"blog_post_meta_position\";a:9:{s:5:\"label\";s:18:\"Meta Data Position\";s:11:\"description\";s:41:\"Choose where the meta data is positioned.\";s:2:\"id\";s:23:\"blog_post_meta_position\";s:7:\"default\";s:13:\"below_article\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:2:{s:13:\"below_article\";s:13:\"Below Article\";s:11:\"below_title\";s:11:\"Below Title\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"blog_post_title\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:8:\"disabled\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:18:\"social_sharing_box\";a:7:{s:5:\"label\";s:23:\"Soziale Medien - Teilen\";s:11:\"description\";s:42:\"Turn on to display the social sharing box.\";s:2:\"id\";s:18:\"social_sharing_box\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:11:\"author_info\";a:7:{s:5:\"label\";s:14:\"Autor Info Box\";s:11:\"description\";s:51:\"Turn on to display the author info box below posts.\";s:2:\"id\";s:11:\"author_info\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:13:\"related_posts\";a:7:{s:5:\"label\";s:19:\"Ähnliche Beiträge\";s:11:\"description\";s:33:\"Turn on to display related posts.\";s:2:\"id\";s:13:\"related_posts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:13:\"blog_comments\";a:7:{s:5:\"label\";s:10:\"Kommentare\";s:11:\"description\";s:28:\"Turn on to display comments.\";s:2:\"id\";s:13:\"blog_comments\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:11:\"is_singular\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}}s:14:\"blog_meta_info\";a:7:{s:5:\"label\";s:16:\"Meta Tags (Blog)\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:9:\"blog_meta\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:10:{s:29:\"blog_meta_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:335:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The on/off meta options on this tab only control the assigned blog page in \"Settings > Reading\" or the blog archives, not the blog element. The only options on this tab that work with the blog element are the Meta Data Font Size and Date Format options.</div>\";s:2:\"id\";s:29:\"blog_meta_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:9:\"post_meta\";a:5:{s:5:\"label\";s:13:\"Beitrags Meta\";s:11:\"description\";s:178:\"Turn on to display post meta on blog posts. If set to &quot;On&quot;, you can also control individual meta items below. If set to &quot;Off&quot; all meta items will be disabled.\";s:2:\"id\";s:9:\"post_meta\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:16:\"post_meta_author\";a:6:{s:5:\"label\";s:19:\"Beitrags Meta Autor\";s:11:\"description\";s:58:\"Aktvieren zum Anzeigen des Meta Tags Autor bei Beiträgen.\";s:2:\"id\";s:16:\"post_meta_author\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_date\";a:6:{s:5:\"label\";s:19:\"Beitrags Meta Datum\";s:11:\"description\";s:58:\"Aktvieren zum Anzeigen des Meta Tags Datum bei Beiträgen.\";s:2:\"id\";s:14:\"post_meta_date\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_cats\";a:6:{s:5:\"label\";s:23:\"Beitrags Meta Kategorie\";s:11:\"description\";s:63:\"Aktvieren zum Anzeigen des Meta Tags Kategorien bei Beiträgen.\";s:2:\"id\";s:14:\"post_meta_cats\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:18:\"post_meta_comments\";a:6:{s:5:\"label\";s:24:\"Beitrags Meta Kommentare\";s:11:\"description\";s:63:\"Aktvieren zum Anzeigen des Meta Tags Kommentare bei Beiträgen.\";s:2:\"id\";s:18:\"post_meta_comments\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_read\";a:6:{s:5:\"label\";s:25:\"Beitrags weiterlesen Link\";s:11:\"description\";s:64:\"Aktvieren zum Anzeigen des Meta Tags weiterlesen bei Beiträgen.\";s:2:\"id\";s:14:\"post_meta_read\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"post_meta_tags\";a:6:{s:5:\"label\";s:27:\"Beitrags Meta Schlagwörter\";s:11:\"description\";s:47:\"Aktivieren um Meta Tags des Beitrags anzuzeigen\";s:2:\"id\";s:14:\"post_meta_tags\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:9:\"post_meta\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"meta_font_size\";a:6:{s:5:\"label\";s:28:\"Schriftgrösse der Metadaten\";s:11:\"description\";s:46:\"Steuert die Schriftgröße des Meta Daten Text\";s:2:\"id\";s:14:\"meta_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:16:\"--meta_font_size\";}}}s:11:\"date_format\";a:5:{s:5:\"label\";s:12:\"Datumsformat\";s:11:\"description\";s:348:\"Controls the date format for date meta data.  <a href=\"https://wordpress.org/support/article/formatting-date-and-time/\" target=\"_blank\" rel=\"noopener noreferrer\">Formatting Date and Time</a>. Leave empty to use the default value from your <a href=\"https://unternehmen.wir-noi.org/wp-admin/options-general.php\" target=\"_blank\">WordPress Settings</a>\";s:2:\"id\";s:11:\"date_format\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";}}}}}s:9:\"portfolio\";a:7:{s:5:\"label\";s:9:\"Portfolio\";s:2:\"id\";s:17:\"heading_portfolio\";s:8:\"priority\";i:16;s:4:\"icon\";s:10:\"el-icon-th\";s:8:\"alt_icon\";s:21:\"fusiona-insertpicture\";s:5:\"class\";s:22:\"hidden-section-heading\";s:6:\"fields\";a:2:{s:36:\"general_portfolio_options_subsection\";a:6:{s:5:\"label\";s:17:\"General Portfolio\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:36:\"general_portfolio_options_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:21:{s:24:\"portfolio_archive_layout\";a:7:{s:5:\"label\";s:24:\"Portfolio Archive Layout\";s:11:\"description\";s:52:\"Controls the layout for the portfolio archive pages.\";s:2:\"id\";s:24:\"portfolio_archive_layout\";s:7:\"default\";s:4:\"grid\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"grid\";s:4:\"Grid\";s:7:\"masonry\";s:7:\"Masonry\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:37:\"portfolio_archive_featured_image_size\";a:8:{s:5:\"label\";s:37:\"Portfolio Archive Featured Image Size\";s:11:\"description\";s:230:\"Controls if the featured image size is fixed (cropped) or auto (full image ratio) for portfolio archive pages. <strong>IMPORTANT:</strong> Fixed works best with a standard 940px site width. Auto works best with larger site widths.\";s:2:\"id\";s:37:\"portfolio_archive_featured_image_size\";s:7:\"default\";s:4:\"full\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"cropped\";s:7:\"Fixiert\";s:4:\"full\";s:4:\"Auto\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"portfolio_archive_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"grid\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"portfolio_archive_columns\";a:7:{s:5:\"label\";s:35:\"Portfolio Archive Number of Columns\";s:11:\"description\";s:201:\"Set the number of columns per row for portfolio archive pages. With Carousel layout this specifies the maximum amount of columns. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:25:\"portfolio_archive_columns\";s:7:\"default\";i:1;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";s:1:\"1\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_column_spacing\";a:7:{s:5:\"label\";s:32:\"Portfolio Archive Column Spacing\";s:11:\"description\";s:66:\"Controls the column spacing for portfolio items for archive pages.\";s:2:\"id\";s:32:\"portfolio_archive_column_spacing\";s:7:\"default\";s:2:\"20\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"300\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--portfolio_archive_column_spacing\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:23:\"portfolio_equal_heights\";a:8:{s:5:\"label\";s:13:\"Equal Heights\";s:11:\"description\";s:57:\"Turn on to display grid boxes with equal heights per row.\";s:2:\"id\";s:23:\"portfolio_equal_heights\";s:7:\"default\";i:0;s:4:\"type\";s:6:\"switch\";s:5:\"class\";s:16:\"fusion-or-gutter\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:24:\"portfolio_archive_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}}s:9:\"transport\";s:11:\"postMessage\";}s:42:\"portfolio_archive_one_column_text_position\";a:8:{s:5:\"label\";s:34:\"Portfolio Archive Content Position\";s:11:\"description\";s:93:\"Select if title, terms and excerpts should be displayed below or next to the featured images.\";s:2:\"id\";s:42:\"portfolio_archive_one_column_text_position\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:5:\"below\";s:14:\"Unter dem Bild\";s:7:\"floated\";s:23:\"In der Nähe des Bildes\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:24:\"portfolio_archive_layout\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:25:\"portfolio_archive_columns\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"portfolio_archive_items\";a:7:{s:5:\"label\";s:42:\"Number of Portfolio Items Per Archive Page\";s:11:\"description\";s:169:\"Controls the number of posts that display per page for portfolio archive pages. Set to -1 to display all. Set to 0 to use the number of posts from Settings &gt; Reading.\";s:2:\"id\";s:23:\"portfolio_archive_items\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"-1\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:29:\"portfolio_archive_text_layout\";a:9:{s:5:\"label\";s:29:\"Portfolio Archive Text Layout\";s:11:\"description\";s:123:\"Controls if the portfolio text content is displayed boxed or unboxed or is completely disabled for portfolio archive pages.\";s:2:\"id\";s:29:\"portfolio_archive_text_layout\";s:7:\"default\";s:7:\"no_text\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"no_text\";s:7:\"No Text\";s:5:\"boxed\";s:10:\"Eingerahmt\";s:7:\"unboxed\";s:9:\"Ungerahmt\";}s:9:\"transport\";s:7:\"refresh\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:39:\"--portfolio_archive_text_layout-padding\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:6:\"20px 0\";i:1;s:181:\"var(--portfolio_archive_layout_padding-top) var(--portfolio_archive_layout_padding-right) var(--portfolio_archive_layout_padding-bottom) var(--portfolio_archive_layout_padding-left)\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:29:\"portfolio_archive_text_layout\";i:1;s:3:\"!==\";i:2;s:5:\"boxed\";}}}}}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_content_length\";a:8:{s:5:\"label\";s:30:\"Portfolio Archive Text Display\";s:11:\"description\";s:67:\"Choose how to display the post excerpt for portfolio archive pages.\";s:2:\"id\";s:32:\"portfolio_archive_content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"no_text\";s:7:\"No Text\";s:7:\"excerpt\";s:6:\"Auszug\";s:12:\"full_content\";s:15:\"Gesamter Inhalt\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:29:\"portfolio_archive_text_layout\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"no_text\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_excerpt_length\";a:8:{s:5:\"label\";s:32:\"Portfolio Archive Excerpt Length\";s:11:\"description\";s:362:\"Controls the number of words in the excerpts for portfolio archive pages.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:32:\"portfolio_archive_excerpt_length\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:36:\"portfolio_archive_strip_html_excerpt\";a:6:{s:5:\"label\";s:24:\"HTML im Auszug entfernen\";s:11:\"description\";s:75:\"Turn on to strip HTML content from the excerpt for portfolio archive pages.\";s:2:\"id\";s:36:\"portfolio_archive_strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:31:\"portfolio_archive_title_display\";a:7:{s:5:\"label\";s:31:\"Portfolio Archive Title Display\";s:11:\"description\";s:81:\"Controls what displays with the portfolio post title for portfolio archive pages.\";s:2:\"id\";s:31:\"portfolio_archive_title_display\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:3:\"all\";s:20:\"Titel und Kategorien\";s:5:\"title\";s:9:\"Nur Titel\";s:4:\"cats\";s:14:\"Nur Kategorien\";s:4:\"none\";s:5:\"Keine\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:32:\"portfolio_archive_text_alignment\";a:7:{s:5:\"label\";s:32:\"Portfolio Archive Text Alignment\";s:11:\"description\";s:140:\"Controls the alignment of the portfolio title, categories and excerpt text when using the Portfolio Text layouts in portfolio archive pages.\";s:2:\"id\";s:32:\"portfolio_archive_text_alignment\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"left\";s:5:\"Links\";s:6:\"center\";s:9:\"Zentriert\";s:5:\"right\";s:6:\"Rechts\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--portfolio_archive_text_alignment\";s:7:\"element\";s:33:\".fusion-portfolio-content-wrapper\";}}}s:32:\"portfolio_archive_layout_padding\";a:8:{s:5:\"label\";s:37:\"Portfolio Archive Text Layout Padding\";s:11:\"description\";s:389:\"Controls the padding for the portfolio text layout when using boxed mode in portfolio archive pages.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:32:\"portfolio_archive_layout_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:4:\"type\";s:7:\"spacing\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:38:\"--portfolio_archive_layout_padding-top\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:3:\"top\";}i:1;a:3:{s:4:\"name\";s:41:\"--portfolio_archive_layout_padding-bottom\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:3:{s:4:\"name\";s:39:\"--portfolio_archive_layout_padding-left\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:4:\"left\";}i:3;a:3:{s:4:\"name\";s:40:\"--portfolio_archive_layout_padding-right\";s:7:\"element\";s:25:\".fusion-portfolio-content\";s:6:\"choice\";s:5:\"right\";}}}s:33:\"portfolio_archive_pagination_type\";a:7:{s:5:\"label\";s:33:\"Portfolio Archive Pagination Type\";s:11:\"description\";s:57:\"Controls the pagination type for portfolio archive pages.\";s:2:\"id\";s:33:\"portfolio_archive_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:10:\"pagination\";s:16:\"Seitennavigation\";s:15:\"infinite_scroll\";s:18:\"Infinite Scrolling\";s:16:\"load_more_button\";s:20:\"Weitere Laden Button\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:20:\"is_portfolio_archive\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:49:\"portfolio_archive_load_more_posts_button_bg_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Button Background Color\";s:11:\"description\";s:99:\"Controls the background color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:49:\"portfolio_archive_load_more_posts_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:51:\"--portfolio_archive_load_more_posts_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:51:\"portfolio_archive_load_more_posts_button_text_color\";a:7:{s:5:\"label\";s:33:\"Load More Posts Button Text Color\";s:11:\"description\";s:93:\"Controls the text color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:51:\"portfolio_archive_load_more_posts_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:53:\"--portfolio_archive_load_more_posts_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:55:\"portfolio_archive_load_more_posts_hover_button_bg_color\";a:7:{s:5:\"label\";s:45:\"Load More Posts Button Hover Background Color\";s:11:\"description\";s:105:\"Controls the hover background color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:55:\"portfolio_archive_load_more_posts_hover_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:57:\"--portfolio_archive_load_more_posts_hover_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:57:\"portfolio_archive_load_more_posts_hover_button_text_color\";a:7:{s:5:\"label\";s:39:\"Load More Posts Hover Button Text Color\";s:11:\"description\";s:99:\"Controls the hover text color of the load more button for ajax post loading for portfolio archives.\";s:2:\"id\";s:57:\"portfolio_archive_load_more_posts_hover_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:59:\"--portfolio_archive_load_more_posts_hover_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:33:\"portfolio_archive_pagination_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"load_more_button\";}}}s:14:\"portfolio_slug\";a:5:{s:5:\"label\";s:14:\"Portfolio Slug\";s:11:\"description\";s:195:\"The slug name cannot be the same name as a page name or the layout will break. This option changes the permalink when you use the permalink type as %postname%. Make sure to regenerate permalinks.\";s:2:\"id\";s:14:\"portfolio_slug\";s:7:\"default\";s:15:\"portfolio-items\";s:4:\"type\";s:4:\"text\";}s:24:\"portfolio_meta_font_size\";a:6:{s:5:\"label\";s:28:\"Schriftgrösse der Metadaten\";s:11:\"description\";s:46:\"Steuert die Schriftgröße des Meta Daten Text\";s:2:\"id\";s:24:\"portfolio_meta_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--portfolio_meta_font_size\";}}}}}s:45:\"portfolio_single_post_page_options_subsection\";a:6:{s:5:\"label\";s:21:\"Portfolio Single Post\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:45:\"portfolio_single_post_page_options_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:14:{s:46:\"portfolio_single_post_template_override_notice\";a:5:{s:2:\"id\";s:46:\"portfolio_single_post_template_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:327:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Content override is currently used. To edit your global layout please visit <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:37:\"portfolio_single_post_template_notice\";a:4:{s:2:\"id\";s:37:\"portfolio_single_post_template_notice\";s:5:\"label\";s:0:\"\";s:11:\"description\";s:328:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Live Builder. To create a custom Content Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:16:\"portfolio_pn_nav\";a:7:{s:5:\"label\";s:28:\"Vor/Zurück Seitennavigation\";s:11:\"description\";s:80:\"Turn on to display the previous/next post pagination for single portfolio posts.\";s:2:\"id\";s:16:\"portfolio_pn_nav\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:19:\"portfolio_width_100\";a:7:{s:5:\"label\";s:15:\"100% Width Page\";s:11:\"description\";s:117:\"Turn on to display portfolio posts at 100% browser width according to the window size. Turn off to follow site width.\";s:2:\"id\";s:19:\"portfolio_width_100\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:30:\"portfolio_featured_image_width\";a:9:{s:5:\"label\";s:26:\"Featured Image Column Size\";s:11:\"description\";s:79:\"Controls if the featured image is half or full width on single portfolio posts.\";s:2:\"id\";s:30:\"portfolio_featured_image_width\";s:7:\"default\";s:4:\"full\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:2:{s:4:\"full\";s:12:\"Volle Breite\";s:4:\"half\";s:12:\"Halbe Breite\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"portfolio_featured_images\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"portfolio_featured_images\";a:7:{s:5:\"label\";s:48:\"Bevorzugtes Bild / Video auf Einzelbeitrag Seite\";s:11:\"description\";s:72:\"Turn on to display featured images and videos on single portfolio posts.\";s:2:\"id\";s:25:\"portfolio_featured_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"show_first_featured_image\";a:8:{s:5:\"label\";s:23:\"Erstes bevorzugtes Bild\";s:11:\"description\";s:68:\"Turn on to display the 1st featured image on single portfolio posts.\";s:2:\"id\";s:25:\"show_first_featured_image\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"portfolio_featured_images\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:33:\"show_first_featured_image_partial\";a:4:{s:8:\"selector\";s:30:\".fusion-featured-image-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:23:\"singular_featured_image\";}s:21:\"success_trigger_event\";s:35:\"fusion-reinit-single-post-slideshow\";}}}s:28:\"portfolio_project_desc_title\";a:7:{s:5:\"label\";s:25:\"Project Description Title\";s:11:\"description\";s:72:\"Turn on to show the project description title on single portfolio posts.\";s:2:\"id\";s:28:\"portfolio_project_desc_title\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"portfolio_project_details\";a:7:{s:5:\"label\";s:14:\"Projektdetails\";s:11:\"description\";s:80:\"Turn on to show the project details title and content on single portfolio posts.\";s:2:\"id\";s:25:\"portfolio_project_details\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:26:\"portfolio_link_icon_target\";a:7:{s:5:\"label\";s:34:\"Open Portfolio Links In New Window\";s:11:\"description\";s:90:\"Turn on to open the single post page, project url and copyright url links in a new window.\";s:2:\"id\";s:26:\"portfolio_link_icon_target\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:9:\"transport\";s:11:\"postMessage\";}s:16:\"portfolio_author\";a:7:{s:5:\"label\";s:5:\"Autor\";s:11:\"description\";s:61:\"Turn on to display the author name on single portfolio posts.\";s:2:\"id\";s:16:\"portfolio_author\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:28:\"portfolio_social_sharing_box\";a:7:{s:5:\"label\";s:23:\"Soziale Medien - Teilen\";s:11:\"description\";s:68:\"Turn on to display the social sharing box on single portfolio posts.\";s:2:\"id\";s:28:\"portfolio_social_sharing_box\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"portfolio_related_posts\";a:7:{s:5:\"label\";s:18:\"Ähnliche Projekte\";s:11:\"description\";s:62:\"Turn on to display related projects on single portfolio posts.\";s:2:\"id\";s:23:\"portfolio_related_posts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:18:\"portfolio_comments\";a:7:{s:5:\"label\";s:10:\"Kommentare\";s:11:\"description\";s:54:\"Turn on to display comments on single portfolio posts.\";s:2:\"id\";s:18:\"portfolio_comments\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:19:\"is_portfolio_single\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}}}}s:12:\"social_media\";a:6:{s:5:\"label\";s:14:\"Soziale Medien\";s:2:\"id\";s:20:\"heading_social_media\";s:8:\"priority\";i:18;s:4:\"icon\";s:17:\"el-icon-share-alt\";s:8:\"alt_icon\";s:12:\"fusiona-link\";s:6:\"fields\";a:4:{s:26:\"social_media_icons_section\";a:5:{s:5:\"label\";s:22:\"Soziale Medien Symbole\";s:2:\"id\";s:26:\"social_media_icons_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:2:{s:38:\"social_media_icons_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:250:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> This tab controls the social networks that display in legacy headers and footers. Custom links created here can also be used in the Social Links and the Person element.</div>\";s:2:\"id\";s:38:\"social_media_icons_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:18:\"social_media_icons\";a:9:{s:5:\"label\";s:26:\"Social Media Icons / Links\";s:11:\"description\";s:131:\"Social media links use a repeater field and allow one network per field. Click the &quot;Add&quot; button to add additional fields.\";s:2:\"id\";s:18:\"social_media_icons\";s:7:\"default\";a:6:{s:25:\"fusionredux_repeater_data\";a:4:{i:0;a:1:{s:5:\"title\";s:0:\"\";}i:1;a:1:{s:5:\"title\";s:0:\"\";}i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"icon\";a:4:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:9:\"instagram\";i:3;s:9:\"pinterest\";}s:3:\"url\";a:4:{i:0;s:1:\"#\";i:1;s:1:\"#\";i:2;s:1:\"#\";i:3;s:1:\"#\";}s:12:\"custom_title\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:16:\"custom_icon_mark\";a:4:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";}s:13:\"custom_source\";a:4:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:1;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:2;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}i:3;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:4:\"type\";s:8:\"repeater\";s:10:\"bind_title\";s:4:\"icon\";s:5:\"limit\";i:50;s:6:\"fields\";a:5:{s:4:\"icon\";a:6:{s:2:\"id\";s:4:\"icon\";s:4:\"type\";s:6:\"select\";s:5:\"label\";s:14:\"Social Network\";s:11:\"description\";s:53:\"Select a social network to automatically add its icon\";s:7:\"default\";s:4:\"none\";s:7:\"choices\";a:36:{s:7:\"blogger\";s:7:\"Blogger\";s:10:\"deviantart\";s:10:\"Deviantart\";s:7:\"discord\";s:7:\"Discord\";s:4:\"digg\";s:4:\"Digg\";s:8:\"dribbble\";s:8:\"Dribbble\";s:7:\"dropbox\";s:7:\"Dropbox\";s:8:\"facebook\";s:8:\"Facebook\";s:6:\"flickr\";s:6:\"Flickr\";s:6:\"forrst\";s:6:\"Forrst\";s:9:\"instagram\";s:9:\"Instagram\";s:8:\"linkedin\";s:8:\"LinkedIn\";s:7:\"myspace\";s:7:\"Myspace\";s:6:\"paypal\";s:6:\"Paypal\";s:9:\"pinterest\";s:9:\"Pinterest\";s:6:\"reddit\";s:6:\"Reddit\";s:3:\"rss\";s:3:\"RSS\";s:5:\"skype\";s:5:\"Skype\";s:10:\"soundcloud\";s:10:\"Soundcloud\";s:7:\"spotify\";s:7:\"Spotify\";s:5:\"teams\";s:5:\"Teams\";s:8:\"telegram\";s:8:\"Telegram\";s:6:\"tiktok\";s:6:\"Tiktok\";s:6:\"tumblr\";s:6:\"Tumblr\";s:7:\"twitter\";s:7:\"Twitter\";s:6:\"twitch\";s:6:\"Twitch\";s:5:\"vimeo\";s:5:\"Vimeo\";s:2:\"vk\";s:2:\"VK\";s:6:\"wechat\";s:6:\"WeChat\";s:8:\"whatsapp\";s:8:\"WhatsApp\";s:4:\"xing\";s:4:\"Xing\";s:5:\"yahoo\";s:5:\"Yahoo\";s:4:\"yelp\";s:4:\"Yelp\";s:7:\"youtube\";s:7:\"Youtube\";s:5:\"email\";s:14:\"E-Mail Adresse\";s:5:\"phone\";s:7:\"Telefon\";s:6:\"custom\";s:17:\"Benutzerdefiniert\";}}s:9:\"icon_mark\";a:5:{s:4:\"type\";s:10:\"iconpicker\";s:2:\"id\";s:9:\"icon_mark\";s:7:\"heading\";s:4:\"Icon\";s:11:\"description\";s:49:\"Click an icon to select, click again to deselect.\";s:7:\"default\";s:0:\"\";}s:3:\"url\";a:5:{s:2:\"id\";s:3:\"url\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Custom Link\";s:11:\"description\";s:34:\"Füge deinen eigener Link hier ein\";s:7:\"default\";s:0:\"\";}s:12:\"custom_title\";a:6:{s:2:\"id\";s:12:\"custom_title\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:20:\"Eigene Symbole Titel\";s:11:\"description\";s:40:\"Insert a title for your custom icon here\";s:7:\"default\";s:0:\"\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:4:\"icon\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}}s:13:\"custom_source\";a:7:{s:2:\"id\";s:13:\"custom_source\";s:4:\"type\";s:5:\"media\";s:5:\"label\";s:40:\"Choose the image you want to use as icon\";s:11:\"description\";s:26:\"Update dein eigenes Symbol\";s:7:\"default\";s:0:\"\";s:4:\"mode\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:4:\"icon\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}}}s:15:\"partial_refresh\";a:5:{s:52:\"header_content_social_media_icons_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:51:\"header_content_social_media_icons_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:33:\"header_content_social_media_icons\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}s:33:\"footer_content_social_media_icons\";a:4:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}s:29:\"sharingbox_social_media_icons\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}}}s:27:\"header_social_icons_options\";a:7:{s:5:\"label\";s:27:\"Header Social Icons Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"header_social_icons_options\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:10:{s:35:\"header_social_links_override_notice\";a:5:{s:2:\"id\";s:35:\"header_social_links_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:0:\"\";s:4:\"type\";s:6:\"custom\";}s:26:\"header_social_links_notice\";a:5:{s:2:\"id\";s:26:\"header_social_links_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Header Builder. To create a custom Header Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:29:\"header_social_links_font_size\";a:7:{s:5:\"label\";s:28:\"Header Social Icon Font Size\";s:11:\"description\";s:50:\"Controls the font size of the header social icons.\";s:2:\"id\";s:29:\"header_social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--header_social_links_font_size\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}s:37:\"header_social_links_tooltip_placement\";a:8:{s:5:\"label\";s:35:\"Header Social Icon Tooltip Position\";s:11:\"description\";s:57:\"Controls the tooltip position of the header social icons.\";s:2:\"id\";s:37:\"header_social_links_tooltip_placement\";s:7:\"default\";s:6:\"Bottom\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:3:\"top\";s:4:\"Oben\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:4:\"left\";s:5:\"Links\";s:4:\"none\";s:5:\"Keine\";}s:15:\"partial_refresh\";a:3:{s:71:\"header_content_header_social_links_tooltip_placement_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:70:\"header_content_header_social_links_tooltip_placement_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:52:\"header_content_header_social_links_tooltip_placement\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";a:2:{i:0;s:15:\"header-rendered\";i:1;s:18:\"fusionInitTooltips\";}}}}s:30:\"header_social_links_color_type\";a:8:{s:5:\"label\";s:29:\"Header Social Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:30:\"header_social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Eigene Farben\";s:5:\"brand\";s:13:\"Marken Farben\";}s:15:\"partial_refresh\";a:3:{s:64:\"header_content_header_social_links_color_type_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:63:\"header_content_header_social_links_color_type_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:45:\"header_content_header_social_links_color_type\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";a:2:{i:0;s:15:\"header-rendered\";i:1;s:18:\"fusionInitTooltips\";}}}}s:30:\"header_social_links_icon_color\";a:8:{s:5:\"label\";s:40:\"Icons der sozialen Medien im Kopfbereich\";s:11:\"description\";s:106:\"Controls the color of the header social icons. This color will be used for all social icons in the header.\";s:2:\"id\";s:30:\"header_social_links_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:30:\"header_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--header_social_links_icon_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"header_social_links_boxed\";a:7:{s:5:\"label\";s:51:\"Icons der sozialen Medien im Kopfbereich eingerahmt\";s:11:\"description\";s:50:\"Controls if each icon is displayed in a small box.\";s:2:\"id\";s:25:\"header_social_links_boxed\";s:7:\"default\";s:1:\"0\";s:6:\"hidden\";b:0;s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:3:{s:59:\"header_content_header_social_links_boxed_remove_before_hook\";a:3:{s:8:\"selector\";s:33:\".avada-hook-before-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:58:\"header_content_header_social_links_boxed_remove_after_hook\";a:3:{s:8:\"selector\";s:32:\".avada-hook-after-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";s:13:\"__return_null\";}s:40:\"header_content_header_social_links_boxed\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";a:2:{i:0;s:15:\"header-rendered\";i:1;s:18:\"fusionInitTooltips\";}}}}s:29:\"header_social_links_box_color\";a:8:{s:5:\"label\";s:28:\"Header Social Icon Box Color\";s:11:\"description\";s:42:\"Controls the color of the social icon box.\";s:2:\"id\";s:29:\"header_social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:6:\"hidden\";b:0;s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:25:\"header_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:30:\"header_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--header_social_links_box_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:32:\"header_social_links_boxed_radius\";a:8:{s:5:\"label\";s:31:\"Header Social Icon Boxed Radius\";s:11:\"description\";s:24:\"Controls the box radius.\";s:2:\"id\";s:32:\"header_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"header_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--header_social_links_boxed_radius\";s:7:\"element\";s:27:\".fusion-social-network-icon\";}}}s:33:\"header_social_links_boxed_padding\";a:8:{s:5:\"label\";s:32:\"Header Social Icon Boxed Padding\";s:11:\"description\";s:41:\"Controls the interior padding of the box.\";s:2:\"id\";s:33:\"header_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:6:\"hidden\";b:0;s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:25:\"header_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:35:\"--header_social_links_boxed_padding\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}}}s:27:\"footer_social_icons_options\";a:7:{s:5:\"label\";s:27:\"Footer Social Icons Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"footer_social_icons_options\";s:7:\"default\";s:0:\"\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:11:{s:35:\"footer_social_links_override_notice\";a:5:{s:2:\"id\";s:35:\"footer_social_links_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:0:\"\";s:4:\"type\";s:6:\"custom\";}s:26:\"footer_social_links_notice\";a:5:{s:2:\"id\";s:26:\"footer_social_links_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:329:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Footer Builder. To create a custom Footer Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:12:\"icons_footer\";a:7:{s:5:\"label\";s:34:\"Display Social Icons In The Footer\";s:11:\"description\";s:60:\"Turn on to display social icons in the footer copyright bar.\";s:2:\"id\";s:12:\"icons_footer\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"partial_refresh\";a:1:{s:27:\"footer_content_icons_footer\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:29:\"footer_social_links_font_size\";a:8:{s:5:\"label\";s:28:\"Footer Social Icon Font Size\";s:11:\"description\";s:50:\"Controls the font size of the footer social icons.\";s:2:\"id\";s:29:\"footer_social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:6:\"hidden\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--footer_social_links_font_size\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}s:37:\"footer_social_links_tooltip_placement\";a:9:{s:5:\"label\";s:35:\"Footer Social Icon Tooltip Position\";s:11:\"description\";s:57:\"Controls the tooltip position of the footer social icons.\";s:2:\"id\";s:37:\"footer_social_links_tooltip_placement\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:5:{s:3:\"top\";s:4:\"Oben\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:4:\"left\";s:5:\"Links\";s:4:\"none\";s:5:\"Keine\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:52:\"footer_content_footer_social_links_tooltip_placement\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";a:1:{i:0;s:18:\"fusionInitTooltips\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:30:\"footer_social_links_color_type\";a:9:{s:5:\"label\";s:29:\"Footer Social Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:30:\"footer_social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Eigene Farben\";s:5:\"brand\";s:13:\"Marken Farben\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:45:\"footer_content_footer_social_links_color_type\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";a:1:{i:0;s:18:\"fusionInitTooltips\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:30:\"footer_social_links_icon_color\";a:8:{s:5:\"label\";s:24:\"Footer Social Icon Color\";s:11:\"description\";s:106:\"Controls the color of the footer social icons. This color will be used for all social icons in the footer.\";s:2:\"id\";s:30:\"footer_social_links_icon_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:6:\"hidden\";b:0;s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:30:\"footer_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--footer_social_links_icon_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"footer_social_links_boxed\";a:8:{s:5:\"label\";s:53:\"Icons der sozialen Medien in der Fusszeile eingerahmt\";s:11:\"description\";s:50:\"Controls if each icon is displayed in a small box.\";s:2:\"id\";s:25:\"footer_social_links_boxed\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:40:\"footer_content_footer_social_links_boxed\";a:5:{s:8:\"selector\";s:14:\".fusion-footer\";s:19:\"container_inclusive\";b:0;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"footer\";}s:21:\"success_trigger_event\";a:1:{i:0;s:18:\"fusionInitTooltips\";}s:17:\"skip_for_template\";a:1:{i:0;s:6:\"footer\";}}}}s:29:\"footer_social_links_box_color\";a:8:{s:5:\"label\";s:28:\"Footer Social Icon Box Color\";s:11:\"description\";s:42:\"Controls the color of the social icon box.\";s:2:\"id\";s:29:\"footer_social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:6:\"hidden\";b:0;s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:25:\"footer_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:30:\"footer_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--footer_social_links_box_color\";s:7:\"element\";s:27:\".fusion-social-network-icon\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:32:\"footer_social_links_boxed_radius\";a:8:{s:5:\"label\";s:31:\"Footer Social Icon Boxed Radius\";s:11:\"description\";s:24:\"Controls the box radius.\";s:2:\"id\";s:32:\"footer_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:4:\"type\";s:9:\"dimension\";s:6:\"hidden\";b:0;s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:25:\"footer_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--footer_social_links_boxed_radius\";s:7:\"element\";s:27:\".fusion-social-network-icon\";}}}s:33:\"footer_social_links_boxed_padding\";a:8:{s:5:\"label\";s:32:\"Footer Social Icon Boxed Padding\";s:11:\"description\";s:41:\"Controls the interior padding of the box.\";s:2:\"id\";s:33:\"footer_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:4:\"type\";s:9:\"dimension\";s:6:\"hidden\";b:0;s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:12:\"icons_footer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:25:\"footer_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:35:\"--footer_social_links_boxed_padding\";s:7:\"element\";s:23:\".fusion-social-networks\";}}}}}s:26:\"heading_social_sharing_box\";a:5:{s:5:\"label\";s:23:\"Soziale Medien - Teilen\";s:2:\"id\";s:26:\"heading_social_sharing_box\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:13:{s:22:\"sharing_social_tagline\";a:6:{s:5:\"label\";s:22:\"Social Sharing Tagline\";s:11:\"description\";s:46:\"Insert a tagline for the social sharing boxes.\";s:2:\"id\";s:22:\"sharing_social_tagline\";s:7:\"default\";s:26:\"Teilen Sie diesen Artikel!\";s:4:\"type\";s:4:\"text\";s:15:\"partial_refresh\";a:1:{s:33:\"sharingbox_sharing_social_tagline\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:30:\"sharing_box_tagline_text_color\";a:6:{s:5:\"label\";s:33:\"Social Sharing Tagline Text Color\";s:11:\"description\";s:67:\"Controls the color of the tagline text in the social sharing boxes.\";s:2:\"id\";s:30:\"sharing_box_tagline_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:32:\"--sharing_box_tagline_text_color\";s:7:\"element\";s:25:\".fusion-theme-sharing-box\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:15:\"social_bg_color\";a:7:{s:5:\"label\";s:31:\"Social Sharing Background Color\";s:11:\"description\";s:58:\"Controls the background color of the social sharing boxes.\";s:2:\"id\";s:15:\"social_bg_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:17:\"--social_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:31:\"--social_bg_color-0-transparent\";s:8:\"callback\";a:2:{i:0;s:28:\"return_string_if_transparent\";i:1;a:2:{s:11:\"transparent\";s:3:\"0px\";s:6:\"opaque\";s:0:\"\";}}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:29:\"avada-social-full-transparent\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"social_share_box_icon_info\";a:5:{s:5:\"label\";s:20:\"Social Sharing Icons\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:26:\"social_share_box_icon_info\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:14:\"social_sharing\";a:8:{s:5:\"label\";s:23:\"Soziale Medien - Teilen\";s:11:\"description\";s:71:\"Select social network you want to be displayed in the social share box.\";s:2:\"id\";s:14:\"social_sharing\";s:7:\"default\";a:11:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:6:\"reddit\";i:3;s:8:\"linkedin\";i:4;s:8:\"whatsapp\";i:5;s:8:\"telegram\";i:6;s:6:\"tumblr\";i:7;s:9:\"pinterest\";i:8;s:2:\"vk\";i:9;s:4:\"xing\";i:10;s:5:\"email\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:11:{s:8:\"facebook\";s:8:\"Facebook\";s:7:\"twitter\";s:7:\"Twitter\";s:6:\"reddit\";s:6:\"Reddit\";s:8:\"linkedin\";s:8:\"LinkedIn\";s:8:\"whatsapp\";s:8:\"WhatsApp\";s:8:\"telegram\";s:8:\"Telegram\";s:6:\"tumblr\";s:6:\"Tumblr\";s:9:\"pinterest\";s:9:\"Pinterest\";s:2:\"vk\";s:2:\"VK\";s:4:\"xing\";s:4:\"Xing\";s:5:\"email\";s:6:\"E-Mail\";}s:22:\"social_share_box_links\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}s:30:\"sharing_social_links_font_size\";a:6:{s:5:\"label\";s:29:\"Social Sharing Icon Font Size\";s:11:\"description\";s:71:\"Controls the font size of the social icons in the social sharing boxes.\";s:2:\"id\";s:30:\"sharing_social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--sharing_social_links_font_size\";s:7:\"element\";s:25:\".fusion-theme-sharing-box\";}}}s:38:\"sharing_social_links_tooltip_placement\";a:7:{s:5:\"label\";s:37:\"Social Sharing Icons Tooltip Position\";s:11:\"description\";s:78:\"Controls the tooltip position of the social icons in the social sharing boxes.\";s:2:\"id\";s:38:\"sharing_social_links_tooltip_placement\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:3:\"top\";s:4:\"Oben\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:4:\"left\";s:5:\"Links\";s:4:\"none\";s:5:\"Keine\";}s:15:\"partial_refresh\";a:1:{s:49:\"sharingbox_sharing_social_links_tooltip_placement\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:31:\"sharing_social_links_color_type\";a:7:{s:5:\"label\";s:30:\"Social Sharing Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:31:\"sharing_social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Eigene Farben\";s:5:\"brand\";s:13:\"Marken Farben\";}s:15:\"partial_refresh\";a:1:{s:50:\"sharingbox_sharing_sharing_social_links_color_type\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:31:\"sharing_social_links_icon_color\";a:7:{s:5:\"label\";s:25:\"Social Sharing Icon Color\";s:11:\"description\";s:113:\"Controls the color of the social icons in the social sharing boxes. This color will be used for all social icons.\";s:2:\"id\";s:31:\"sharing_social_links_icon_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"sharing_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:33:\"--sharing_social_links_icon_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"sharing_social_links_boxed\";a:6:{s:5:\"label\";s:26:\"Social Sharing Icons Boxed\";s:11:\"description\";s:57:\"Controls if each social icon is displayed in a small box.\";s:2:\"id\";s:26:\"sharing_social_links_boxed\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:37:\"sharingbox_sharing_social_links_boxed\";a:4:{s:8:\"selector\";s:51:\".fusion-theme-sharing-box.fusion-single-sharing-box\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"sharingbox\";}s:21:\"success_trigger_event\";s:18:\"fusionInitTooltips\";}}}s:30:\"sharing_social_links_box_color\";a:7:{s:5:\"label\";s:29:\"Social Sharing Icon Box Color\";s:11:\"description\";s:42:\"Controls the color of the social icon box.\";s:2:\"id\";s:30:\"sharing_social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:26:\"sharing_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:31:\"sharing_social_links_color_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--sharing_social_links_box_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:33:\"sharing_social_links_boxed_radius\";a:7:{s:5:\"label\";s:32:\"Social Sharing Icon Boxed Radius\";s:11:\"description\";s:47:\"Controls the box radius of the social icon box.\";s:2:\"id\";s:33:\"sharing_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:26:\"sharing_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:35:\"--sharing_social_links_boxed_radius\";s:7:\"element\";s:27:\".fusion-social-network-icon\";}}}s:34:\"sharing_social_links_boxed_padding\";a:7:{s:5:\"label\";s:34:\"Social Sharing Icons Boxed Padding\";s:11:\"description\";s:53:\"Controls the interior padding of the social icon box.\";s:2:\"id\";s:34:\"sharing_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:26:\"sharing_social_links_boxed\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:36:\"--sharing_social_links_boxed_padding\";s:7:\"element\";s:25:\".fusion-theme-sharing-box\";}}}}}}}s:10:\"slideshows\";a:6:{s:5:\"label\";s:10:\"Slideshows\";s:2:\"id\";s:18:\"heading_slideshows\";s:8:\"priority\";i:19;s:4:\"icon\";s:15:\"el-icon-picture\";s:8:\"alt_icon\";s:15:\"fusiona-uniF61C\";s:6:\"fields\";a:7:{s:22:\"posts_slideshow_number\";a:6:{s:5:\"label\";s:28:\"Diashow Bilder der Beiträge\";s:11:\"description\";s:69:\"Controls the number of featured image boxes for blog/portfolio posts.\";s:2:\"id\";s:22:\"posts_slideshow_number\";s:7:\"default\";s:1:\"5\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:2:\"30\";s:4:\"step\";s:1:\"1\";}}s:18:\"slideshow_autoplay\";a:6:{s:5:\"label\";s:8:\"Autoplay\";s:11:\"description\";s:35:\"Turn on to autoplay the slideshows.\";s:2:\"id\";s:18:\"slideshow_autoplay\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"slideshow_smooth_height\";a:5:{s:5:\"label\";s:13:\"Smooth Height\";s:11:\"description\";s:147:\"Turn on to enable smooth height on slideshows when using images with different heights. Please note, smooth height is disabled on blog grid layout.\";s:2:\"id\";s:23:\"slideshow_smooth_height\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:15:\"slideshow_speed\";a:7:{s:5:\"label\";s:23:\"Diashow Geschwindigkeit\";s:11:\"description\";s:102:\"Controls the speed of slideshows for the slider element and sliders within posts. ex: 1000 = 1 second.\";s:2:\"id\";s:15:\"slideshow_speed\";s:7:\"default\";s:4:\"7000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"100\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:2:\"50\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:15:\"slideshow_speed\";s:7:\"trigger\";a:2:{i:0;s:27:\"fusionDestroyPostFlexSlider\";i:1;s:24:\"fusionInitPostFlexSlider\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"pagination_video_slide\";a:6:{s:5:\"label\";s:44:\"Kreise der Seitenzahlen unterhalb Video-Dias\";s:11:\"description\";s:117:\"Turn on to show pagination circles below a video slide for the slider element. Turn off to hide them on video slides.\";s:2:\"id\";s:22:\"pagination_video_slide\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:22:\"pagination_video_slide\";s:7:\"trigger\";a:2:{i:0;s:27:\"fusionDestroyPostFlexSlider\";i:1;s:24:\"fusionInitPostFlexSlider\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"slider_nav_box_dimensions\";a:7:{s:5:\"label\";s:25:\"Navigation Box Dimensions\";s:11:\"description\";s:52:\"Controls the width and height of the navigation box.\";s:2:\"id\";s:25:\"slider_nav_box_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"30px\";s:6:\"height\";s:4:\"30px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:33:\"--slider_nav_box_dimensions-width\";s:6:\"choice\";s:5:\"width\";}i:1;a:2:{s:4:\"name\";s:34:\"--slider_nav_box_dimensions-height\";s:6:\"choice\";s:6:\"height\";}}}s:17:\"slider_arrow_size\";a:6:{s:5:\"label\";s:21:\"Navigation Arrow Size\";s:11:\"description\";s:47:\"Controls the font size of the navigation arrow.\";s:2:\"id\";s:17:\"slider_arrow_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:19:\"--slider_arrow_size\";}}}}}s:14:\"elastic_slider\";a:6:{s:5:\"label\";s:14:\"Elastic Slider\";s:2:\"id\";s:22:\"heading_elastic_slider\";s:8:\"priority\";i:20;s:4:\"icon\";s:17:\"el-icon-photo-alt\";s:8:\"alt_icon\";s:14:\"fusiona-images\";s:6:\"fields\";a:11:{s:18:\"tfes_disabled_note\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:179:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Elastic Slider is disabled in Advanced > Post Types section. Please enable it to see the options.</div>\";s:2:\"id\";s:18:\"tfes_disabled_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}}s:15:\"tfes_dimensions\";a:8:{s:5:\"label\";s:25:\"Elastic Slider Dimensions\";s:11:\"description\";s:53:\"Controls the width and height for the elastic slider.\";s:2:\"id\";s:15:\"tfes_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"400px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:23:\"--tfes_dimensions-width\";s:6:\"choice\";s:5:\"width\";s:7:\"element\";s:10:\".ei-slider\";}i:1;a:3:{s:4:\"name\";s:24:\"--tfes_dimensions-height\";s:6:\"choice\";s:6:\"height\";s:7:\"element\";s:10:\".ei-slider\";}}}s:14:\"tfes_animation\";a:8:{s:5:\"label\";s:14:\"Animation Type\";s:11:\"description\";s:64:\"Controls if the elastic slides animate from the sides or center.\";s:2:\"id\";s:14:\"tfes_animation\";s:7:\"default\";s:5:\"sides\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"sides\";s:5:\"Sides\";s:6:\"center\";s:9:\"Zentriert\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:14:\"tfes_animation\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"tfes_autoplay\";a:7:{s:5:\"label\";s:8:\"Autoplay\";s:11:\"description\";s:39:\"Turn on to autoplay the elastic slides.\";s:2:\"id\";s:13:\"tfes_autoplay\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:13:\"tfes_autoplay\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"tfes_interval\";a:8:{s:5:\"label\";s:19:\"Slideshow Intervall\";s:11:\"description\";s:69:\"Controls how long each elastic slide is visible. ex: 1000 = 1 second.\";s:2:\"id\";s:13:\"tfes_interval\";s:7:\"default\";s:4:\"3000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:5:\"30000\";s:4:\"step\";s:2:\"50\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:13:\"tfes_interval\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"tfes_speed\";a:8:{s:5:\"label\";s:23:\"Sliding Geschwindigkeit\";s:11:\"description\";s:72:\"Controls the speed of the elastic slider slideshow. ex: 1000 = 1 second.\";s:2:\"id\";s:10:\"tfes_speed\";s:7:\"default\";s:3:\"800\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"5000\";s:4:\"step\";s:2:\"50\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:10:\"tfes_speed\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:10:\"tfes_width\";a:8:{s:5:\"label\";s:16:\"Thumbnail Breite\";s:11:\"description\";s:58:\"Controls the width of the elastic slider thumbnail images.\";s:2:\"id\";s:10:\"tfes_width\";s:7:\"default\";s:3:\"150\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"500\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:22:\"avadaElasticSliderVars\";s:2:\"id\";s:10:\"tfes_width\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"es_title_font_size\";a:7:{s:5:\"label\";s:25:\"Schriftgrösse des Titels\";s:11:\"description\";s:48:\"Controls the font size for elastic slider title.\";s:2:\"id\";s:18:\"es_title_font_size\";s:7:\"default\";s:4:\"42px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--es_title_font_size\";s:7:\"element\";s:10:\".ei-slider\";}}}s:20:\"es_caption_font_size\";a:7:{s:5:\"label\";s:35:\"Schriftgrösse der Bildunterschrift\";s:11:\"description\";s:50:\"Controls the font size for elastic slider caption.\";s:2:\"id\";s:20:\"es_caption_font_size\";s:7:\"default\";s:4:\"20px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:22:\"--es_caption_font_size\";}}}s:14:\"es_title_color\";a:7:{s:5:\"label\";s:11:\"Titel Farbe\";s:11:\"description\";s:47:\"Controls the color of the elastic slider title.\";s:2:\"id\";s:14:\"es_title_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"--es_title_color\";s:7:\"element\";s:10:\".ei-slider\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"es_caption_color\";a:7:{s:5:\"label\";s:22:\"Farbe der Überschrift\";s:11:\"description\";s:49:\"Controls the color of the elastic slider caption.\";s:2:\"id\";s:16:\"es_caption_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"status_eslider\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--es_caption_color\";s:7:\"element\";s:10:\".ei-slider\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:8:\"lightbox\";a:6:{s:5:\"label\";s:8:\"Lightbox\";s:2:\"id\";s:16:\"heading_lightbox\";s:8:\"priority\";i:21;s:4:\"icon\";s:19:\"el-icon-info-circle\";s:8:\"alt_icon\";s:15:\"fusiona-uniF602\";s:6:\"fields\";a:17:{s:15:\"status_lightbox\";a:5:{s:5:\"label\";s:8:\"Lightbox\";s:11:\"description\";s:52:\"Turn on to enable the lightbox throughout the theme.\";s:2:\"id\";s:15:\"status_lightbox\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:22:\"status_lightbox_single\";a:6:{s:5:\"label\";s:49:\"Lightbox For Featured Images On Single Post Pages\";s:11:\"description\";s:95:\"Turn on to enable the lightbox on single blog and portfolio posts for the main featured images.\";s:2:\"id\";s:22:\"status_lightbox_single\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:17:\"lightbox_behavior\";a:7:{s:5:\"label\";s:18:\"Lightbox Verhalten\";s:11:\"description\";s:72:\"Controls what the lightbox displays for single blog and portfolio posts.\";s:2:\"id\";s:17:\"lightbox_behavior\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:3:\"all\";s:34:\"First featured image of every post\";s:10:\"individual\";s:39:\"Only featured images of individual post\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:13:\"lightbox_skin\";a:8:{s:5:\"label\";s:13:\"Lightbox Skin\";s:11:\"description\";s:34:\"Controls the lightbox skin design.\";s:2:\"id\";s:13:\"lightbox_skin\";s:7:\"default\";s:11:\"metro-white\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:5:\"light\";s:4:\"Hell\";s:4:\"dark\";s:6:\"Dunkel\";s:3:\"mac\";s:3:\"Mac\";s:11:\"metro-black\";s:11:\"Metro Black\";s:11:\"metro-white\";s:11:\"Metro White\";s:6:\"parade\";s:6:\"Parade\";s:6:\"smooth\";s:11:\"reibungslos\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:13:\"lightbox_skin\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"lightbox_path\";a:8:{s:5:\"label\";s:21:\"Vorschaubild Position\";s:11:\"description\";s:49:\"Controls the position of the lightbox thumbnails.\";s:2:\"id\";s:13:\"lightbox_path\";s:7:\"default\";s:8:\"vertical\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:8:\"vertical\";s:6:\"Rechts\";s:10:\"horizontal\";s:5:\"Unten\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:13:\"lightbox_path\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"lightbox_animation_speed\";a:8:{s:5:\"label\";s:25:\"Animationsgeschwindigkeit\";s:11:\"description\";s:45:\"Controls the animation speed of the lightbox.\";s:2:\"id\";s:24:\"lightbox_animation_speed\";s:7:\"default\";s:6:\"normal\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"fast\";s:7:\"Schnell\";s:6:\"normal\";s:6:\"Normal\";s:4:\"slow\";s:7:\"Langsam\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:24:\"lightbox_animation_speed\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"lightbox_arrows\";a:7:{s:5:\"label\";s:6:\"Pfeile\";s:11:\"description\";s:41:\"Turn on to display arrows in the lightbox\";s:2:\"id\";s:15:\"lightbox_arrows\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"lightbox_skin\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:6:\"parade\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:15:\"lightbox_arrows\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"lightbox_gallery\";a:7:{s:5:\"label\";s:25:\"Gallery Start/Stop Button\";s:11:\"description\";s:53:\"Turn on to display the gallery start and stop button.\";s:2:\"id\";s:16:\"lightbox_gallery\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:16:\"lightbox_gallery\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:17:\"lightbox_autoplay\";a:7:{s:5:\"label\";s:39:\"Lightbox Gallerie automatisch abspielen\";s:11:\"description\";s:41:\"Turn on to autoplay the lightbox gallery.\";s:2:\"id\";s:17:\"lightbox_autoplay\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:17:\"lightbox_autoplay\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"lightbox_slideshow_speed\";a:8:{s:5:\"label\";s:23:\"Diashow Geschwindigkeit\";s:11:\"description\";s:75:\"Controls the slideshow speed if autoplay is turned on. ex: 1000 = 1 second.\";s:2:\"id\";s:24:\"lightbox_slideshow_speed\";s:7:\"default\";s:4:\"5000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:4:\"1000\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:2:\"50\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:24:\"lightbox_slideshow_speed\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"lightbox_opacity\";a:8:{s:5:\"label\";s:21:\"Hintergrund Deckkraft\";s:11:\"description\";s:66:\"Controls the opacity level for the background behind the lightbox.\";s:2:\"id\";s:16:\"lightbox_opacity\";s:7:\"default\";s:3:\"0.9\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"0.1\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:4:\"0.01\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:16:\"lightbox_opacity\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:14:\"lightbox_title\";a:7:{s:5:\"label\";s:5:\"Titel\";s:11:\"description\";s:51:\"Turn on to display the image title in the lightbox.\";s:2:\"id\";s:14:\"lightbox_title\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:14:\"lightbox_title\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:13:\"lightbox_desc\";a:7:{s:5:\"label\";s:12:\"Beschriftung\";s:11:\"description\";s:53:\"Turn on to display the image caption in the lightbox.\";s:2:\"id\";s:13:\"lightbox_desc\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:13:\"lightbox_desc\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:15:\"lightbox_social\";a:7:{s:5:\"label\";s:23:\"Soziale Medien - Teilen\";s:11:\"description\";s:54:\"Turn on to display social sharing buttons on lightbox.\";s:2:\"id\";s:15:\"lightbox_social\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionLightboxVars\";s:2:\"id\";s:15:\"lightbox_social\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"lightbox_deeplinking\";a:7:{s:5:\"label\";s:10:\"Verlinkung\";s:11:\"description\";s:43:\"Turn on to deeplink images in the lightbox.\";s:2:\"id\";s:20:\"lightbox_deeplinking\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:20:\"lightbox_post_images\";a:7:{s:5:\"label\";s:35:\"Beitragsbilder in Lightbox anzeigen\";s:11:\"description\";s:85:\"Turn on to display post images in the lightbox that are inside the post content area.\";s:2:\"id\";s:20:\"lightbox_post_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:23:\"fusionLightboxVideoVars\";s:2:\"id\";s:20:\"lightbox_post_images\";s:7:\"trigger\";a:1:{i:0;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"lightbox_video_dimensions\";a:8:{s:5:\"label\";s:23:\"Slideshow Video Größe\";s:11:\"description\";s:69:\"Kontrolliert die Breite und Höhe für Videos innerhalb der lightbox.\";s:2:\"id\";s:25:\"lightbox_video_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:6:\"1280px\";s:6:\"height\";s:5:\"720px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:15:\"status_lightbox\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:9:\"globalVar\";s:23:\"fusionLightboxVideoVars\";s:2:\"id\";s:20:\"lightbox_video_width\";s:6:\"choice\";s:5:\"width\";s:7:\"trigger\";a:4:{i:0;s:4:\"load\";i:1;s:5:\"ready\";i:2;s:6:\"resize\";i:3;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:9:\"globalVar\";s:23:\"fusionLightboxVideoVars\";s:2:\"id\";s:21:\"lightbox_video_height\";s:6:\"choice\";s:6:\"height\";s:7:\"trigger\";a:4:{i:0;s:4:\"load\";i:1;s:5:\"ready\";i:2;s:6:\"resize\";i:3;s:31:\"avadaLightBoxInitializeLightbox\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:5:\"forms\";a:7:{s:5:\"label\";s:9:\"Formulare\";s:2:\"id\";s:5:\"forms\";s:8:\"priority\";i:21;s:8:\"is_panel\";b:1;s:4:\"icon\";s:16:\"el-icon-envelope\";s:8:\"alt_icon\";s:26:\"fusiona-avada-form-element\";s:6:\"fields\";a:4:{s:21:\"forms_styling_section\";a:5:{s:5:\"label\";s:13:\"Formular Stil\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:21:\"forms_styling_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:10:{s:33:\"forms_styling_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:233:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab apply to all forms throughout the site, including Avada Forms and the 3rd party plugins that Avada has design integration with.</div>\";s:2:\"id\";s:33:\"forms_styling_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:17:\"form_input_height\";a:7:{s:5:\"label\";s:29:\"Linienhöhen der Schriftarten\";s:11:\"description\";s:64:\"Controls the height of all search, form input and select fields.\";s:2:\"id\";s:17:\"form_input_height\";s:7:\"default\";s:4:\"50px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{i:0;s:2:\"px\";}s:8:\"css_vars\";a:2:{i:0;a:1:{s:4:\"name\";s:19:\"--form_input_height\";}i:1;a:2:{s:4:\"name\";s:42:\"--form_input_height-main-menu-search-width\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:22:\"calc(250px + 1.43 * $)\";i:1;s:5:\"250px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:17:\"form_input_height\";i:1;s:1:\">\";i:2;s:2:\"35\";}}}}}}}s:14:\"form_text_size\";a:6:{s:5:\"label\";s:23:\"Formular Schriftgröße\";s:11:\"description\";s:44:\"Kontrolliert die Größe des Formulartextes.\";s:2:\"id\";s:14:\"form_text_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--form_text_size\";s:2:\"po\";b:0;}}}s:13:\"form_bg_color\";a:6:{s:5:\"label\";s:29:\"Formularfeld Hintergrundfarbe\";s:11:\"description\";s:48:\"Steuert die Hintergrundfarbe der Formularfelder.\";s:2:\"id\";s:13:\"form_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:15:\"--form_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}}}s:15:\"form_text_color\";a:6:{s:5:\"label\";s:18:\"Formular Textfarbe\";s:11:\"description\";s:36:\"Controls the color of the form text.\";s:2:\"id\";s:15:\"form_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:17:\"--form_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:21:\"--form_text_color-35a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:4:\"0.35\";}s:2:\"po\";b:0;}}}s:17:\"form_border_width\";a:7:{s:5:\"label\";s:22:\"Formular Rahmengröße\";s:11:\"description\";s:44:\"Controls the border size of the form fields.\";s:2:\"id\";s:17:\"form_border_width\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"1px\";s:6:\"bottom\";s:3:\"1px\";s:4:\"left\";s:3:\"1px\";s:5:\"right\";s:3:\"1px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:23:\"--form_border_width-top\";s:6:\"choice\";s:3:\"top\";s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:26:\"--form_border_width-bottom\";s:6:\"choice\";s:6:\"bottom\";s:2:\"po\";b:0;}i:2;a:3:{s:4:\"name\";s:24:\"--form_border_width-left\";s:6:\"choice\";s:4:\"left\";s:2:\"po\";b:0;}i:3;a:3:{s:4:\"name\";s:25:\"--form_border_width-right\";s:6:\"choice\";s:5:\"right\";s:2:\"po\";b:0;}}}s:17:\"form_border_color\";a:7:{s:5:\"label\";s:25:\"Rahmenfarbe des Formulars\";s:11:\"description\";s:334:\"Controls the border color of the form fields.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:17:\"form_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:19:\"--form_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}}}s:23:\"form_focus_border_color\";a:7:{s:5:\"label\";s:26:\"Form Border Color On Focus\";s:11:\"description\";s:355:\"Controls the border color of the form fields when they have focus.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:23:\"form_focus_border_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:25:\"--form_focus_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:28:\"--form_focus_border_color-5a\";s:8:\"callback\";a:2:{i:0;s:15:\"color_alpha_set\";i:1;s:3:\"0.5\";}s:2:\"po\";b:0;}}}s:18:\"form_border_radius\";a:7:{s:5:\"label\";s:18:\"Form Border Radius\";s:11:\"description\";s:86:\"Controls the border radius of the form fields. Also works, if border size is set to 0.\";s:2:\"id\";s:18:\"form_border_radius\";s:7:\"default\";s:1:\"6\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--form_border_radius\";s:13:\"value_pattern\";s:3:\"$px\";s:2:\"po\";b:0;}}}s:19:\"form_views_counting\";a:6:{s:5:\"label\";s:19:\"Form Views Counting\";s:11:\"description\";s:66:\"Select which types of users will increase the form views on visit.\";s:2:\"id\";s:19:\"form_views_counting\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:3:\"all\";s:4:\"Alle\";s:10:\"logged_out\";s:10:\"Logged Out\";s:10:\"non_admins\";s:10:\"Non-Admins\";}}}}s:17:\"recaptcha_section\";a:5:{s:5:\"label\";s:16:\"Google reCAPTCHA\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:17:\"recaptcha_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:7:{s:17:\"recaptcha_version\";a:7:{s:5:\"label\";s:17:\"reCAPTCHA Version\";s:11:\"description\";s:94:\"Set the reCAPTCHA version you want to use and make sure your keys below match the set version.\";s:2:\"id\";s:17:\"recaptcha_version\";s:7:\"default\";s:2:\"v3\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:2:\"v2\";s:2:\"V2\";s:2:\"v3\";s:2:\"V3\";}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:16:\"recaptcha_public\";a:6:{s:5:\"label\";s:26:\"reCAPTCHA Seite Schlüssel\";s:11:\"description\";s:188:\"Follow the steps in <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-set-up-google-recaptcha\" target=\"_blank\" rel=\"noopener noreferrer\">our docs</a> to get the site key.\";s:2:\"id\";s:16:\"recaptcha_public\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:17:\"recaptcha_private\";a:6:{s:5:\"label\";s:20:\"reCAPTCHA Secret Key\";s:11:\"description\";s:190:\"Follow the steps in <a href=\"https://theme-fusion.com/documentation/avada/how-to/how-to-set-up-google-recaptcha\" target=\"_blank\" rel=\"noopener noreferrer\">our docs</a> to get the secret key.\";s:2:\"id\";s:17:\"recaptcha_private\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"recaptcha_color_scheme\";a:8:{s:5:\"label\";s:22:\"reCAPTCHA Color Scheme\";s:11:\"description\";s:36:\"Controls the reCAPTCHA color scheme.\";s:2:\"id\";s:22:\"recaptcha_color_scheme\";s:7:\"default\";s:5:\"light\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"light\";s:4:\"Hell\";s:4:\"dark\";s:6:\"Dunkel\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"recaptcha_version\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v2\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"recaptcha_score\";a:8:{s:5:\"label\";s:24:\"reCAPTCHA Security Score\";s:11:\"description\";s:153:\"Set a threshold score that must be met by the reCAPTCHA response. The higher the score the harder it becomes for bots, but also false positives increase.\";s:2:\"id\";s:15:\"recaptcha_score\";s:7:\"default\";s:3:\"0.5\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"0.1\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:3:\"0.1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"recaptcha_version\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v3\";}}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"recaptcha_badge_position\";a:8:{s:5:\"label\";s:27:\"reCAPTCHA Plakettenposition\";s:11:\"description\";s:162:\"Set where and if the reCAPTCHA badge should be displayed. <strong>NOTE:</strong> Google\'s Terms and Privacy information needs to be displayed on the contact form.\";s:2:\"id\";s:24:\"recaptcha_badge_position\";s:7:\"default\";s:6:\"inline\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:6:\"inline\";s:6:\"Inline\";s:10:\"bottomleft\";s:11:\"Unten links\";s:11:\"bottomright\";s:12:\"Unten rechts\";s:4:\"hide\";s:10:\"Ausblenden\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"recaptcha_version\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"v3\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:20:\"recaptcha_login_form\";a:5:{s:5:\"label\";s:27:\"reCAPTCHA For User Elements\";s:11:\"description\";s:91:\"Turn on to add reCAPTCHA to the user login, user lost password and user registration forms.\";s:2:\"id\";s:20:\"recaptcha_login_form\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}}}s:15:\"hubspot_section\";a:5:{s:5:\"label\";s:7:\"HubSpot\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:15:\"hubspot_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:3:{s:11:\"hubspot_api\";a:7:{s:5:\"label\";s:11:\"HubSpot API\";s:11:\"description\";s:51:\"Select a method to connect to your HubSpot account.\";s:2:\"id\";s:11:\"hubspot_api\";s:7:\"default\";s:3:\"off\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"auth\";s:5:\"OAuth\";s:3:\"key\";s:14:\"API Schlüssel\";s:3:\"off\";s:3:\"Aus\";}s:9:\"transport\";s:11:\"postMessage\";}s:11:\"hubspot_key\";a:7:{s:5:\"label\";s:15:\"HubSpot API Key\";s:11:\"description\";s:187:\"Follow the steps in <a href=\"https://knowledge.hubspot.com/integrations/how-do-i-get-my-hubspot-api-key\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot docs</a> to access your API key.\";s:2:\"id\";s:11:\"hubspot_key\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"hubspot_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"key\";}}s:9:\"transport\";s:11:\"postMessage\";}s:13:\"hubspot_oauth\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:1748:\"<div id=\"fusion-hubspot-content\"><div data-id=\"error\" style=\"display:none\"><span><strong>There was a problem when trying to connect. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-hubspot-with-avada-forms/\">HubSpot integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://app.hubspot.com/oauth/authorize?client_id=999cc7c3-e358-4a3b-9984-a37dfbd319fa&redirect_uri=https://updates.theme-fusion.com/hubspot-api&scope=actions%20timeline%20oauth%20forms%20crm.objects.contacts.write%20crm.schemas.contacts.read%20crm.schemas.companies.read%20crm.schemas.deals.read&state=https%3A%2F%2Funternehmen.wir-noi.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Try again.</a></div><div data-id=\"no_token\"  style=\"display:flex\"><span><strong>Currently not connected. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-hubspot-with-avada-forms/\">HubSpot integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://app.hubspot.com/oauth/authorize?client_id=999cc7c3-e358-4a3b-9984-a37dfbd319fa&redirect_uri=https://updates.theme-fusion.com/hubspot-api&scope=actions%20timeline%20oauth%20forms%20crm.objects.contacts.write%20crm.schemas.contacts.read%20crm.schemas.companies.read%20crm.schemas.deals.read&state=https%3A%2F%2Funternehmen.wir-noi.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Connect with HubSpot</a></div><div data-id=\"connected\"  style=\"display:none\"><strong>Connected with HubSpot</strong><a class=\"button-primary\" target=\"_blank\" href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada&#038;revoke_hubspot=1\">Revoke Access</a></div>\";s:2:\"id\";s:13:\"hubspot_oauth\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"hubspot_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"auth\";}}}}}s:17:\"mailchimp_section\";a:5:{s:5:\"label\";s:9:\"Mailchimp\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:17:\"mailchimp_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:3:{s:13:\"mailchimp_api\";a:7:{s:5:\"label\";s:13:\"Mailchimp API\";s:11:\"description\";s:53:\"Select a method to connect to your Mailchimp account.\";s:2:\"id\";s:13:\"mailchimp_api\";s:7:\"default\";s:3:\"off\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"auth\";s:5:\"OAuth\";s:3:\"key\";s:14:\"API Schlüssel\";s:3:\"off\";s:3:\"Aus\";}s:9:\"transport\";s:11:\"postMessage\";}s:13:\"mailchimp_key\";a:7:{s:5:\"label\";s:17:\"Mailchimp API Key\";s:11:\"description\";s:157:\"Follow the steps in <a href=\"https://mailchimp.com/help/about-api-keys/\" target=\"_blank\" rel=\"noopener noreferrer\">Mailchimp docs</a> to access your API key.\";s:2:\"id\";s:13:\"mailchimp_key\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"mailchimp_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"key\";}}s:9:\"transport\";s:11:\"postMessage\";}s:15:\"mailchimp_oauth\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:1464:\"<div id=\"fusion-mailchimp-content\"><div data-id=\"error\" style=\"display:none\"><span><strong>There was a problem when trying to connect. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-mailchimp-with-avada-forms/\">Mailchimp integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://login.mailchimp.com/oauth2/authorize?response_type=code&client_id=594428288149&redirect_uri=https://updates.theme-fusion.com/mailchimp-api&state=https%3A%2F%2Funternehmen.wir-noi.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Try again.</a></div><div data-id=\"no_token\"  style=\"display:flex\"><span><strong>Currently not connected. </strong><a target=\"_blank\" href=\"https://theme-fusion.com/documentation/avada/forms/how-to-integrate-mailchimp-with-avada-forms/\">Mailchimp integration with Avada Forms documentation.</a></span><a class=\"button-primary\" target=\"_blank\" href=\"https://login.mailchimp.com/oauth2/authorize?response_type=code&client_id=594428288149&redirect_uri=https://updates.theme-fusion.com/mailchimp-api&state=https%3A%2F%2Funternehmen.wir-noi.org%2Fwp-admin%2Fadmin.php%3Fpage%3Davada\">Connect with Mailchimp</a></div><div data-id=\"connected\"  style=\"display:none\"><strong>Connected with Mailchimp</strong><a class=\"button-primary\" target=\"_blank\" href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada&#038;revoke_mailchimp=1\">Revoke Access</a></div>\";s:2:\"id\";s:15:\"mailchimp_oauth\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"mailchimp_api\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"auth\";}}}}}}}s:7:\"contact\";a:7:{s:5:\"label\";s:16:\"Contact Template\";s:2:\"id\";s:15:\"heading_contact\";s:8:\"priority\";i:22;s:8:\"is_panel\";b:1;s:4:\"icon\";s:16:\"el el-map-marker\";s:8:\"alt_icon\";s:16:\"fusiona-envelope\";s:6:\"fields\";a:3:{s:31:\"contact_form_options_subsection\";a:6:{s:5:\"label\";s:16:\"Contact Template\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:31:\"contact_form_options_subsection\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:5:{s:32:\"contact_form_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:181:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are only for the contact form that displays on the \"Contact\" page template.</div>\";s:2:\"id\";s:32:\"contact_form_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:13:\"email_address\";a:6:{s:5:\"label\";s:14:\"E-Mail Adresse\";s:11:\"description\";s:110:\"Enter the email address the form should be sent to. This only works for the form on the contact page template.\";s:2:\"id\";s:13:\"email_address\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"contact_comment_position\";a:8:{s:5:\"label\";s:34:\"Contact Form Comment Area Position\";s:11:\"description\";s:76:\"Controls the position of the comment field with respect to the other fields.\";s:2:\"id\";s:24:\"contact_comment_position\";s:7:\"default\";s:5:\"below\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"above\";s:8:\"Darüber\";s:5:\"below\";s:8:\"Darunter\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:20:\".fusion-contact-form\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:17:\"Edit Contact Form\";s:4:\"icon\";s:11:\"fusiona-pen\";s:11:\"open_parent\";b:1;}}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:29:\"contact_form_privacy_checkbox\";a:6:{s:5:\"label\";s:37:\"Display Data Privacy Confirmation Box\";s:11:\"description\";s:139:\"Turn on to display a checkbox and custom label that has to be checked in order to confirm data privacy terms and that the form can be sent.\";s:2:\"id\";s:29:\"contact_form_privacy_checkbox\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:26:\"contact_form_privacy_label\";a:8:{s:5:\"label\";s:27:\"Data Privacy Checkbox Label\";s:11:\"description\";s:101:\"Enter the contents that should be displayed as label for the data privacy checkbox. Can contain HTML.\";s:2:\"id\";s:26:\"contact_form_privacy_label\";s:7:\"default\";s:152:\"By checking this box, you confirm that you have read and are agreeing to our terms of use regarding the storage of the data submitted through this form.\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:29:\"contact_form_privacy_checkbox\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:39:\"#comment-privacy-checkbox-wrapper label\";s:8:\"function\";s:4:\"html\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}}}s:18:\"google_map_section\";a:7:{s:5:\"label\";s:10:\"Google Map\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:18:\"google_map_section\";s:7:\"default\";s:10:\"Google Map\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:17:{s:24:\"google_map_disabled_note\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:187:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Google Maps Script is disabled in Advanced > Theme Features section. Please enable it to see the options.</div>\";s:2:\"id\";s:24:\"google_map_disabled_note\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:30:\"google_map_important_note_info\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:269:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are for the google map that displays on the \"Contact\" page template. The only option that controls the Avada Builder google map element is the Google Maps API Key.</div>\";s:2:\"id\";s:30:\"google_map_important_note_info\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:8:\"gmap_api\";a:8:{s:5:\"label\";s:19:\"Google Maps API Key\";s:11:\"description\";s:271:\"Follow the steps in <a href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#key\" target=\"_blank\" rel=\"noopener noreferrer\">the Google docs</a> to get the API key. This key applies to both the contact page map and Avada Builder google map element.\";s:2:\"id\";s:8:\"gmap_api\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}s:17:\"validate_callback\";s:42:\"fusion_fusionredux_validate_google_api_key\";}s:13:\"gmap_api_type\";a:8:{s:5:\"label\";s:15:\"Google API Type\";s:11:\"description\";s:394:\"Select the Google API type that should be used to load your map. The JavaScript API allows for more options and custom styling, but could be charged for by Google depending on map loads, while the embed API can be used for free regardless of map loads. For more information please see the <a href=\"https://cloud.google.com/maps-platform/user-guide/\" target=\"_blank\">Google Maps Users Guide</a>.\";s:2:\"id\";s:13:\"gmap_api_type\";s:7:\"default\";s:2:\"js\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:2:\"js\";s:6:\"JS API\";s:5:\"embed\";s:9:\"Embed API\";}s:13:\"edit_shortcut\";a:2:{s:8:\"selector\";a:1:{i:0;s:22:\"#fusion-gmap-container\";}s:9:\"shortcuts\";a:1:{i:0;a:3:{s:10:\"aria_label\";s:15:\"Edit Google Map\";s:4:\"icon\";s:11:\"fusiona-pen\";s:11:\"open_parent\";b:1;}}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:18:\"gmap_embed_address\";a:7:{s:5:\"label\";s:7:\"Address\";s:11:\"description\";s:283:\"Add the address of the location you wish to display. Leave empty, if you don&#039;t want to display a map on the contact page. Address example: 775 New York Ave, Brooklyn, Kings, New York 11203. If the location is off, please try to use long/lat coordinates. ex: 12.381068,-1.492711.\";s:2:\"id\";s:18:\"gmap_embed_address\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:5:\"embed\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:19:\"gmap_embed_map_type\";a:8:{s:5:\"label\";s:8:\"Map Type\";s:11:\"description\";s:41:\"Select the type of google map to display.\";s:2:\"id\";s:19:\"gmap_embed_map_type\";s:7:\"default\";s:7:\"roadmap\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"roadmap\";s:7:\"Roadmap\";s:9:\"satellite\";s:9:\"Satellite\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:5:\"embed\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:12:\"gmap_address\";a:7:{s:5:\"label\";s:18:\"Google Map Adresse\";s:11:\"description\";s:411:\"Add the address to the location you wish to display. Leave empty, if you don&#039;t want to display a map on the contact page. Single address example: 775 New York Ave, Brooklyn, Kings, New York 11203. If the location is off, please try to use long/lat coordinates with latlng=. ex: latlng=12.381068,-1.492711. For multiple addresses, separate addresses by using the | symbol. ex: Address 1|Address 2|Address 3.\";s:2:\"id\";s:12:\"gmap_address\";s:7:\"default\";s:49:\"775 New York Ave, Brooklyn, Kings, New York 11203\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:9:\"gmap_type\";a:8:{s:5:\"label\";s:14:\"Google Map Typ\";s:11:\"description\";s:46:\"Controls the type of google map that displays.\";s:2:\"id\";s:9:\"gmap_type\";s:7:\"default\";s:7:\"roadmap\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:7:\"roadmap\";s:7:\"Roadmap\";s:9:\"satellite\";s:9:\"Satellite\";s:6:\"hybrid\";s:6:\"Hybrid\";s:7:\"terrain\";s:7:\"Terrain\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"gmap_dimensions\";a:8:{s:5:\"label\";s:21:\"Google Map Dimensions\";s:11:\"description\";s:95:\"Controls the width and height of the google map. NOTE: height does not accept percentage value.\";s:2:\"id\";s:15:\"gmap_dimensions\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"415px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:14:\"gmap_topmargin\";a:7:{s:5:\"label\";s:23:\"Google Map Abstand oben\";s:11:\"description\";s:105:\"This is only applied to google maps that are not 100% width. It controls the distance to menu/page title.\";s:2:\"id\";s:14:\"gmap_topmargin\";s:7:\"default\";s:4:\"55px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"--gmap_topmargin\";s:7:\"element\";s:17:\".avada-google-map\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:1:\"$\";i:1;s:4:\"55px\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:22:\"gmap_dimensions[width]\";i:1;s:3:\"===\";i:2;s:4:\"100%\";}}}}}}}s:14:\"map_zoom_level\";a:8:{s:5:\"label\";s:17:\"Karten Zoom Level\";s:11:\"description\";s:143:\"Choose the zoom level for the map. 0 corresponds to a map of the earth fully zoomed out, and larger zoom levels zoom in at a higher resolution.\";s:2:\"id\";s:14:\"map_zoom_level\";s:7:\"default\";i:8;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:0;s:3:\"max\";i:22;s:4:\"step\";i:1;}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:7:\"map_pin\";a:7:{s:5:\"label\";s:11:\"Address Pin\";s:11:\"description\";s:46:\"Turn on to display the google map address pin.\";s:2:\"id\";s:7:\"map_pin\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:18:\"gmap_pin_animation\";a:7:{s:5:\"label\";s:21:\"Address Pin Animation\";s:11:\"description\";s:65:\"Turn on to enable address pin animation when the map first loads.\";s:2:\"id\";s:18:\"gmap_pin_animation\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:9:\"map_popup\";a:7:{s:5:\"label\";s:18:\"Map Popup On Click\";s:11:\"description\";s:97:\"Turn on to require a click to display the popup graphic with address info for the pin on the map.\";s:2:\"id\";s:9:\"map_popup\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"map_scrollwheel\";a:7:{s:5:\"label\";s:25:\"Map Zoom With Scrollwheel\";s:11:\"description\";s:189:\"Turn on to enable zooming using the mouse scroll wheel. Use Cmd/Ctrl key + scroll to zoom. If set to no, zooming through two-finger movements (cooperative gesture handling) will be enabled.\";s:2:\"id\";s:15:\"map_scrollwheel\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:9:\"map_scale\";a:7:{s:5:\"label\";s:9:\"Map Scale\";s:11:\"description\";s:40:\"Turn on to display the google map scale.\";s:2:\"id\";s:9:\"map_scale\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:15:\"map_zoomcontrol\";a:7:{s:5:\"label\";s:32:\"Map Zoom &amp; Pan Control Icons\";s:11:\"description\";s:69:\"Turn on to display the google map zoom control and pan control icons.\";s:2:\"id\";s:15:\"map_zoomcontrol\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}}}s:33:\"google_map_design_styling_section\";a:6:{s:5:\"label\";s:18:\"Google Map Styling\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:33:\"google_map_design_styling_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:9:{s:26:\"google_map_disabled_note_1\";a:6:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:187:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> Google Maps Script is disabled in Advanced > Theme Features section. Please enable it to see the options.</div>\";s:2:\"id\";s:26:\"google_map_disabled_note_1\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:38:\"google_map_styling_important_note_info\";a:5:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:278:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are only for the google map that displays on the \"Contact\" page template, they do not control the google map element.  These options are only available for the JS API type.</div>\";s:2:\"id\";s:38:\"google_map_styling_important_note_info\";s:4:\"type\";s:6:\"custom\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}}s:11:\"map_styling\";a:8:{s:5:\"label\";s:27:\"Wähle die Kartengestaltung\";s:11:\"description\";s:133:\"Controls the google map styles. Default is google style, Theme is our style, or choose Custom to select your own style options below.\";s:2:\"id\";s:11:\"map_styling\";s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:7:\"default\";s:15:\"Default Styling\";s:5:\"theme\";s:13:\"Theme Styling\";s:6:\"custom\";s:14:\"Custom Styling\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:1;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:17:\"map_overlay_color\";a:7:{s:5:\"label\";s:20:\"Karten-Overlay Farbe\";s:11:\"description\";s:137:\"Custom styling setting only. Pick any overlaying color for the map besides pure black or white. Works best with &quot;roadmap&quot; type.\";s:2:\"id\";s:17:\"map_overlay_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:19:\"map_infobox_styling\";a:8:{s:5:\"label\";s:16:\"Info Box Styling\";s:11:\"description\";s:66:\"Custom styling setting only. Controls the styling of the info box.\";s:2:\"id\";s:19:\"map_infobox_styling\";s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:7:\"default\";s:15:\"Default Infobox\";s:6:\"custom\";s:14:\"Custom Infobox\";}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:19:\"map_infobox_content\";a:7:{s:5:\"label\";s:15:\"Info Box Inhalt\";s:11:\"description\";s:207:\"Custom styling setting only. Type in custom info box content to replace the default address string. For multiple addresses, separate info box contents by using the | symbol. ex: InfoBox 1|InfoBox 2|InfoBox 3\";s:2:\"id\";s:19:\"map_infobox_content\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:2;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:20:\"map_infobox_bg_color\";a:7:{s:5:\"label\";s:26:\"Info Box Hintergrund Farbe\";s:11:\"description\";s:68:\"Custom styling setting only. Controls the info box background color.\";s:2:\"id\";s:20:\"map_infobox_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:19:\"map_infobox_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:2;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:22:\"map_infobox_text_color\";a:7:{s:5:\"label\";s:19:\"Info Box Text Farbe\";s:11:\"description\";s:62:\"Custom styling setting only. Controls the info box text color.\";s:2:\"id\";s:22:\"map_infobox_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:19:\"map_infobox_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:2;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}s:22:\"map_custom_marker_icon\";a:7:{s:5:\"label\";s:31:\"Benutzerdefiniertes Marker Icon\";s:11:\"description\";s:270:\"Nur für benutzerdefinierte Stil Einstellungen. Nutzen Sie Bild-URLs für benutzerdefinierte Markericons oder &quot;theme&quot; für unseren Marker. Für mehrere Adressen, trennen Sie die Iocns mit dem | Symbol oder nutzen Sie einen für alle. z.B.: Icon 1|Icon 2|Icon 3\";s:2:\"id\";s:22:\"map_custom_marker_icon\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:4:{i:0;a:3:{s:7:\"setting\";s:19:\"map_infobox_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:1;a:3:{s:7:\"setting\";s:11:\"map_styling\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"custom\";}i:2;a:3:{s:7:\"setting\";s:11:\"status_gmap\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}i:3;a:3:{s:7:\"setting\";s:13:\"gmap_api_type\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:2:\"js\";}}s:15:\"update_callback\";a:1:{i:0;a:4:{s:5:\"where\";s:8:\"postMeta\";s:9:\"condition\";s:17:\"_wp_page_template\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";s:11:\"contact.php\";}}}}}}}s:6:\"search\";a:6:{s:5:\"label\";s:5:\"Suche\";s:2:\"id\";s:14:\"heading_search\";s:8:\"priority\";i:23;s:4:\"icon\";s:14:\"el-icon-search\";s:8:\"alt_icon\";s:14:\"fusiona-search\";s:6:\"fields\";a:2:{s:27:\"search_form_options_section\";a:6:{s:5:\"label\";s:8:\"Suchfeld\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"search_form_options_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:10:{s:21:\"search_filter_results\";a:6:{s:5:\"label\";s:31:\"Limit Search Results Post Types\";s:11:\"description\";s:74:\"Turn on to limit the search results to specific post types you can choose.\";s:2:\"id\";s:21:\"search_filter_results\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:14:\"search_content\";a:9:{s:5:\"label\";s:23:\"Suchergebnis Inhaltstyp\";s:11:\"description\";s:61:\"Controls the type of content that displays in search results.\";s:2:\"id\";s:14:\"search_content\";s:7:\"default\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:6:{s:4:\"post\";s:25:\"Alle Beiträge angezeigen\";s:4:\"page\";s:6:\"Seiten\";s:15:\"avada_portfolio\";s:15:\"Portfolio Items\";s:9:\"avada_faq\";s:9:\"FAQ Items\";s:7:\"product\";s:20:\"WooCommerce Products\";s:12:\"tribe_events\";s:32:\"Veranstaltungskalender Einträge\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:21:\"search_filter_results\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:1:\"1\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:27:\"search_limit_to_post_titles\";a:6:{s:5:\"label\";s:27:\"Limit Search to Post Titles\";s:11:\"description\";s:48:\"Turn on to limit the search to post titles only.\";s:2:\"id\";s:27:\"search_limit_to_post_titles\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:18:\"search_form_design\";a:7:{s:5:\"label\";s:15:\"Suchfeld Design\";s:11:\"description\";s:40:\"Controls the design of the search forms.\";s:2:\"id\";s:18:\"search_form_design\";s:7:\"default\";s:5:\"clean\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"classic\";s:9:\"Klassisch\";s:5:\"clean\";s:6:\"Sauber\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"fusion-search-form-$\";s:12:\"remove_attrs\";a:2:{i:0;s:26:\"fusion-search-form-classic\";i:1;s:24:\"fusion-search-form-clean\";}}}}s:11:\"live_search\";a:7:{s:5:\"label\";s:18:\"Enable Live Search\";s:11:\"description\";s:90:\"Turn on to enable live search results on menu search field and other fitting search forms.\";s:2:\"id\";s:11:\"live_search\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:22:\"searchform_live_search\";a:4:{s:8:\"selector\";s:30:\".searchform.fusion-search-form\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"searchform\";}s:21:\"success_trigger_event\";s:15:\"avadaLiveSearch\";}}i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:11:\"live_search\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:26:\"live_search_min_char_count\";a:9:{s:5:\"label\";s:35:\"Live Search Minimal Character Count\";s:11:\"description\";s:348:\"Set the minimal character count to trigger the live search.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:26:\"live_search_min_char_count\";s:7:\"default\";s:1:\"4\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:37:\"searchform_live_search_min_char_count\";a:4:{s:8:\"selector\";s:30:\".searchform.fusion-search-form\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:10:\"searchform\";}s:21:\"success_trigger_event\";s:15:\"avadaLiveSearch\";}}i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:14:\"min_char_count\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:28:\"live_search_results_per_page\";a:8:{s:5:\"label\";s:27:\"Live Search Number of Posts\";s:11:\"description\";s:372:\"Controls the number of posts that should be displayed as search result suggestions.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:28:\"live_search_results_per_page\";s:7:\"default\";s:3:\"100\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"10\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:2:\"10\";}s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:8:\"per_page\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"live_search_results_height\";a:8:{s:5:\"label\";s:36:\"Live Search Results Container Height\";s:11:\"description\";s:369:\"Controls the height of the container in which the search results will be listed.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:26:\"live_search_results_height\";s:7:\"default\";s:3:\"250\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"100\";s:3:\"max\";s:3:\"800\";s:4:\"step\";s:1:\"5\";}s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--live_search_results_height\";s:7:\"element\";s:22:\".fusion-search-results\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:34:\"live_search_display_featured_image\";a:7:{s:5:\"label\";s:34:\"Live Search Display Featured Image\";s:11:\"description\";s:354:\"Turn on to display the featured image of each live search result.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:34:\"live_search_display_featured_image\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:13:\"show_feat_img\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:29:\"live_search_display_post_type\";a:7:{s:5:\"label\";s:29:\"Live Search Display Post Type\";s:11:\"description\";s:349:\"Turn on to display the post type of each live search result.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:29:\"live_search_display_post_type\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"avadaLiveSearchVars\";s:2:\"id\";s:17:\"display_post_type\";s:7:\"trigger\";a:1:{i:0;s:15:\"avadaLiveSearch\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:27:\"search_page_options_section\";a:6:{s:5:\"label\";s:9:\"Suchseite\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"search_page_options_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:13:{s:44:\"search_page_options_template_override_notice\";a:5:{s:2:\"id\";s:44:\"search_page_options_template_override_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:1;s:11:\"description\";s:327:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab are not available because a global Content override is currently used. To edit your global layout please visit <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>.</div>\";s:4:\"type\";s:6:\"custom\";}s:35:\"search_page_options_template_notice\";a:5:{s:2:\"id\";s:35:\"search_page_options_template_notice\";s:5:\"label\";s:0:\"\";s:6:\"hidden\";b:0;s:11:\"description\";s:328:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a more modern, performant setup, we recommend using the Live Builder. To create a custom Content Layout, <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">visit this page.</a></div>\";s:4:\"type\";s:6:\"custom\";}s:13:\"search_layout\";a:8:{s:5:\"label\";s:21:\"Suchergebnisse Layout\";s:11:\"description\";s:48:\"Controls the layout for the search results page.\";s:2:\"id\";s:13:\"search_layout\";s:7:\"default\";s:4:\"grid\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:6:{s:5:\"large\";s:5:\"Groß\";s:6:\"medium\";s:6:\"Mittel\";s:15:\"large alternate\";s:16:\"Groß Alternativ\";s:16:\"medium alternate\";s:17:\"Mittel Alternativ\";s:4:\"grid\";s:4:\"Grid\";s:8:\"timeline\";s:10:\"Zeitleiste\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:23:\"search_results_per_page\";a:8:{s:5:\"label\";s:31:\"Anzahl Suchergebnisse pro Seite\";s:11:\"description\";s:47:\"Controls the number of search results per page.\";s:2:\"id\";s:23:\"search_results_per_page\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:22:\"search_pagination_type\";a:8:{s:5:\"label\";s:22:\"Search Pagination Type\";s:11:\"description\";s:57:\"Controls the pagination type for the search results page.\";s:2:\"id\";s:22:\"search_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:10:\"pagination\";s:16:\"Seitennavigation\";s:15:\"infinite_scroll\";s:18:\"Infinite Scrolling\";s:16:\"load_more_button\";s:20:\"Weitere Laden Button\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:19:\"search_grid_columns\";a:10:{s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:48:\"Controls the number of columns for grid layouts.\";s:2:\"id\";s:19:\"search_grid_columns\";s:7:\"default\";i:3;s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:26:\"search_grid_column_spacing\";a:10:{s:5:\"label\";s:14:\"Spaltenabstand\";s:11:\"description\";s:47:\"Controls the column spacing for search results.\";s:2:\"id\";s:26:\"search_grid_column_spacing\";s:7:\"default\";s:2:\"40\";s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:5:\"class\";s:16:\"fusion-or-gutter\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:4:\"grid\";}i:1;a:3:{s:7:\"setting\";s:13:\"search_layout\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"masonry\";}}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:28:\"--search_grid_column_spacing\";s:7:\"element\";s:24:\".fusion-blog-layout-grid\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:21:\"search_content_length\";a:8:{s:5:\"label\";s:22:\"Search Content Display\";s:11:\"description\";s:104:\"Controls if the search results content displays as an excerpt or full content or is completely disabled.\";s:2:\"id\";s:21:\"search_content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:7:\"excerpt\";s:6:\"Auszug\";s:12:\"full_content\";s:15:\"Gesamter Inhalt\";s:7:\"no_text\";s:7:\"No Text\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:21:\"search_excerpt_length\";a:9:{s:5:\"label\";s:21:\"Search Excerpt Length\";s:11:\"description\";s:76:\"Controls the number of words (or characters) in the search results excerpts.\";s:2:\"id\";s:21:\"search_excerpt_length\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:21:\"search_content_length\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"excerpt\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:25:\"search_strip_html_excerpt\";a:8:{s:5:\"label\";s:30:\"Search Strip HTML from Excerpt\";s:11:\"description\";s:75:\"Turn on to strip HTML content from the excerpt for the search results page.\";s:2:\"id\";s:25:\"search_strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:21:\"search_content_length\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"excerpt\";}}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:22:\"search_featured_images\";a:7:{s:5:\"label\";s:37:\"Bevorzugte Bilder für Suchergebnisse\";s:11:\"description\";s:54:\"Turn on to display featured images for search results.\";s:2:\"id\";s:22:\"search_featured_images\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"hidden\";b:0;s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:11:\"search_meta\";a:9:{s:5:\"label\";s:19:\"Search Results Meta\";s:11:\"description\";s:84:\"Select the post meta data you want to be displayed in the individual search results.\";s:2:\"id\";s:11:\"search_meta\";s:7:\"default\";a:5:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";i:4;s:9:\"read_more\";}s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:5:\"multi\";b:1;s:7:\"choices\";a:7:{s:6:\"author\";s:5:\"Autor\";s:4:\"date\";s:5:\"Datum\";s:10:\"categories\";s:10:\"Kategorien\";s:4:\"tags\";s:13:\"Schlagwörter\";s:8:\"comments\";s:10:\"Kommentare\";s:9:\"read_more\";s:14:\"Read More Link\";s:9:\"post_type\";s:9:\"Post Type\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}s:26:\"search_new_search_position\";a:8:{s:5:\"label\";s:18:\"Suchefeld Position\";s:11:\"description\";s:67:\"Controls the position of the search bar on the search results page.\";s:2:\"id\";s:26:\"search_new_search_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"choices\";a:3:{s:3:\"top\";s:17:\"Über Ergebnissen\";s:6:\"bottom\";s:17:\"Unter Ergebnissen\";s:6:\"hidden\";s:10:\"Ausblenden\";}s:15:\"update_callback\";a:1:{i:0;a:3:{s:9:\"condition\";s:9:\"is_search\";s:8:\"operator\";s:3:\"===\";s:5:\"value\";b:1;}}}}}}}s:7:\"privacy\";a:6:{s:5:\"label\";s:11:\"Datenschutz\";s:2:\"id\";s:15:\"heading_privacy\";s:8:\"priority\";i:25;s:4:\"icon\";s:12:\"el-icon-user\";s:8:\"alt_icon\";s:15:\"fusiona-privacy\";s:6:\"fields\";a:24:{s:12:\"privacy_note\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:502:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options in this section will help to easier comply with data privacy regulations, like the European GDPR. When the \"Privacy Consent\" option is used, Avada will create a cookie with the name <b>\"privacy_embeds\"</b> on user clients browsing your site to manage and store user consent to load the different third party embeds and tracking scripts. You may want to add information about this cookie to your privacy page.</div>\";s:2:\"id\";s:12:\"privacy_note\";s:4:\"type\";s:6:\"custom\";}s:18:\"gfonts_load_method\";a:7:{s:2:\"id\";s:18:\"gfonts_load_method\";s:5:\"label\";s:44:\"Google &amp; Font Awesome Schriftarten Modus\";s:11:\"description\";s:184:\"When set to &quot;Local&quot;, the Google and Font Awesome fonts set in Global Options will be downloaded to your server. Set to &quot;CDN&quot; to use the Google and FontAwesome CDNs.\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:3:\"cdn\";s:7:\"choices\";a:2:{s:5:\"local\";s:5:\"Lokal\";s:3:\"cdn\";s:3:\"CDN\";}s:9:\"transport\";s:11:\"postMessage\";}s:14:\"privacy_embeds\";a:6:{s:5:\"label\";s:28:\"Einwilligung zum Datenschutz\";s:11:\"description\";s:79:\"Turn on to prevent embeds and scripts from loading until user consent is given.\";s:2:\"id\";s:14:\"privacy_embeds\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"privacy_expiry\";a:8:{s:5:\"label\";s:56:\"Ablauf der Cookies für die Einwilligung zum Datenschutz\";s:11:\"description\";s:68:\"Controls how long the consent cookie should be stored for.  In days.\";s:2:\"id\";s:14:\"privacy_expiry\";s:7:\"default\";s:2:\"30\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"366\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:19:\"privacy_embed_types\";a:9:{s:5:\"label\";s:21:\"Privacy Consent Types\";s:11:\"description\";s:67:\"Select the types of embeds which you would like to require consent.\";s:2:\"id\";s:19:\"privacy_embed_types\";s:7:\"default\";a:8:{i:0;s:7:\"youtube\";i:1;s:5:\"vimeo\";i:2;s:10:\"soundcloud\";i:3;s:8:\"facebook\";i:4;s:6:\"flickr\";i:5;s:7:\"twitter\";i:6;s:5:\"gmaps\";i:7;s:8:\"tracking\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:8:{s:7:\"youtube\";s:7:\"YouTube\";s:5:\"vimeo\";s:5:\"Vimeo\";s:10:\"soundcloud\";s:10:\"SoundCloud\";s:8:\"facebook\";s:8:\"Facebook\";s:6:\"flickr\";s:6:\"Flickr\";s:7:\"twitter\";s:7:\"Twitter\";s:5:\"gmaps\";s:11:\"Google Maps\";s:8:\"tracking\";s:16:\"Tracking Cookies\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:22:\"privacy_embed_defaults\";a:9:{s:5:\"label\";s:30:\"Privacy Selected Consent Types\";s:11:\"description\";s:138:\"Select the types of embeds which you would like to have checked by default.  This applies to both the privacy bar and the privacy element.\";s:2:\"id\";s:22:\"privacy_embed_defaults\";s:7:\"default\";a:0:{}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:8:{s:7:\"youtube\";s:7:\"YouTube\";s:5:\"vimeo\";s:5:\"Vimeo\";s:10:\"soundcloud\";s:10:\"SoundCloud\";s:8:\"facebook\";s:8:\"Facebook\";s:6:\"flickr\";s:6:\"Flickr\";s:7:\"twitter\";s:7:\"Twitter\";s:5:\"gmaps\";s:11:\"Google Maps\";s:8:\"tracking\";s:16:\"Tracking Cookies\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:16:\"privacy_bg_color\";a:7:{s:5:\"label\";s:36:\"Privacy Placeholder Background Color\";s:11:\"description\";s:59:\"Controls the background color for the privacy placeholders.\";s:2:\"id\";s:16:\"privacy_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--privacy_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:13:\"privacy_color\";a:7:{s:5:\"label\";s:30:\"Privacy Placeholder Text Color\";s:11:\"description\";s:51:\"Controls the text color for the embed placeholders.\";s:2:\"id\";s:13:\"privacy_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"--privacy_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:11:\"privacy_bar\";a:5:{s:5:\"label\";s:11:\"Privacy Bar\";s:11:\"description\";s:58:\"Turn on to enable a privacy bar at the bottom of the page.\";s:2:\"id\";s:11:\"privacy_bar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:19:\"privacy_bar_padding\";a:8:{s:5:\"label\";s:19:\"Privacy Bar Padding\";s:11:\"description\";s:68:\"Controls the top/right/bottom/left paddings of the privacy bar area.\";s:2:\"id\";s:19:\"privacy_bar_padding\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"15px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:4:\"type\";s:7:\"spacing\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:25:\"--privacy_bar_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:28:\"--privacy_bar_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:26:\"--privacy_bar_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:27:\"--privacy_bar_padding-right\";s:6:\"choice\";s:5:\"right\";}}}s:20:\"privacy_bar_bg_color\";a:7:{s:5:\"label\";s:28:\"Privacy Bar Background Color\";s:11:\"description\";s:50:\"Controls the background color for the privacy bar.\";s:2:\"id\";s:20:\"privacy_bar_bg_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--privacy_bar_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"privacy_bar_font_size\";a:8:{s:5:\"label\";s:21:\"Privacy Bar Font Size\";s:11:\"description\";s:51:\"Controls the font size for the privacy bar content.\";s:2:\"id\";s:21:\"privacy_bar_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:23:\"--privacy_bar_font_size\";}}}s:17:\"privacy_bar_color\";a:7:{s:5:\"label\";s:22:\"Privacy Bar Text Color\";s:11:\"description\";s:52:\"Controls the text color for the privacy bar content.\";s:2:\"id\";s:17:\"privacy_bar_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--privacy_bar_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"privacy_bar_link_color\";a:7:{s:5:\"label\";s:22:\"Privacy Bar Link Color\";s:11:\"description\";s:44:\"Controls the link color for the privacy bar.\";s:2:\"id\";s:22:\"privacy_bar_link_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--privacy_bar_link_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:28:\"privacy_bar_link_hover_color\";a:7:{s:5:\"label\";s:28:\"Privacy Bar Link Hover Color\";s:11:\"description\";s:50:\"Controls the link hover color for the privacy bar.\";s:2:\"id\";s:28:\"privacy_bar_link_hover_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--privacy_bar_link_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"privacy_bar_text\";a:7:{s:5:\"label\";s:16:\"Privacy Bar Text\";s:11:\"description\";s:59:\"Enter the text which you want to appear on the privacy bar.\";s:2:\"id\";s:16:\"privacy_bar_text\";s:7:\"default\";s:51:\"This website uses cookies and third party services.\";s:4:\"type\";s:8:\"textarea\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:24:\"privacy_bar_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_button_text\";a:7:{s:5:\"label\";s:23:\"Privacy Bar Button Text\";s:11:\"description\";s:56:\"Controls the button text for the privacy bar acceptance.\";s:2:\"id\";s:23:\"privacy_bar_button_text\";s:7:\"default\";s:2:\"OK\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:31:\"privacy_bar_button_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_button_save\";a:7:{s:5:\"label\";s:32:\"Privacy Bar Button Save On Click\";s:11:\"description\";s:201:\"If enabled, when the button is clicked it will save the default consent selection.  If disabled the button will only save the preferences after a checkbox has been changed (bar will be hidden however).\";s:2:\"id\";s:23:\"privacy_bar_button_save\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:16:\"avadaPrivacyVars\";s:2:\"id\";s:6:\"button\";s:7:\"trigger\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"privacy_bar_more\";a:7:{s:5:\"label\";s:20:\"Privacy Bar Settings\";s:11:\"description\";s:132:\"If enabled, a settings section will be added to show more information and to provide checkboxes for tracking and third party embeds.\";s:2:\"id\";s:16:\"privacy_bar_more\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:24:\"privacy_bar_more_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:21:\"privacy_bar_more_text\";a:7:{s:5:\"label\";s:25:\"Privacy Bar Settings Text\";s:11:\"description\";s:52:\"Controls the link text for the privacy bar settings.\";s:2:\"id\";s:21:\"privacy_bar_more_text\";s:7:\"default\";s:13:\"Einstellungen\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:15:\"partial_refresh\";a:1:{s:29:\"privacy_bar_more_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:23:\"privacy_bar_update_text\";a:7:{s:5:\"label\";s:30:\"Privacy Bar Update Button Text\";s:11:\"description\";s:74:\"Controls the button text for the privacy bar after a checkbox has changed.\";s:2:\"id\";s:23:\"privacy_bar_update_text\";s:7:\"default\";s:15:\"Update Settings\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:2;a:3:{s:7:\"setting\";s:14:\"privacy_embeds\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:15:\"partial_refresh\";a:1:{s:31:\"privacy_bar_update_text_partial\";a:4:{s:8:\"selector\";s:45:\".fusion-privacy-bar.fusion-privacy-bar-bottom\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:11:\"privacy_bar\";}s:21:\"success_trigger_event\";a:1:{i:0;s:16:\"fusionPrivacyBar\";}}}}s:30:\"privacy_bar_headings_font_size\";a:7:{s:5:\"label\";s:29:\"Privacy Bar Heading Font Size\";s:11:\"description\";s:56:\"Controls the font size for the privacy bar heading text.\";s:2:\"id\";s:30:\"privacy_bar_headings_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:1:{s:5:\"units\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}}s:26:\"privacy_bar_headings_color\";a:7:{s:5:\"label\";s:26:\"Privacy Bar Headings Color\";s:11:\"description\";s:56:\"Controls the text color of the privacy bar heading font.\";s:2:\"id\";s:26:\"privacy_bar_headings_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:28:\"--privacy_bar_headings_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"privacy_bar_content\";a:9:{s:5:\"label\";s:19:\"Privacy Bar Content\";s:11:\"description\";s:144:\"The privacy bar content uses a repeater field to select the content for each column. Click the &quot;Add&quot; button to add additional columns.\";s:2:\"id\";s:19:\"privacy_bar_content\";s:7:\"default\";a:0:{}s:4:\"type\";s:8:\"repeater\";s:10:\"bind_title\";s:5:\"title\";s:5:\"limit\";i:6;s:6:\"fields\";a:3:{s:4:\"type\";a:5:{s:2:\"id\";s:4:\"type\";s:4:\"type\";s:6:\"select\";s:11:\"description\";s:45:\"Select the type of cookie/content to display.\";s:7:\"default\";s:6:\"custom\";s:7:\"choices\";a:3:{s:6:\"custom\";s:6:\"Custom\";s:8:\"tracking\";s:16:\"Tracking Cookies\";s:6:\"embeds\";s:18:\"Third Party Embeds\";}}s:5:\"title\";a:4:{s:2:\"id\";s:5:\"title\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:21:\"Title for the content\";s:7:\"default\";s:0:\"\";}s:11:\"description\";a:4:{s:2:\"id\";s:11:\"description\";s:4:\"type\";s:8:\"textarea\";s:5:\"label\";s:27:\"Description for the content\";s:7:\"default\";s:0:\"\";}}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:16:\"privacy_bar_more\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}i:1;a:3:{s:7:\"setting\";s:11:\"privacy_bar\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"0\";}}}}}s:6:\"extras\";a:6:{s:5:\"label\";s:6:\"Extras\";s:2:\"id\";s:13:\"extra_section\";s:8:\"priority\";i:24;s:4:\"icon\";s:12:\"el-icon-cogs\";s:8:\"alt_icon\";s:11:\"fusiona-cog\";s:6:\"fields\";a:5:{s:20:\"misc_options_section\";a:6:{s:5:\"label\";s:9:\"Sonstiges\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:20:\"misc_options_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:18:{s:16:\"sidenav_behavior\";a:7:{s:5:\"label\";s:26:\"Seiten Navigaion Verhalten\";s:11:\"description\";s:89:\"Controls if the child pages show on click or hover for the side navigation page template.\";s:2:\"id\";s:16:\"sidenav_behavior\";s:7:\"default\";s:5:\"hover\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:5:\"hover\";s:28:\"Mit der Maus darüber fahren\";s:5:\"click\";s:5:\"Klick\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:6:\"choice\";s:3:\"top\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:16:\"avadaSideNavVars\";s:2:\"id\";s:16:\"sidenav_behavior\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:26:\"featured_image_placeholder\";a:6:{s:5:\"label\";s:16:\"Bild Platzhalter\";s:11:\"description\";s:175:\"Turn on to display a placeholder image for posts that do not have a featured image. This allows the post to display on portfolio archives and related posts/projects carousels.\";s:2:\"id\";s:26:\"featured_image_placeholder\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:28:\"related_posts_layout_partial\";a:5:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";s:11:\"js_callback\";a:1:{i:0;s:17:\"noPortfolioOnPage\";}}}}s:12:\"excerpt_base\";a:6:{s:5:\"label\";s:28:\"Basis für die Auszugslänge\";s:11:\"description\";s:63:\"Controls if the excerpt length is based on words or characters.\";s:2:\"id\";s:12:\"excerpt_base\";s:7:\"default\";s:5:\"words\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:5:\"words\";s:7:\"Wörter\";s:10:\"characters\";s:10:\"Buchstaben\";}}s:16:\"disable_excerpts\";a:5:{s:5:\"label\";s:32:\"Display Excerpt Read More Symbol\";s:11:\"description\";s:72:\"Turn on to display the read more symbol on excerpts throughout the site.\";s:2:\"id\";s:16:\"disable_excerpts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:13:\"blog_subtitle\";a:6:{s:5:\"label\";s:24:\"Excerpt Read More Symbol\";s:11:\"description\";s:94:\"Set the excerpt read more symbol, HTML code is allowed. If left empty it will be set to [...].\";s:2:\"id\";s:24:\"excerpt_read_more_symbol\";s:7:\"default\";s:5:\"[...]\";s:4:\"type\";s:4:\"text\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_excerpts\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:14:\"link_read_more\";a:6:{s:5:\"label\";s:44:\"Make Excerpt Symbol Link to Single Post Page\";s:11:\"description\";s:78:\"Turn on to have the read more symbol on excerpts link to the single post page.\";s:2:\"id\";s:14:\"link_read_more\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"disable_excerpts\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:12:\"avatar_shape\";a:7:{s:5:\"label\";s:12:\"Avatar Shape\";s:11:\"description\";s:72:\"Set the shape for Avatars used in comments, author info and other areas.\";s:2:\"id\";s:12:\"avatar_shape\";s:7:\"default\";s:6:\"circle\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:6:\"square\";s:6:\"Square\";s:6:\"circle\";s:6:\"Circle\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:15:\"fusion-avatar-$\";s:12:\"remove_attrs\";a:2:{i:0;s:20:\"fusion-avatar-square\";i:1;s:20:\"fusion-avatar-circle\";}}}}s:14:\"comments_pages\";a:5:{s:5:\"label\";s:20:\"Kommentare auf Seite\";s:11:\"description\";s:43:\"Turn on to allow comments on regular pages.\";s:2:\"id\";s:14:\"comments_pages\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:21:\"featured_images_pages\";a:6:{s:5:\"label\";s:24:\"Featured Images on Pages\";s:11:\"description\";s:52:\"Turn on to display featured images on regular pages.\";s:2:\"id\";s:21:\"featured_images_pages\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:29:\"featured_images_pages_partial\";a:4:{s:8:\"selector\";s:30:\".fusion-featured-image-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:23:\"singular_featured_image\";}s:21:\"success_trigger_event\";s:35:\"fusion-reinit-single-post-slideshow\";}}}s:21:\"nofollow_social_links\";a:6:{s:5:\"label\";s:50:\"Füge &quot;nofollow&quot; zu Sozialen Links hinzu\";s:11:\"description\";s:66:\"Turn on to add &quot;nofollow&quot; attribute to all social links.\";s:2:\"id\";s:21:\"nofollow_social_links\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"social_icons_new\";a:6:{s:5:\"label\";s:59:\"Links zu sozialen Netzwerken in einem neuen Fenster öffnen\";s:11:\"description\";s:54:\"Turn on to allow social icons to open in a new window.\";s:2:\"id\";s:16:\"social_icons_new\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"totop_position\";a:7:{s:5:\"label\";s:21:\"ToTop Button Position\";s:11:\"description\";s:97:\"Controls the position of the ToTop button. On mobiles also non-floating layouts will be floating.\";s:2:\"id\";s:14:\"totop_position\";s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:4:\"left\";s:5:\"Links\";s:13:\"left_floating\";s:13:\"Left Floating\";s:5:\"right\";s:6:\"Rechts\";s:14:\"right_floating\";s:14:\"Right Floating\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:14:\"avadaToTopVars\";s:2:\"id\";s:14:\"totop_position\";s:7:\"trigger\";a:1:{i:0;s:18:\"updateToTopPostion\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:19:\"totop_border_radius\";a:7:{s:5:\"label\";s:19:\"ToTop Border Radius\";s:11:\"description\";s:128:\"Controls the border radius of the ToTop button. For non-floating layouts the border radius will only apply to the upper corners.\";s:2:\"id\";s:19:\"totop_border_radius\";s:7:\"default\";s:1:\"6\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--totop_border_radius\";s:7:\"element\";s:6:\"#toTop\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"totop_scroll_down_only\";a:6:{s:5:\"label\";s:30:\"ToTop Show on Scroll Down Only\";s:11:\"description\";s:108:\"Turn on to show the ToTop button on scroll down only. Otherwise it will always show if the page is scrolled.\";s:2:\"id\";s:22:\"totop_scroll_down_only\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:14:\"avadaToTopVars\";s:2:\"id\";s:22:\"totop_scroll_down_only\";s:7:\"trigger\";a:1:{i:0;s:5:\"ready\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"custom_scrollbar\";a:6:{s:5:\"label\";s:16:\"Custom Scrollbar\";s:11:\"description\";s:132:\"Turn on if you want to change the background and handle color of the scrollbar. Styling and support varies depending on the browser.\";s:2:\"id\";s:16:\"custom_scrollbar\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:10:\"awb-scroll\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"scrollbar_background\";a:7:{s:5:\"label\";s:20:\"Scrollbar Background\";s:11:\"description\";s:48:\"Controls the background color for the scrollbar.\";s:2:\"id\";s:20:\"scrollbar_background\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--scrollbar_background\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"custom_scrollbar\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:16:\"scrollbar_handle\";a:7:{s:5:\"label\";s:22:\"Scrollbar Handle Color\";s:11:\"description\";s:44:\"Controls the color for the scrollbar handle.\";s:2:\"id\";s:16:\"scrollbar_handle\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--scrollbar_handle\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"custom_scrollbar\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:8:\"faq_slug\";a:5:{s:5:\"label\";s:8:\"FAQ Slug\";s:11:\"description\";s:195:\"The slug name cannot be the same name as a page name or the layout will break. This option changes the permalink when you use the permalink type as %postname%. Make sure to regenerate permalinks.\";s:2:\"id\";s:8:\"faq_slug\";s:7:\"default\";s:9:\"faq-items\";s:4:\"type\";s:4:\"text\";}}}s:21:\"related_posts_section\";a:5:{s:5:\"label\";s:42:\"Anzahl der ähnlichen Beiträge / Projekte\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:21:\"related_posts_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:10:{s:20:\"related_posts_layout\";a:7:{s:5:\"label\";s:31:\"Related Posts / Projects Layout\";s:11:\"description\";s:65:\"Controls the layout style for related posts and related projects.\";s:2:\"id\";s:20:\"related_posts_layout\";s:7:\"default\";s:17:\"title_on_rollover\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{s:17:\"title_on_rollover\";s:17:\"Title on rollover\";s:17:\"title_below_image\";s:16:\"Titel unter Bild\";}s:15:\"partial_refresh\";a:1:{s:28:\"related_posts_layout_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:20:\"number_related_posts\";a:7:{s:5:\"label\";s:42:\"Anzahl der ähnlichen Beiträge / Projekte\";s:11:\"description\";s:80:\"Controls the number of related posts and projects that display on a single post.\";s:2:\"id\";s:20:\"number_related_posts\";s:7:\"default\";s:1:\"4\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"30\";s:4:\"step\";s:1:\"1\";}s:15:\"partial_refresh\";a:1:{s:28:\"number_related_posts_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:21:\"related_posts_columns\";a:7:{s:5:\"label\";s:40:\"Related Posts / Projects Maximum Columns\";s:11:\"description\";s:73:\"Controls the number of columns for the related posts and projects layout.\";s:2:\"id\";s:21:\"related_posts_columns\";s:7:\"default\";i:4;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:15:\"partial_refresh\";a:1:{s:29:\"related_posts_columns_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:28:\"related_posts_column_spacing\";a:7:{s:5:\"label\";s:39:\"Related Posts / Projects Column Spacing\";s:11:\"description\";s:82:\"Controls the amount of spacing between columns for the related posts and projects.\";s:2:\"id\";s:28:\"related_posts_column_spacing\";s:7:\"default\";s:2:\"48\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:15:\"partial_refresh\";a:1:{s:36:\"related_posts_column_spacing_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:24:\"related_posts_image_size\";a:7:{s:5:\"label\";s:35:\"Related Posts / Projects Image Size\";s:11:\"description\";s:216:\"Controls if the featured image size is fixed (cropped) or auto (full image ratio) for related posts and projects. IMPORTANT: Fixed works best with a standard 940px site width. Auto works best with larger site widths.\";s:2:\"id\";s:24:\"related_posts_image_size\";s:7:\"default\";s:7:\"cropped\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"cropped\";s:7:\"Fixiert\";s:4:\"full\";s:4:\"Auto\";}s:15:\"partial_refresh\";a:1:{s:32:\"related_posts_image_size_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:22:\"related_posts_autoplay\";a:6:{s:5:\"label\";s:33:\"Related Posts / Projects Autoplay\";s:11:\"description\";s:59:\"Turn on to autoplay the related posts and project carousel.\";s:2:\"id\";s:22:\"related_posts_autoplay\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:30:\"related_posts_autoplay_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:19:\"related_posts_speed\";a:7:{s:5:\"label\";s:42:\"Anzahl der ähnlichen Beiträge / Projekte\";s:11:\"description\";s:78:\"Controls the speed of related posts and project carousel. ex: 1000 = 1 second.\";s:2:\"id\";s:19:\"related_posts_speed\";s:7:\"default\";s:4:\"2500\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:4:\"1000\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:3:\"250\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:6:\"bottom\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:4:{s:6:\"choice\";s:3:\"top\";s:9:\"globalVar\";s:18:\"fusionCarouselVars\";s:2:\"id\";s:19:\"related_posts_speed\";s:7:\"trigger\";a:1:{i:0;s:5:\"ready\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"related_posts_navigation\";a:6:{s:5:\"label\";s:40:\"Related Posts / Projects Show Navigation\";s:11:\"description\";s:53:\"Turn on to display navigation arrows on the carousel.\";s:2:\"id\";s:24:\"related_posts_navigation\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:32:\"related_posts_navigation_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:19:\"related_posts_swipe\";a:6:{s:5:\"label\";s:37:\"Related Posts / Projects Mouse Scroll\";s:11:\"description\";s:53:\"Turn on to enable mouse drag control on the carousel.\";s:2:\"id\";s:19:\"related_posts_swipe\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:27:\"related_posts_swipe_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}s:25:\"related_posts_swipe_items\";a:7:{s:5:\"label\";s:37:\"Related Posts / Projects Scroll Items\";s:11:\"description\";s:101:\"Controls the number of items that scroll at one time. Set to 0 to scroll the number of visible items.\";s:2:\"id\";s:25:\"related_posts_swipe_items\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"15\";s:4:\"step\";s:1:\"1\";}s:15:\"partial_refresh\";a:1:{s:33:\"related_posts_swipe_items_partial\";a:4:{s:8:\"selector\";s:21:\"section.related-posts\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:22:\"related_posts_template\";}s:21:\"success_trigger_event\";s:36:\"fusion-reinit-related-posts-carousel\";}}}}}s:20:\"rollover_sub_section\";a:5:{s:5:\"label\";s:23:\"Featured Image Rollover\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:20:\"rollover_sub_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:11:{s:14:\"image_rollover\";a:6:{s:5:\"label\";s:13:\"Bild Rollover\";s:11:\"description\";s:78:\"Turn on to display the rollover graphic on blog and portfolio featured images.\";s:2:\"id\";s:14:\"image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:12:\"full_refresh\";a:1:{s:29:\"image_rollover_layout_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:24:\"image_rollover_direction\";a:8:{s:5:\"label\";s:24:\"Image Rollover Direction\";s:11:\"description\";s:337:\"Controls the direction the rollover starts from.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:24:\"image_rollover_direction\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:4:\"fade\";s:10:\"Verblassen\";s:4:\"left\";s:5:\"Links\";s:5:\"right\";s:6:\"Rechts\";s:6:\"bottom\";s:5:\"Unten\";s:3:\"top\";s:4:\"Oben\";s:12:\"center_horiz\";s:21:\"Horizontal zentrieren\";s:15:\"center_vertical\";s:19:\"Vertikal zentrieren\";}s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:32:\"avada-image-rollover-direction-$\";s:12:\"remove_attrs\";a:7:{i:0;s:35:\"avada-image-rollover-direction-fade\";i:1;s:35:\"avada-image-rollover-direction-left\";i:2;s:36:\"avada-image-rollover-direction-right\";i:3;s:37:\"avada-image-rollover-direction-bottom\";i:4;s:34:\"avada-image-rollover-direction-top\";i:5;s:43:\"avada-image-rollover-direction-center_horiz\";i:6;s:46:\"avada-image-rollover-direction-center_vertical\";}}}}s:24:\"image_rollover_icon_size\";a:7:{s:5:\"label\";s:29:\"Image Rollover Icon Font Size\";s:11:\"description\";s:40:\"Controls the size of the rollover icons.\";s:2:\"id\";s:24:\"image_rollover_icon_size\";s:7:\"default\";s:4:\"15px\";s:4:\"type\";s:9:\"dimension\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"image_rollover\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--image_rollover_icon_size\";}}}s:20:\"image_rollover_icons\";a:8:{s:5:\"label\";s:20:\"Image Rollover Icons\";s:11:\"description\";s:27:\"Choose which icons display.\";s:2:\"id\";s:20:\"image_rollover_icons\";s:7:\"default\";s:8:\"linkzoom\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:8:\"linkzoom\";s:19:\"Link + Vergrößern\";s:4:\"link\";s:4:\"Link\";s:4:\"zoom\";s:12:\"Vergrößern\";s:2:\"no\";s:11:\"Keine Icons\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:14:\"image_rollover\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:12:\"full_refresh\";a:1:{s:28:\"image_rollover_icons_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:20:\"title_image_rollover\";a:7:{s:5:\"label\";s:20:\"Image Rollover Title\";s:11:\"description\";s:345:\"Turn on to display the post title in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:20:\"title_image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:12:\"full_refresh\";a:1:{s:28:\"title_image_rollover_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:19:\"cats_image_rollover\";a:7:{s:5:\"label\";s:25:\"Image Rollover Categories\";s:11:\"description\";s:350:\"Turn on to display the post categories in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:19:\"cats_image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:12:\"full_refresh\";a:1:{s:27:\"cats_image_rollover_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:16:\"isRolloverOnPage\";}}}}s:26:\"icon_circle_image_rollover\";a:7:{s:5:\"label\";s:26:\"Image Rollover Icon Circle\";s:11:\"description\";s:357:\"Turn on to display the icon background circle in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:26:\"icon_circle_image_rollover\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:31:\"avada-image-rollover-circle-yes\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:5:\"false\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:30:\"avada-image-rollover-circle-no\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"image_gradient_top_color\";a:7:{s:5:\"label\";s:33:\"Image Rollover Gradient Top Color\";s:11:\"description\";s:345:\"Controls the top color of the image rollover background.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:24:\"image_gradient_top_color\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"default\";s:97:\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 20%))\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--image_gradient_top_color\";s:7:\"element\";s:21:\".fusion-image-wrapper\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"image_gradient_bottom_color\";a:7:{s:5:\"label\";s:36:\"Image Rollover Gradient Bottom Color\";s:11:\"description\";s:348:\"Controls the bottom color of the image rollover background.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:27:\"image_gradient_bottom_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:29:\"--image_gradient_bottom_color\";s:7:\"element\";s:16:\".fusion-rollover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"image_rollover_text_color\";a:7:{s:5:\"label\";s:28:\"Image Rollover Element Color\";s:11:\"description\";s:361:\"Controls the color of image rollover text and icon circular backgrounds.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:25:\"image_rollover_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--image_rollover_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"image_rollover_icon_color\";a:7:{s:5:\"label\";s:25:\"Image Rollover Icon Color\";s:11:\"description\";s:343:\"Controls the color of the icons in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://theme-fusion.com/documentation/avada/options/how-options-work/\" target=\"_blank\" rel=\"noopener noreferrer\">Dies ist eine abhängige Einstellung, die immer sichtbar bleibt, damit andere Einstellungen sie verwenden können.</a></span>\";s:2:\"id\";s:25:\"image_rollover_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:27:\"--image_rollover_icon_color\";s:7:\"element\";s:16:\".fusion-rollover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:22:\"pagination_box_section\";a:5:{s:5:\"label\";s:16:\"Seitennavigation\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"pagination_box_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:10:{s:30:\"pagination_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:222:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The options on this tab apply to all pagination throughout the site, including the 3rd party plugins that Avada has design integration with.</div>\";s:2:\"id\";s:30:\"pagination_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:17:\"pagination_sizing\";a:7:{s:4:\"type\";s:6:\"select\";s:5:\"label\";s:34:\"Seitennummerierung Dimensionierung\";s:11:\"description\";s:63:\"Set on which dimension the pagination box size should be based.\";s:2:\"id\";s:17:\"pagination_sizing\";s:7:\"default\";s:12:\"width_height\";s:7:\"choices\";a:2:{s:12:\"width_height\";s:18:\"Width/Height Based\";s:7:\"padding\";s:13:\"Padding Based\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:22:\"avada-has-pagination-$\";s:12:\"remove_attrs\";a:2:{i:0;s:28:\"avada-has-pagination-padding\";i:1;s:33:\"avada-has-pagination-width_height\";}}}}s:23:\"pagination_width_height\";a:8:{s:5:\"label\";s:35:\"Seitennummerierung Box Breite/Höhe\";s:11:\"description\";s:58:\"Controls the width and height of the displayed page links.\";s:2:\"id\";s:23:\"pagination_width_height\";s:7:\"default\";s:2:\"30\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"5\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"pagination_sizing\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:7:\"padding\";}}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--pagination_width_height\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:22:\"pagination_box_padding\";a:8:{s:5:\"label\";s:30:\"Seitennummerierung Box Padding\";s:11:\"description\";s:49:\"Controls the padding inside the pagination boxes.\";s:2:\"id\";s:22:\"pagination_box_padding\";s:5:\"units\";b:0;s:7:\"default\";a:2:{s:5:\"width\";s:3:\"6px\";s:6:\"height\";s:3:\"2px\";}s:4:\"type\";s:10:\"dimensions\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:17:\"pagination_sizing\";s:8:\"operator\";s:1:\"=\";s:5:\"value\";s:7:\"padding\";}}s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:30:\"--pagination_box_padding-width\";s:6:\"choice\";s:5:\"width\";}i:1;a:2:{s:4:\"name\";s:31:\"--pagination_box_padding-height\";s:6:\"choice\";s:6:\"height\";}}}s:23:\"pagination_border_width\";a:7:{s:5:\"label\";s:32:\"Seitennummerierung Rahmen Breite\";s:11:\"description\";s:54:\"Controls the border width of the displayed page links.\";s:2:\"id\";s:23:\"pagination_border_width\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"25\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--pagination_border_width\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:24:\"pagination_border_radius\";a:7:{s:5:\"label\";s:32:\"Seitennummerierung Rahmen Radius\";s:11:\"description\";s:125:\"Controls the border radius of the displayed page links. Values of half the overall width or higher will yield circular links.\";s:2:\"id\";s:24:\"pagination_border_radius\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--pagination_border_radius\";s:13:\"value_pattern\";s:3:\"$px\";}}}s:23:\"pagination_text_display\";a:6:{s:5:\"label\";s:30:\"Seitennummerierung Textanzeige\";s:11:\"description\";s:54:\"Turn on to display the &quot;Previous/Next&quot; text.\";s:2:\"id\";s:23:\"pagination_text_display\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"fusion-show-pagination-text\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"pagination_font_size\";a:6:{s:5:\"label\";s:37:\"Schriftgrösse der Seitennummerierung\";s:11:\"description\";s:41:\"Controls the size of the pagination text.\";s:2:\"id\";s:20:\"pagination_font_size\";s:7:\"default\";s:4:\"13px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:22:\"--pagination_font_size\";}}}s:16:\"pagination_range\";a:7:{s:5:\"label\";s:26:\"Seitennummerierung Bereich\";s:11:\"description\";s:75:\"Controls the number of page links displayed left and right of current page.\";s:2:\"id\";s:16:\"pagination_range\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"10\";s:4:\"step\";s:1:\"1\";}s:12:\"full_refresh\";a:1:{s:28:\"related_posts_layout_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:18:\"isPaginationOnPage\";}}}}s:26:\"pagination_start_end_range\";a:7:{s:5:\"label\";s:46:\"Seitennummerierung Anfangsbereich / Endbereich\";s:11:\"description\";s:86:\"Controls the number of page links displayed at the start and at the end of pagination.\";s:2:\"id\";s:26:\"pagination_start_end_range\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"10\";s:4:\"step\";s:1:\"1\";}s:12:\"full_refresh\";a:1:{s:34:\"pagination_start_end_range_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:18:\"isPaginationOnPage\";}}}}}}s:15:\"gridbox_section\";a:5:{s:5:\"label\";s:33:\"Gitternetz / Mauerwerkdarstellung\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:15:\"gridbox_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:9:{s:35:\"gridbox_styling_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:302:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> These are Grid Box Styling global options that apply to grid boxes throughout the site; blog grid and timeline, portfolio boxed layout and WooCommerce boxes. Blog / Portfolio elements also have options to override these.</div>\";s:2:\"id\";s:35:\"gridbox_styling_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:17:\"timeline_bg_color\";a:6:{s:5:\"label\";s:23:\"Farbe des Gitterkastens\";s:11:\"description\";s:49:\"Controls the background color for the grid boxes.\";s:2:\"id\";s:17:\"timeline_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:3:{i:0;a:2:{s:4:\"name\";s:19:\"--timeline_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:36:\"--timeline_bg_color-20px-transparent\";s:8:\"callback\";a:2:{i:0;s:28:\"return_string_if_transparent\";i:1;a:2:{s:11:\"transparent\";s:0:\"\";s:6:\"opaque\";s:4:\"20px\";}}}i:2;a:2:{s:4:\"name\";s:35:\"--timeline_bg_color-not-transparent\";s:8:\"callback\";a:2:{i:0;s:25:\"get_non_transparent_color\";i:1;s:0:\"\";}}}}s:14:\"timeline_color\";a:7:{s:5:\"label\";s:25:\"Farbe des Gitterelementes\";s:11:\"description\";s:83:\"Controls the color of borders/date box/timeline dots and arrows for the grid boxes.\";s:2:\"id\";s:14:\"timeline_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:16:\"--timeline_color\";s:11:\"js_callback\";a:1:{i:0;s:21:\"timeLineColorCallback\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"html\";s:9:\"className\";s:36:\"avada-has-transparent-timeline_color\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:25:\"grid_separator_style_type\";a:7:{s:5:\"label\";s:21:\"Gitternetzteiler Stil\";s:11:\"description\";s:229:\"Controls the line style of grid separators. <strong>Note:</strong> For blog and portfolio grids at least one meta data field must be enabled and excerpt or full content must be shown in order that the separator will be displayed.\";s:2:\"id\";s:25:\"grid_separator_style_type\";s:7:\"default\";s:12:\"double|solid\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:8:{s:4:\"none\";s:9:\"Kein Stil\";s:12:\"single|solid\";s:27:\"Einfacher Rand durchgezogen\";s:12:\"double|solid\";s:27:\"Doppelter Rand durchgezogen\";s:13:\"single|dashed\";s:26:\"Einfacher Rand gestrichelt\";s:13:\"double|dashed\";s:26:\"Doppelter Rand gestrichelt\";s:13:\"single|dotted\";s:24:\"Einfacher Rand gepunktet\";s:13:\"double|dotted\";s:24:\"Doppelter Rand gepunktet\";s:6:\"shadow\";s:8:\"Schatten\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:1:{i:0;s:14:\"updateGridSeps\";}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"grid_separator_color\";a:7:{s:5:\"label\";s:22:\"Gitternetzteiler Farbe\";s:11:\"description\";s:50:\"Kontrolliert die Linienfarbe der Gitternetzteiler.\";s:2:\"id\";s:20:\"grid_separator_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--grid_separator_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:16:\"full-transparent\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:36:\"avada-has-transparent-grid-sep-color\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:20:\"grid_masonry_heading\";a:4:{s:5:\"label\";s:29:\"Mauerwerkdarstellung Optionen\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:20:\"grid_masonry_heading\";s:4:\"type\";s:4:\"info\";}s:35:\"gridbox_masonry_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:285:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> These are Masonry global options that apply to the Blog / Portfolio / Gallery elements in addition to Blog and Portfolio archives. Blog / Portfolio / Gallery elements also have options to override these.</div>\";s:2:\"id\";s:35:\"gridbox_masonry_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:18:\"masonry_grid_ratio\";a:7:{s:5:\"label\";s:45:\"Mauerwerkdarstellung Bilder Aspektverhältnis\";s:11:\"description\";s:286:\"Set the ratio to decide when an image should become landscape (ratio being width : height) and portrait (ratio being height : width). <strong>IMPORTANT:</strong> The value of \"1.0\" represents a special case, which will use the auto calculated ratios like in versions prior to Avada 5.5.\";s:2:\"id\";s:18:\"masonry_grid_ratio\";s:7:\"default\";s:3:\"1.5\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";d:1;s:3:\"max\";d:4;s:4:\"step\";d:0.1;}s:12:\"full_refresh\";a:1:{s:26:\"masonry_grid_ratio_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:15:\"isMasonryOnPage\";}}}}s:20:\"masonry_width_double\";a:7:{s:5:\"label\";s:31:\"Mauerwerkdarstellung 2x2 Breite\";s:11:\"description\";s:381:\"This option decides when a square 1x1 image should become 2x2. This will not apply to images that highly favor landscape or portrait layouts. <strong>IMPORTANT:</strong> There is a “Masonry Image Layout” setting for every image in the WP media library that allows you to manually set how an image will appear (1x1, landscape, portrait or 2x2), regardless of the original ratio.\";s:2:\"id\";s:20:\"masonry_width_double\";s:7:\"default\";s:4:\"2000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:200;s:3:\"max\";i:5120;s:4:\"step\";i:1;}s:12:\"full_refresh\";a:1:{s:28:\"masonry_width_double_partial\";a:1:{s:11:\"js_callback\";a:1:{i:0;s:15:\"isMasonryOnPage\";}}}}}}}}s:8:\"advanced\";a:7:{s:5:\"label\";s:24:\"Erweiterte Einstellungen\";s:2:\"id\";s:16:\"heading_advanced\";s:8:\"is_panel\";b:1;s:8:\"priority\";i:25;s:4:\"icon\";s:14:\"el-icon-puzzle\";s:8:\"alt_icon\";s:17:\"fusiona-dashboard\";s:6:\"fields\";a:3:{s:22:\"theme_features_section\";a:5:{s:5:\"label\";s:8:\"Features\";s:2:\"id\";s:22:\"theme_features_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:24:{s:23:\"enable_language_updates\";a:6:{s:5:\"label\";s:33:\"Sprachaktualisierungen aktivieren\";s:11:\"description\";s:165:\"If your site is using a language other than English, enabling this option will allow you to get updated language files for your locale as soon as they are available.\";s:2:\"id\";s:23:\"enable_language_updates\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"dependencies_status\";a:6:{s:5:\"label\";s:40:\"Avada&#039;s Option Network Dependencies\";s:11:\"description\";s:381:\"Avada&#039;s Option Network consists of Global Options, Page Options and Builder Options and each of them have dependent options ON by default. This means the only options you see are the only ones currently available for your selection. However, if you wish to disable this feature, simply turn this option off, and all dependencies will be disabled (requires save &amp; refresh).\";s:2:\"id\";s:19:\"dependencies_status\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:27:\"disable_code_block_encoding\";a:6:{s:5:\"label\";s:19:\"Code Block Encoding\";s:11:\"description\";s:92:\"Turn on to enable encoding in the Avada Builder code block and syntax highlighting elements.\";s:2:\"id\";s:27:\"disable_code_block_encoding\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"disable_megamenu\";a:6:{s:5:\"label\";s:9:\"Mega Menu\";s:11:\"description\";s:46:\"Anschalten, um Avadas mega menu zu aktivieren.\";s:2:\"id\";s:16:\"disable_megamenu\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:31:\"theme_features_disable_megamenu\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:19:\"status_avada_studio\";a:6:{s:5:\"label\";s:12:\"Avada Studio\";s:11:\"description\";s:31:\"Turn on to enable Avada studio.\";s:2:\"id\";s:19:\"status_avada_studio\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"avada_rev_styles\";a:7:{s:5:\"label\";s:34:\"Avada Stile für Slider Revolution\";s:11:\"description\";s:80:\"Turn on to enable the Avada styles and use the default Slider Revolution styles.\";s:2:\"id\";s:16:\"avada_rev_styles\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:28:\"--avada-rev-image-shadow-top\";s:13:\"value_pattern\";s:91:\"url(\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/shadow-top.png\")\";s:7:\"element\";s:12:\".shadow-left\";}i:1;a:3:{s:4:\"name\";s:31:\"--avada-rev-image-shadow-bottom\";s:13:\"value_pattern\";s:94:\"url(\"https://unternehmen.wir-noi.org/wp-content/themes/Avada/assets/images/shadow-bottom.png\")\";s:7:\"element\";s:13:\".shadow-right\";}}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:27:\"avada-has-rev-slider-styles\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:12:\"avadaRevVars\";s:2:\"id\";s:16:\"avada_rev_styles\";s:7:\"trigger\";a:2:{i:0;s:15:\"DestoryRevStyle\";i:1;s:12:\"AddRevStyles\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:22:\"avada_styles_dropdowns\";a:6:{s:5:\"label\";s:20:\"Avada Dropdown Stile\";s:11:\"description\";s:154:\"Turn on to enable the Avada styles for dropdown/select fields site wide. This should be done if you experience any issues with 3rd party plugin dropdowns.\";s:2:\"id\";s:22:\"avada_styles_dropdowns\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:21:\"avada-dropdown-styles\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:15:\"avadaSelectVars\";s:2:\"id\";s:15:\"avada_drop_down\";s:7:\"trigger\";a:2:{i:0;s:18:\"DestoryAvadaSelect\";i:1;s:14:\"AddAvadaSelect\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:27:\"disable_mobile_image_hovers\";a:6:{s:5:\"label\";s:37:\"CSS Image Hover Animations on Mobiles\";s:11:\"description\";s:56:\"Turn on to enable CSS image hover animations on mobiles.\";s:2:\"id\";s:27:\"disable_mobile_image_hovers\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"avadaMobileImageVars\";s:2:\"id\";s:27:\"disable_mobile_image_hovers\";s:7:\"trigger\";a:1:{i:0;s:32:\"fusionDeactivateMobileImagHovers\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:9:\"status_yt\";a:7:{s:5:\"label\";s:19:\"YouTube API Scripts\";s:11:\"description\";s:38:\"Turn on to enable YouTube API scripts.\";s:2:\"id\";s:9:\"status_yt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:6:\"output\";a:4:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"fusionVideoBgVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:22:\"fusionVideoGeneralVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:3;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:14:\"fusionBlogVars\";s:2:\"id\";s:9:\"status_yt\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:12:\"status_vimeo\";a:7:{s:5:\"label\";s:17:\"Vimeo API Scripts\";s:11:\"description\";s:36:\"Turn on to enable Vimeo API scripts.\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:6:\"output\";a:3:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"fusionVideoBgVars\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:22:\"fusionVideoGeneralVars\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:2;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionFlexSliderVars\";s:2:\"id\";s:12:\"status_vimeo\";s:7:\"trigger\";a:1:{i:0;s:4:\"load\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:11:\"status_gmap\";a:6:{s:5:\"label\";s:18:\"Google Map Skripte\";s:11:\"description\";s:29:\"Turn on to enable google map.\";s:2:\"id\";s:11:\"status_gmap\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"status_totop\";a:7:{s:5:\"label\";s:12:\"ToTop Script\";s:11:\"description\";s:81:\"Turn on to enable the ToTop script which adds the scrolling to top functionality.\";s:2:\"id\";s:12:\"status_totop\";s:7:\"default\";s:7:\"desktop\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:18:\"desktop_and_mobile\";s:20:\"Desktop &amp; Mobile\";s:7:\"desktop\";s:7:\"Desktop\";s:6:\"mobile\";s:5:\"Mobil\";s:3:\"off\";s:3:\"Aus\";}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:7:\"desktop\";i:1;s:16:\"does-not-contain\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:16:\"no-desktop-totop\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}i:1;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:14:\"avadaToTopVars\";s:2:\"id\";s:12:\"status_totop\";s:7:\"trigger\";a:1:{i:0;s:6:\"scroll\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:18:\"status_fontawesome\";a:8:{s:5:\"label\";s:12:\"Font Awesome\";s:11:\"description\";s:128:\"Choose which Font Awesome icon subsets you want to load. Note that Light subset can only be used if Font Awesome Pro is enabled.\";s:2:\"id\";s:18:\"status_fontawesome\";s:7:\"default\";a:3:{i:0;s:3:\"fab\";i:1;s:3:\"far\";i:2;s:3:\"fas\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:4:{s:3:\"fab\";s:6:\"Brands\";s:3:\"far\";s:8:\"regulär\";s:3:\"fas\";s:11:\"Durchgehend\";s:3:\"fal\";s:4:\"Hell\";}s:9:\"transport\";s:11:\"postMessage\";}s:28:\"fontawesome_v4_compatibility\";a:6:{s:5:\"label\";s:29:\"Font Awesome v4 Compatibility\";s:11:\"description\";s:62:\"Turn on to enable support for Font Awesome 4 icon code format.\";s:2:\"id\";s:28:\"fontawesome_v4_compatibility\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"status_fontawesome_pro\";a:6:{s:5:\"label\";s:16:\"Font Awesome Pro\";s:11:\"description\";s:260:\"Font Awesome Pro <a href=\"https://fontawesome.com/buy/standard\" target=\"_blank\" rel=\"noopener noreferrer\">license</a> is required and you need to <a href=\"https://fontawesome.com/account/cdn\" target=\"_blank\" rel=\"noopener noreferrer\">whitelist</a> your domain.\";s:2:\"id\";s:22:\"status_fontawesome_pro\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"status_outline\";a:6:{s:5:\"label\";s:12:\"CSS Outlines\";s:11:\"description\";s:86:\"Turn on to enable browser specific CSS element outlines used to improve accessibility.\";s:2:\"id\";s:14:\"status_outline\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:0:\"\";i:1;s:4:\"true\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:22:\"fusion-disable-outline\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:16:\"status_opengraph\";a:6:{s:5:\"label\";s:20:\"Open Graph Meta Tags\";s:11:\"description\";s:296:\"Turn on to enable open graph meta tags which are mainly used when sharing pages on social networking sites like Facebook. <strong>IMPORTANT:</strong> Some optimization plugins, like e.g. Yoast SEO, add their own implementation of this, and if you want to use that, this option should be disabled.\";s:2:\"id\";s:16:\"status_opengraph\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:31:\"disable_date_rich_snippet_pages\";a:6:{s:5:\"label\";s:13:\"Rich Snippets\";s:11:\"description\";s:172:\"Turn on to enable rich snippets data site wide. If set to &quot;On&quot;, you can also control individual items below. If set to &quot;Off&quot; all items will be disabled.\";s:2:\"id\";s:31:\"disable_date_rich_snippet_pages\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:26:\"disable_rich_snippet_title\";a:7:{s:5:\"label\";s:19:\"Rich Snippets Title\";s:11:\"description\";s:52:\"Turn on to enable title rich snippet data site wide.\";s:2:\"id\";s:26:\"disable_rich_snippet_title\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:27:\"disable_rich_snippet_author\";a:7:{s:5:\"label\";s:25:\"Rich Snippets Author Info\";s:11:\"description\";s:53:\"Turn on to enable author rich snippet data site wide.\";s:2:\"id\";s:27:\"disable_rich_snippet_author\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:25:\"disable_rich_snippet_date\";a:7:{s:5:\"label\";s:30:\"Rich Snippets Last Update Date\";s:11:\"description\";s:57:\"Turn on to enable udate date rich snippet data site wide.\";s:2:\"id\";s:25:\"disable_rich_snippet_date\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"disable_rich_snippet_faq\";a:7:{s:5:\"label\";s:17:\"Rich Snippets FAQ\";s:11:\"description\";s:54:\"Turn on to enable the FAQ rich snippet data site wide.\";s:2:\"id\";s:24:\"disable_rich_snippet_faq\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"disable_date_rich_snippet_pages\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}s:9:\"transport\";s:11:\"postMessage\";}s:34:\"enable_block_editor_backend_styles\";a:6:{s:5:\"label\";s:37:\"Enable WP Block Editor Backend Styles\";s:11:\"description\";s:77:\"Turn on to enable Avada&#039;s backend style support for the WP block editor.\";s:2:\"id\";s:34:\"enable_block_editor_backend_styles\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:17:\"load_block_styles\";a:7:{s:5:\"label\";s:26:\"Load Frontend Block Styles\";s:11:\"description\";s:126:\"Select &quot;Auto&quot; to automatically detect if there are blocks present in your page, and load block-styles in the footer.\";s:2:\"id\";s:17:\"load_block_styles\";s:7:\"default\";s:2:\"on\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"auto\";s:4:\"Auto\";s:2:\"on\";s:2:\"An\";s:3:\"off\";s:3:\"Aus\";}s:9:\"transport\";s:7:\"refresh\";}}}s:26:\"tracking_head_body_section\";a:5:{s:5:\"label\";s:26:\"Codefelder (Tracking etc.)\";s:2:\"id\";s:26:\"tracking_head_body_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:3:{s:16:\"google_analytics\";a:7:{s:5:\"label\";s:13:\"Tracking Code\";s:11:\"description\";s:138:\"Füge deinen Tracking hier ein. Er wird ein die Kopfzeilenvorlage deines Themes eingebettet. Platziere Code innerhalb &lt;script&gt; tags.\";s:2:\"id\";s:16:\"google_analytics\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:300;s:5:\"theme\";s:6:\"chrome\";}s:9:\"transport\";s:11:\"postMessage\";}s:10:\"space_head\";a:7:{s:5:\"label\";s:29:\"Leerzeichen vor &lt;/head&gt;\";s:11:\"description\";s:121:\"Only accepts JavaScript code wrapped with &lt;script&gt; tags and HTML markup that is valid inside the &lt;/head&gt; tag.\";s:2:\"id\";s:10:\"space_head\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:350;s:5:\"theme\";s:6:\"chrome\";}s:9:\"transport\";s:11:\"postMessage\";}s:10:\"space_body\";a:7:{s:5:\"label\";s:29:\"Leerzeichen vor &lt;/body&gt;\";s:11:\"description\";s:114:\"Only accepts JavaScript code, wrapped with &lt;script&gt; tags and valid HTML markup inside the &lt;/body&gt; tag.\";s:2:\"id\";s:10:\"space_body\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:3:{s:8:\"language\";s:4:\"html\";s:6:\"height\";i:350;s:5:\"theme\";s:6:\"chrome\";}s:9:\"transport\";s:11:\"postMessage\";}}}s:18:\"post_types_section\";a:5:{s:5:\"label\";s:10:\"Post Types\";s:2:\"id\";s:18:\"post_types_section\";s:4:\"icon\";b:1;s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:6:{s:20:\"status_fusion_slider\";a:6:{s:5:\"label\";s:12:\"Avada Slider\";s:11:\"description\";s:35:\"Turn on to enable the Avada Slider.\";s:2:\"id\";s:20:\"status_fusion_slider\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"status_eslider\";a:6:{s:5:\"label\";s:14:\"Elastic Slider\";s:11:\"description\";s:37:\"Turn on to enable the elastic slider.\";s:2:\"id\";s:14:\"status_eslider\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"status_fusion_forms\";a:6:{s:5:\"label\";s:15:\"Avada Formulare\";s:11:\"description\";s:34:\"Turn on to enable the Avada Forms.\";s:2:\"id\";s:19:\"status_fusion_forms\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"status_awb_Off_Canvas\";a:6:{s:5:\"label\";s:16:\"Avada Off Canvas\";s:11:\"description\";s:39:\"Turn on to enable the Avada Off Canvas.\";s:2:\"id\";s:21:\"status_awb_Off_Canvas\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"status_fusion_portfolio\";a:6:{s:5:\"label\";s:15:\"Avada Portfolio\";s:11:\"description\";s:38:\"Turn on to enable the Avada Portfolio.\";s:2:\"id\";s:23:\"status_fusion_portfolio\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:18:\"status_fusion_faqs\";a:6:{s:5:\"label\";s:10:\"Avada FAQs\";s:11:\"description\";s:33:\"Turn on to enable the Avada Faqs.\";s:2:\"id\";s:18:\"status_fusion_faqs\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}}}}}s:11:\"performance\";a:7:{s:5:\"label\";s:8:\"Leistung\";s:2:\"id\";s:19:\"heading_performance\";s:8:\"is_panel\";b:1;s:8:\"priority\";i:25;s:4:\"icon\";s:16:\"el-icon-time-alt\";s:8:\"alt_icon\";s:13:\"fusiona-check\";s:6:\"fields\";a:23:{s:15:\"pw_jpeg_quality\";a:7:{s:5:\"label\";s:21:\"WordPress JPG Quality\";s:11:\"description\";s:471:\"Controls the quality of the generated image sizes for every uploaded image. Ranges between 0 and 100 percent. Higher values lead to better image qualities but also higher file sizes. <strong>NOTE:</strong> After changing this value, please install and run the <a target=\"_blank\" href=\"https://unternehmen.wir-noi.org/wp-admin/plugin-install.php?s=Regenerate+Thumbnails&tab=search&type=term\" title=\"Vorschaubilder neu erzeugen\">Vorschaubilder neu erzeugen</a> plugin once.\";s:2:\"id\";s:15:\"pw_jpeg_quality\";s:7:\"default\";s:2:\"82\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:9:\"transport\";s:11:\"postMessage\";}s:27:\"wp_big_image_size_threshold\";a:7:{s:5:\"label\";s:34:\"WordPress Big Image Size Threshold\";s:11:\"description\";s:207:\"Sets the threshold for image height and width, above which WordPress will scale down newly uploaded images to this values as max-width or max-height. Set to &quot;0&quot; to disable the threshold completely.\";s:2:\"id\";s:27:\"wp_big_image_size_threshold\";s:7:\"default\";s:4:\"2560\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:4:\"5000\";s:4:\"step\";s:1:\"1\";}s:9:\"transport\";s:11:\"postMessage\";}s:9:\"lazy_load\";a:7:{s:5:\"label\";s:24:\"Lazy Loading für Bilder\";s:11:\"description\";s:219:\"Choose your preferred lazy loading method for your website\'s images to improve performance. <strong>IMPORTANT:</strong> The WordPress native method can cause issues with dynamically loaded elements like image carousels.\";s:2:\"id\";s:9:\"lazy_load\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:5:\"avada\";s:5:\"Avada\";s:9:\"wordpress\";s:9:\"WordPress\";s:4:\"none\";s:5:\"Keine\";}s:9:\"transport\";s:11:\"postMessage\";}s:17:\"lazy_load_iframes\";a:7:{s:5:\"label\";s:19:\"Iframe Lazy Loading\";s:11:\"description\";s:91:\"Choose your preferred lazy loading method for your website\'s iframe to improve performance.\";s:2:\"id\";s:17:\"lazy_load_iframes\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:5:\"avada\";s:5:\"Avada\";s:9:\"wordpress\";s:9:\"WordPress\";s:4:\"none\";s:5:\"Keine\";}s:9:\"transport\";s:11:\"postMessage\";}s:17:\"font_face_display\";a:7:{s:5:\"label\";s:19:\"Font Face Rendering\";s:11:\"description\";s:315:\"Choose &quot;Swap All&quot; for faster rendering with possible flash of unstyled text (FOUT) or &quot;Block&quot; for clean rendering but longer wait time until first paint. &quot;Swap Non-Icon Fonts&quot; will use a mix of the first 2 methods (&quot;swap&quot; for text fonts and &quot;block&quot; for icon-fonts).\";s:2:\"id\";s:17:\"font_face_display\";s:7:\"default\";s:5:\"block\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:5:\"block\";s:10:\"Blockieren\";s:4:\"swap\";s:19:\"Swap Non-Icon Fonts\";s:8:\"swap-all\";s:13:\"Alle tauschen\";}s:9:\"transport\";s:11:\"postMessage\";}s:13:\"preload_fonts\";a:7:{s:5:\"label\";s:17:\"Preload Key Fonts\";s:11:\"description\";s:210:\"Make a selection to prioritize fetching resources that will be requested later in page load. This improves page load time as the browser caches preloaded resources so they are available immediately when needed.\";s:2:\"id\";s:13:\"preload_fonts\";s:7:\"default\";s:10:\"icon_fonts\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:3:\"all\";s:4:\"Alle\";s:12:\"google_fonts\";s:12:\"Google Fonts\";s:10:\"icon_fonts\";s:10:\"Icon Fonts\";s:4:\"none\";s:5:\"Keine\";}s:9:\"transport\";s:11:\"postMessage\";}s:22:\"preload_fonts_variants\";a:9:{s:5:\"label\";s:28:\"Preload Google Font Variants\";s:11:\"description\";s:99:\"Select the variants of Google fonts that should get preloaded. Leave empty to preload all variants.\";s:2:\"id\";s:22:\"preload_fonts_variants\";s:7:\"default\";s:3:\"400\";s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:17:{i:100;s:15:\"Ultra-Light 100\";s:10:\"100-italic\";s:22:\"Ultra-Light 100 Kursiv\";i:200;s:9:\"Light 200\";s:10:\"200-italic\";s:16:\"Light 200 Kursiv\";i:300;s:8:\"Book 300\";s:10:\"300-italic\";s:15:\"Book 300 Kursiv\";i:400;s:10:\"Normal 400\";s:10:\"400-italic\";s:17:\"Normal 400 Kursiv\";i:500;s:10:\"Medium 500\";s:10:\"500-italic\";s:17:\"Medium 500 Kursiv\";i:600;s:13:\"Semi-Bold 600\";s:10:\"600-italic\";s:20:\"Semi-Bold 600 Kursiv\";i:700;s:8:\"Bold 700\";s:10:\"700-italic\";s:15:\"Bold 700 Kursiv\";i:800;s:14:\"Extra-Bold 800\";s:10:\"900-italic\";s:21:\"Ultra-Bold 900 Kursiv\";i:900;s:14:\"Ultra-Bold 900\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}i:1;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:10:\"icon_fonts\";}}s:9:\"transport\";s:11:\"postMessage\";}s:21:\"preload_fonts_subsets\";a:9:{s:5:\"label\";s:27:\"Preload Google Font Subsets\";s:11:\"description\";s:97:\"Select the subsets of Google fonts that should get preloaded. Leave empty to preload all subsets.\";s:2:\"id\";s:21:\"preload_fonts_subsets\";s:7:\"default\";s:5:\"latin\";s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:28:{s:6:\"arabic\";s:5:\"Latin\";s:7:\"bengali\";s:7:\"Bengali\";s:16:\"chinese-hongkong\";s:16:\"Chinese Hongkong\";s:18:\"chinese-simplified\";s:18:\"Chinese Simplified\";s:19:\"chinese-traditional\";s:19:\"Chinese Traditional\";s:8:\"cyrillic\";s:8:\"Cyrillic\";s:12:\"cyrillic-ext\";s:17:\"Cyrillic Extended\";s:10:\"devanagari\";s:10:\"Devanagari\";s:5:\"greek\";s:5:\"Greek\";s:9:\"greek-ext\";s:14:\"Greek Extended\";s:8:\"gujarati\";s:8:\"Gujarati\";s:8:\"gurmukhi\";s:8:\"Gurmukhi\";s:6:\"hebrew\";s:6:\"Hebrew\";s:8:\"japanese\";s:8:\"Japanese\";s:7:\"kannada\";s:7:\"Kannada\";s:5:\"khmer\";s:5:\"Khmer\";s:6:\"korean\";s:6:\"Korean\";s:5:\"latin\";s:5:\"Latin\";s:9:\"latin-ext\";s:14:\"Latin Extended\";s:9:\"malayalam\";s:9:\"Malayalam\";s:7:\"myanmar\";s:7:\"Myanmar\";s:5:\"oriya\";s:5:\"Oriya\";s:7:\"sinhala\";s:7:\"Sinhala\";s:5:\"tamil\";s:5:\"Tamil\";s:6:\"telugu\";s:6:\"Telugu\";s:4:\"thai\";s:4:\"Thai\";s:7:\"tibetan\";s:7:\"Tibetan\";s:10:\"vietnamese\";s:10:\"Vietnamese\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}i:1;a:3:{s:7:\"setting\";s:13:\"preload_fonts\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:10:\"icon_fonts\";}}s:9:\"transport\";s:11:\"postMessage\";}s:15:\"emojis_disabled\";a:7:{s:5:\"label\";s:13:\"Emojis Script\";s:11:\"description\";s:99:\"If you don&#039;t use emojis you can improve performance by removing WordPress&#039; emojis script.\";s:2:\"id\";s:15:\"emojis_disabled\";s:7:\"default\";s:7:\"enabled\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"enabled\";s:10:\"Aktivieren\";s:8:\"disabled\";s:12:\"Deaktivieren\";}s:9:\"transport\";s:11:\"postMessage\";}s:23:\"jquery_migrate_disabled\";a:7:{s:5:\"label\";s:21:\"jQuery Migrate Script\";s:11:\"description\";s:100:\"If you are not using any deprecated jQuery code, you can disable this script to improve performance.\";s:2:\"id\";s:23:\"jquery_migrate_disabled\";s:7:\"default\";s:7:\"enabled\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"enabled\";s:10:\"Aktivieren\";s:8:\"disabled\";s:12:\"Deaktivieren\";}s:9:\"transport\";s:11:\"postMessage\";}s:12:\"defer_jquery\";a:6:{s:5:\"label\";s:21:\"Load jQuery In Footer\";s:11:\"description\";s:228:\"Set to &#039;on&#039; to defer loading of jQuery to the footer of the page.  This will only take effect if no other jQuery dependent scripts are added to the head. Turning this on can cause JS scripts to break, use with caution.\";s:2:\"id\";s:12:\"defer_jquery\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"defer_styles\";a:6:{s:5:\"label\";s:26:\"Load Stylesheets In Footer\";s:11:\"description\";s:238:\"Set to &#039;on&#039; to defer loading of the stylesheets to the footer of the page. This improves page load time by making the styles non-render-blocking. Depending on the connection speed, a flash of unstyled content (FOUC) might occur.\";s:2:\"id\";s:12:\"defer_styles\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"gzip_status\";a:6:{s:5:\"label\";s:23:\"Enable Gzip Compression\";s:11:\"description\";s:176:\"Set to \'on\' to add Gzip Compression rules to the .htaccess file. <strong>IMPORTANT:</strong> This option works only on Apache web servers with mod_gzip and mod_deflate enabled.\";s:2:\"id\";s:11:\"gzip_status\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"video_facade\";a:7:{s:5:\"label\";s:19:\"Enable Video Facade\";s:11:\"description\";s:160:\"Use video facade in order to load video player only when video is played. <strong>IMPORTANT:</strong> This option is only applied to YouTube and Vimeo elements.\";s:2:\"id\";s:12:\"video_facade\";s:7:\"default\";s:3:\"off\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:2:\"on\";s:2:\"An\";s:3:\"off\";s:3:\"Aus\";}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"dynamic_compiler_section\";a:4:{s:5:\"label\";s:24:\"Dynamisches CSS &amp; JS\";s:2:\"id\";s:24:\"dynamic_compiler_section\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:16:\"css_cache_method\";a:7:{s:5:\"label\";s:20:\"CSS Compiling Method\";s:11:\"description\";s:281:\"Select &quot;File&quot; mode to compile the dynamic CSS to files (a separate file will be created for each of your pages &amp; posts inside of the uploads/fusion-styles folder), &quot;Database&quot; mode to cache the CSS in your database, or select &quot;Disabled&quot; to disable.\";s:2:\"id\";s:16:\"css_cache_method\";s:7:\"default\";s:4:\"file\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{s:4:\"file\";s:5:\"Datei\";s:2:\"db\";s:9:\"Datenbank\";s:3:\"off\";s:11:\"Deaktiviert\";}s:9:\"transport\";s:11:\"postMessage\";}s:30:\"css_combine_third_party_assets\";a:7:{s:5:\"label\";s:29:\"Combine Third Party CSS Files\";s:11:\"description\";s:449:\"When enabled, third party CSS files will be combined into Avada\'s main stylesheet. Plugins affected are WooCommerce, The Events Calendar, Slider Revolution, ConvertPlus, Contact Form 7 and bbPress. <strong>IMPORTANT:</strong> Enabling this option is not recommended when you are are using third party file combining services, like cache plugins. <strong>NOTE:</strong> When this option is changed, Avada Caches have to be reset for changes to apply.\";s:2:\"id\";s:30:\"css_combine_third_party_assets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"css_cache_method\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"file\";}}}s:19:\"media_queries_async\";a:6:{s:5:\"label\";s:39:\"Load Media-Queries Files Asynchronously\";s:11:\"description\";s:140:\"When enabled, the CSS media-queries will be enqueued separately and then loaded asynchronously, improving performance on mobile and desktop.\";s:2:\"id\";s:19:\"media_queries_async\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"critical_css\";a:6:{s:5:\"label\";s:19:\"Enable Critical CSS\";s:11:\"description\";s:125:\"Set to \'on\' to enable the generation of critical CSS. Once enabled, a critical CSS page will be added to the Avada dashboard.\";s:2:\"id\";s:12:\"critical_css\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:15:\"cache_server_ip\";a:6:{s:5:\"label\";s:15:\"Cache Server IP\";s:11:\"description\";s:201:\"For unique cases where you are using CloudFlare and a cache server, ex: varnish cache. Enter your cache server IP to clear the Global Options dynamic CSS cache. Consult with your server admin for help.\";s:2:\"id\";s:15:\"cache_server_ip\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"js_compiler\";a:6:{s:5:\"label\";s:21:\"Aktiviere JS Compiler\";s:11:\"description\";s:174:\"By default all the JavaScript files are combined. Disabling the JS compiler will load non-combined JavaScript files. This will have an impact on the performance of your site.\";s:2:\"id\";s:11:\"js_compiler\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"pwa_section\";a:4:{s:5:\"label\";s:19:\"Progressive Web App\";s:2:\"id\";s:11:\"pwa_section\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:19:\"pwa_required_notice\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:389:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> To use the Avada PWA feature you need to install and activate the latest version of the PWA plugin. Please <a href=\"https://unternehmen.wir-noi.org/wp-admin/admin.php?page=avada-plugins\">visit the Avada Plugins page</a> to install and activate the plugin and then refresh Global Options to edit the options.</div>\";s:2:\"id\";s:19:\"pwa_required_notice\";s:4:\"type\";s:6:\"custom\";}}}s:11:\"woocommerce\";a:0:{}s:10:\"custom_css\";a:6:{s:5:\"label\";s:22:\"Benutzerdefinierte CSS\";s:2:\"id\";s:18:\"custom_css_section\";s:8:\"priority\";i:27;s:4:\"icon\";s:11:\"el-icon-css\";s:8:\"alt_icon\";s:12:\"fusiona-code\";s:6:\"fields\";a:1:{s:10:\"custom_css\";a:6:{s:5:\"label\";s:8:\"CSS Code\";s:11:\"description\";s:338:\"Gib Deinen CSS Code in das nachfolgende Feld ein. Füge keine Tags oder HTML in das Feld ein. Das hier eingegebene benutzerdefinierte CSS überschreibt das CSS des Designs. In einigen Fällen kann der <code>!important</code> Tag benötigt werden. Keine Bild- oder SVG Pfade encodieren. Der Inhalt dieses Feldes wird automatisch encodiert.\";s:2:\"id\";s:10:\"custom_css\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"code\";s:7:\"choices\";a:5:{s:8:\"language\";s:3:\"css\";s:6:\"height\";i:450;s:5:\"theme\";s:6:\"chrome\";s:8:\"minLines\";i:40;s:8:\"maxLines\";i:50;}}}}s:17:\"shortcode_styling\";a:3:{s:5:\"label\";s:22:\"Avada Builder Elemente\";s:2:\"id\";s:17:\"shortcode_styling\";s:4:\"icon\";s:23:\"fusiona-element-options\";}s:13:\"import_export\";a:6:{s:5:\"label\";s:13:\"Import/Export\";s:2:\"id\";s:13:\"import_export\";s:8:\"priority\";i:27;s:4:\"icon\";s:11:\"el-icon-css\";s:8:\"alt_icon\";s:17:\"fusiona-loop-alt2\";s:6:\"fields\";a:2:{s:9:\"import_to\";a:6:{s:5:\"label\";s:27:\"Importiere globale Optionen\";s:11:\"description\";s:99:\"Import Global Options. You can import via file, copy and paste or select an Avada prebuilt website.\";s:2:\"id\";s:9:\"import_to\";s:4:\"type\";s:6:\"import\";s:5:\"demos\";a:0:{}s:7:\"context\";s:2:\"TO\";}s:9:\"export_to\";a:6:{s:5:\"label\";s:27:\"Exportiere globale Optionen\";s:11:\"description\";s:77:\"Export your Global Options. You can either export as a file or copy the data.\";s:2:\"id\";s:9:\"export_to\";s:4:\"type\";s:6:\"export\";s:7:\"context\";s:2:\"TO\";s:4:\"text\";s:27:\"Exportiere globale Optionen\";}}}}','no'),(16610,'_transient_timeout_fusion_fb_tos','1646323503','no'),(16611,'_transient_fusion_fb_tos','a:44:{s:23:\"alert_shortcode_section\";a:7:{s:5:\"label\";s:5:\"Alert\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"alert_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"icon\";s:28:\"fusiona-exclamation-triangle\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:13:{s:13:\"info_bg_color\";a:6:{s:5:\"label\";s:24:\"General Background Color\";s:11:\"description\";s:49:\"Set the background color for general alert boxes.\";s:2:\"id\";s:13:\"info_bg_color\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:15:\"--info_bg_color\";s:7:\"element\";s:32:\".fusion-alert.alert-info.general\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";}s:17:\"info_accent_color\";a:6:{s:5:\"label\";s:20:\"General Accent Color\";s:11:\"description\";s:45:\"Set the accent color for general alert boxes.\";s:2:\"id\";s:17:\"info_accent_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:19:\"--info_accent_color\";s:7:\"element\";s:32:\".fusion-alert.alert-info.general\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:15:\"danger_bg_color\";a:6:{s:5:\"label\";s:22:\"Error Background Color\";s:11:\"description\";s:47:\"Set the background color for error alert boxes.\";s:2:\"id\";s:15:\"danger_bg_color\";s:7:\"default\";s:20:\"rgba(219,75,104,0.1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--danger_bg_color\";s:7:\"element\";s:32:\".fusion-alert.alert-danger.error\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"danger_accent_color\";a:6:{s:5:\"label\";s:18:\"Error Accent Color\";s:11:\"description\";s:43:\"Set the accent color for error alert boxes.\";s:2:\"id\";s:19:\"danger_accent_color\";s:7:\"default\";s:7:\"#db4b68\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:21:\"--danger_accent_color\";s:7:\"element\";s:32:\".fusion-alert.alert-danger.error\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"success_bg_color\";a:6:{s:5:\"label\";s:24:\"Success Background Color\";s:11:\"description\";s:49:\"Set the background color for success alert boxes.\";s:2:\"id\";s:16:\"success_bg_color\";s:7:\"default\";s:20:\"rgba(18,184,120,0.1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--success_bg_color\";s:7:\"element\";s:35:\".fusion-alert.alert-success.success\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"success_accent_color\";a:6:{s:5:\"label\";s:20:\"Success Accent Color\";s:11:\"description\";s:45:\"Set the accent color for success alert boxes.\";s:2:\"id\";s:20:\"success_accent_color\";s:7:\"default\";s:7:\"#12b878\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--success_accent_color\";s:7:\"element\";s:35:\".fusion-alert.alert-success.success\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"warning_bg_color\";a:6:{s:5:\"label\";s:23:\"Notice Background Color\";s:11:\"description\";s:48:\"Set the background color for notice alert boxes.\";s:2:\"id\";s:16:\"warning_bg_color\";s:7:\"default\";s:20:\"rgba(241,174,42,0.1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--warning_bg_color\";s:7:\"element\";s:34:\".fusion-alert.alert-warning.notice\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"warning_accent_color\";a:6:{s:5:\"label\";s:19:\"Notice Accent Color\";s:11:\"description\";s:44:\"Set the accent color for notice alert boxes.\";s:2:\"id\";s:20:\"warning_accent_color\";s:7:\"default\";s:7:\"#f1ae2a\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--warning_accent_color\";s:7:\"element\";s:34:\".fusion-alert.alert-warning.notice\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"alert_box_text_align\";a:7:{s:5:\"label\";s:17:\"Content Alignment\";s:11:\"description\";s:43:\"Choose how the content should be displayed.\";s:2:\"id\";s:20:\"alert_box_text_align\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:6:\"center\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";a:1:{i:0;s:50:\"body .fusion-alert.alert:not( .fusion-live-alert )\";}s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:14:\"fusion-alert-$\";s:12:\"remove_attrs\";a:3:{i:0;s:17:\"fusion-alert-left\";i:1;s:19:\"fusion-alert-center\";i:2;s:18:\"fusion-alert-right\";}}}}s:24:\"alert_box_text_transform\";a:7:{s:5:\"label\";s:14:\"Text Transform\";s:11:\"description\";s:33:\"Choose how the text is displayed.\";s:2:\"id\";s:24:\"alert_box_text_transform\";s:7:\"default\";s:6:\"normal\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:6:\"normal\";s:6:\"Normal\";s:10:\"capitalize\";s:9:\"Uppercase\";}s:6:\"output\";a:1:{i:0;a:5:{s:7:\"element\";a:1:{i:0;s:50:\"body .fusion-alert.alert:not( .fusion-live-alert )\";}s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:14:\"fusion-alert-$\";s:12:\"remove_attrs\";a:2:{i:0;s:23:\"fusion-alert-capitalize\";i:1;s:19:\"fusion-alert-normal\";}}}}s:21:\"alert_box_dismissable\";a:7:{s:5:\"label\";s:15:\"Dismissable Box\";s:11:\"description\";s:46:\"Select if the alert box should be dismissable.\";s:2:\"id\";s:21:\"alert_box_dismissable\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:6:\"output\";a:2:{i:0;a:4:{s:7:\"element\";a:1:{i:0;s:46:\".fusion-alert:not( .fusion-live-alert ) .close\";}s:8:\"property\";s:7:\"display\";s:13:\"value_pattern\";s:4:\"none\";s:7:\"exclude\";a:1:{i:0;s:3:\"yes\";}}i:1;a:4:{s:7:\"element\";a:1:{i:0;s:46:\".fusion-alert:not( .fusion-live-alert ) .close\";}s:8:\"property\";s:7:\"display\";s:13:\"value_pattern\";s:6:\"inline\";s:7:\"exclude\";a:1:{i:0;s:2:\"no\";}}}}s:16:\"alert_box_shadow\";a:7:{s:5:\"label\";s:10:\"Box Shadow\";s:11:\"description\";s:41:\"Display a box shadow below the alert box.\";s:2:\"id\";s:16:\"alert_box_shadow\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:6:\"output\";a:2:{i:0;a:6:{s:7:\"element\";a:1:{i:0;s:50:\"body .fusion-alert.alert:not( .fusion-live-alert )\";}s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:12:\"alert-shadow\";s:12:\"remove_attrs\";a:1:{i:0;s:15:\"alert-shadow-no\";}s:7:\"exclude\";a:1:{i:0;s:2:\"no\";}}i:1;a:6:{s:7:\"element\";a:1:{i:0;s:50:\"body .fusion-alert.alert:not( .fusion-live-alert )\";}s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:15:\"alert-shadow-no\";s:12:\"remove_attrs\";a:1:{i:0;s:12:\"alert-shadow\";}s:7:\"exclude\";a:1:{i:0;s:3:\"yes\";}}}}s:17:\"alert_border_size\";a:7:{s:5:\"label\";s:11:\"Border Size\";s:11:\"description\";s:44:\"Controls the border size of the alert boxes.\";s:2:\"id\";s:17:\"alert_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:19:\"--alert_border_size\";s:13:\"value_pattern\";s:3:\"$px\";s:7:\"element\";s:50:\"body .fusion-alert.alert:not( .fusion-live-alert )\";}}}}}s:28:\"animations_shortcode_section\";a:7:{s:5:\"label\";s:10:\"Animations\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:28:\"animations_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:19:\"fusiona-play-circle\";s:6:\"fields\";a:2:{s:16:\"animation_offset\";a:8:{s:5:\"label\";s:16:\"Animation Offset\";s:11:\"description\";s:41:\"Controls when the animation should start.\";s:2:\"id\";s:16:\"animation_offset\";s:7:\"default\";s:13:\"top-into-view\";s:4:\"type\";s:6:\"select\";s:11:\"option_name\";s:14:\"fusion_options\";s:7:\"choices\";a:3:{s:13:\"top-into-view\";s:38:\"Top of element hits bottom of viewport\";s:15:\"top-mid-of-view\";s:38:\"Top of element hits middle of viewport\";s:14:\"bottom-in-view\";s:33:\"Bottom of element enters viewport\";}s:9:\"transport\";s:11:\"postMessage\";}s:21:\"status_css_animations\";a:7:{s:5:\"label\";s:29:\"Element Appearance Animations\";s:11:\"description\";s:52:\"Select to enable animations for elements appearance.\";s:2:\"id\";s:21:\"status_css_animations\";s:7:\"default\";s:7:\"desktop\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:18:\"desktop_and_mobile\";s:20:\"Desktop &amp; Mobile\";s:7:\"desktop\";s:12:\"Desktop Only\";s:3:\"off\";s:3:\"Off\";}s:6:\"output\";a:1:{i:0;a:3:{s:7:\"element\";s:13:\"helperElement\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:20:\"fusionAnimationsVars\";s:2:\"id\";s:21:\"status_css_animations\";s:7:\"trigger\";a:1:{i:0;s:13:\"CSSAnimations\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:23:\"audio_shortcode_section\";a:7:{s:5:\"label\";s:5:\"Audio\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"audio_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"icon\";s:13:\"fusiona-audio\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:7:{s:15:\"audio_max_width\";a:6:{s:5:\"label\";s:13:\"Maximum Width\";s:11:\"description\";s:46:\"Set the maximum width using a valid CSS value.\";s:2:\"id\";s:15:\"audio_max_width\";s:7:\"default\";s:4:\"100%\";s:4:\"type\";s:4:\"text\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--fusion-audio-max-width-default\";s:7:\"element\";s:4:\"body\";}}}s:22:\"audio_background_color\";a:6:{s:5:\"label\";s:16:\"Background Color\";s:11:\"description\";s:51:\"Controls the background color for the audio player.\";s:2:\"id\";s:22:\"audio_background_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:39:\"--fusion-audio-background-color-default\";s:7:\"element\";s:4:\"body\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"audio_progressbar_color\";a:6:{s:5:\"label\";s:20:\"Audio Progress Color\";s:11:\"description\";s:42:\"Select a color for the audio progress-bar.\";s:2:\"id\";s:23:\"audio_progressbar_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:35:\"--fusion-audio-accent-color-default\";s:7:\"element\";s:4:\"body\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"audio_controls_color_scheme\";a:6:{s:5:\"label\";s:21:\"Controls Color Scheme\";s:11:\"description\";s:132:\"Depending on the background color you can change this value to &quot;Light&quot; or &quot;Dark&quot; to ensure controls are visible.\";s:2:\"id\";s:27:\"audio_controls_color_scheme\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:5:\"light\";s:7:\"choices\";a:2:{s:5:\"light\";s:5:\"Light\";s:4:\"dark\";s:4:\"Dark\";}}s:17:\"audio_border_size\";a:7:{s:4:\"type\";s:6:\"slider\";s:5:\"label\";s:11:\"Border Size\";s:2:\"id\";s:17:\"audio_border_size\";s:7:\"default\";i:0;s:11:\"description\";s:20:\"Set the border size.\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"10\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:34:\"--fusion-audio-border-size-default\";s:7:\"element\";s:4:\"body\";}}}s:18:\"audio_border_color\";a:7:{s:4:\"type\";s:11:\"color-alpha\";s:5:\"label\";s:12:\"Border Color\";s:11:\"description\";s:47:\"Controls the border color for the audio player.\";s:2:\"id\";s:18:\"audio_border_color\";s:5:\"group\";s:6:\"Design\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:35:\"--fusion-audio-border-color-default\";s:7:\"element\";s:4:\"body\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"audio_border_radius\";a:8:{s:5:\"label\";s:13:\"Border Radius\";s:11:\"description\";s:22:\"Set the border radius.\";s:2:\"id\";s:19:\"audio_border_radius\";s:7:\"choices\";a:5:{s:8:\"top_left\";b:1;s:9:\"top_right\";b:1;s:12:\"bottom_right\";b:1;s:11:\"bottom_left\";b:1;s:5:\"units\";a:3:{i:0;s:2:\"px\";i:1;s:1:\"%\";i:2;s:2:\"em\";}}s:7:\"default\";a:4:{s:8:\"top_left\";s:3:\"0px\";s:9:\"top_right\";s:3:\"0px\";s:12:\"bottom_right\";s:3:\"0px\";s:11:\"bottom_left\";s:3:\"0px\";}s:4:\"type\";s:13:\"border_radius\";s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:45:\"--fusion-audio-border-top-left-radius-default\";s:6:\"choice\";s:8:\"top_left\";s:7:\"element\";s:4:\"body\";}i:1;a:3:{s:4:\"name\";s:46:\"--fusion-audio-border-top-right-radius-default\";s:6:\"choice\";s:9:\"top_right\";s:7:\"element\";s:4:\"body\";}i:2;a:3:{s:4:\"name\";s:49:\"--fusion-audio-border-bottom-right-radius-default\";s:6:\"choice\";s:12:\"bottom_right\";s:7:\"element\";s:4:\"body\";}i:3;a:3:{s:4:\"name\";s:48:\"--fusion-audio-border-bottom-left-radius-default\";s:6:\"choice\";s:11:\"bottom_left\";s:7:\"element\";s:4:\"body\";}}s:9:\"transport\";s:11:\"postMessage\";}}}s:22:\"blog_shortcode_section\";a:7:{s:5:\"label\";s:4:\"Blog\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"blog_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"icon\";s:12:\"fusiona-blog\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:9:{s:17:\"blog_grid_columns\";a:7:{s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:134:\"Set the number of columns per row for grid and masonry layout. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:17:\"blog_grid_columns\";s:7:\"default\";i:3;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"blog_grid_column_spacing\";a:7:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:71:\"Controls the column spacing for blog posts for grid and masonry layout.\";s:2:\"id\";s:24:\"blog_grid_column_spacing\";s:7:\"default\";s:2:\"40\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:4:{s:3:\"min\";s:1:\"0\";s:4:\"step\";s:1:\"1\";s:3:\"max\";s:3:\"300\";s:4:\"edit\";s:3:\"yes\";}s:9:\"transport\";s:11:\"postMessage\";}s:17:\"blog_grid_padding\";a:7:{s:5:\"label\";s:22:\"Blog Grid Text Padding\";s:11:\"description\";s:105:\"Controls the top/right/bottom/left padding of the blog text when using grid / masonry or timeline layout.\";s:2:\"id\";s:17:\"blog_grid_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"30px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";}s:12:\"blog_excerpt\";a:7:{s:5:\"label\";s:15:\"Content Display\";s:11:\"description\";s:107:\"Controls if the post content displays an excerpt, full content or is completely disabled for blog elements.\";s:2:\"id\";s:12:\"blog_excerpt\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:4:\"hide\";s:7:\"No Text\";s:3:\"yes\";s:7:\"Excerpt\";s:2:\"no\";s:12:\"Full Content\";}s:9:\"transport\";s:11:\"postMessage\";}s:19:\"blog_excerpt_length\";a:8:{s:5:\"label\";s:14:\"Excerpt Length\";s:11:\"description\";s:63:\"Controls the number of words in the excerpts for blog elements.\";s:2:\"id\";s:19:\"blog_excerpt_length\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"blog_excerpt\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"yes\";}}s:9:\"transport\";s:11:\"postMessage\";}s:44:\"blog_element_load_more_posts_button_bg_color\";a:6:{s:5:\"label\";s:39:\"Load More Posts Button Background Color\";s:11:\"description\";s:94:\"Controls the background color of the load more button for ajax post loading for blog elements.\";s:2:\"id\";s:44:\"blog_element_load_more_posts_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:46:\"--blog_element_load_more_posts_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:46:\"blog_element_load_more_posts_button_text_color\";a:6:{s:5:\"label\";s:33:\"Load More Posts Button Text Color\";s:11:\"description\";s:88:\"Controls the text color of the load more button for ajax post loading for blog elements.\";s:2:\"id\";s:46:\"blog_element_load_more_posts_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:48:\"--blog_element_load_more_posts_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:50:\"blog_element_load_more_posts_hover_button_bg_color\";a:6:{s:5:\"label\";s:45:\"Load More Posts Button Hover Background Color\";s:11:\"description\";s:100:\"Controls the hover background color of the load more button for ajax post loading for blog elements.\";s:2:\"id\";s:50:\"blog_element_load_more_posts_hover_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:52:\"--blog_element_load_more_posts_hover_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:52:\"blog_element_load_more_posts_hover_button_text_color\";a:6:{s:5:\"label\";s:39:\"Load More Posts Hover Button Text Color\";s:11:\"description\";s:94:\"Controls the hover text color of the load more button for ajax post loading for blog elements.\";s:2:\"id\";s:52:\"blog_element_load_more_posts_hover_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:54:\"--blog_element_load_more_posts_hover_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:24:\"button_shortcode_section\";a:5:{s:5:\"label\";s:6:\"Button\";s:2:\"id\";s:24:\"button_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:19:\"fusiona-check-empty\";s:6:\"fields\";a:22:{s:14:\"button_padding\";a:7:{s:5:\"label\";s:14:\"Button Padding\";s:11:\"description\";s:33:\"Controls the padding for buttons.\";s:2:\"id\";s:14:\"button_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"13px\";s:5:\"right\";s:4:\"29px\";s:6:\"bottom\";s:4:\"13px\";s:4:\"left\";s:4:\"29px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:20:\"--button_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:23:\"--button_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:21:\"--button_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:22:\"--button_padding-right\";s:6:\"choice\";s:5:\"right\";}}}s:11:\"button_span\";a:7:{s:5:\"label\";s:11:\"Button Span\";s:11:\"description\";s:61:\"Controls if the button spans the full width of its container.\";s:2:\"id\";s:11:\"button_span\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:6:\"output\";a:1:{i:0;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"fusion-button_span-$\";s:12:\"remove_attrs\";a:2:{i:0;s:22:\"fusion-button_span-yes\";i:1;s:21:\"fusion-button_span-no\";}s:11:\"toLowerCase\";b:1;}}}s:11:\"button_type\";a:7:{s:5:\"label\";s:11:\"Button Type\";s:11:\"description\";s:33:\"Controls the default button type.\";s:2:\"id\";s:11:\"button_type\";s:7:\"default\";s:4:\"Flat\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"Flat\";s:4:\"Flat\";s:2:\"3d\";s:2:\"3D\";}s:6:\"output\";a:2:{i:0;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:20:\"fusion-button_type-$\";s:12:\"remove_attrs\";a:2:{i:0;s:23:\"fusion-button_type-flat\";i:1;s:21:\"fusion-button_type-3d\";}s:11:\"toLowerCase\";b:1;}i:1;a:6:{s:7:\"element\";s:27:\".fusion-button-default-type\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:8:\"button-$\";s:12:\"remove_attrs\";a:2:{i:0;s:9:\"button-3d\";i:1;s:11:\"button-flat\";}s:11:\"toLowerCase\";b:1;}}}s:17:\"button_typography\";a:7:{s:2:\"id\";s:17:\"button_typography\";s:5:\"label\";s:17:\"Button Typography\";s:11:\"description\";s:58:\"These settings control the typography for all button text.\";s:4:\"type\";s:10:\"typography\";s:7:\"choices\";a:6:{s:11:\"font-family\";b:1;s:9:\"font-size\";b:1;s:11:\"font-weight\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:14:\"text-transform\";b:1;}s:7:\"default\";a:6:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";s:11:\"font-weight\";s:3:\"600\";s:11:\"line-height\";s:34:\"var(--awb-typography3-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography3-letter-spacing)\";s:14:\"text-transform\";s:37:\"var(--awb-typography3-text-transform)\";}s:8:\"css_vars\";a:7:{i:0;a:3:{s:4:\"name\";s:31:\"--button_typography-font-family\";s:6:\"choice\";s:11:\"font-family\";s:8:\"callback\";a:2:{i:0;s:20:\"combined_font_family\";i:1;s:17:\"button_typography\";}}i:1;a:3:{s:4:\"name\";s:31:\"--button_typography-font-weight\";s:6:\"choice\";s:11:\"font-weight\";s:8:\"callback\";a:2:{i:0;s:22:\"font_weight_no_regular\";i:1;s:0:\"\";}}i:2;a:3:{s:4:\"name\";s:34:\"--button_typography-letter-spacing\";s:6:\"choice\";s:14:\"letter-spacing\";s:8:\"callback\";a:2:{i:0;s:15:\"maybe_append_px\";i:1;s:0:\"\";}}i:3;a:2:{s:4:\"name\";s:30:\"--button_typography-font-style\";s:6:\"choice\";s:10:\"font-style\";}i:4;a:2:{s:4:\"name\";s:18:\"--button_font_size\";s:6:\"choice\";s:9:\"font-size\";}i:5;a:2:{s:4:\"name\";s:20:\"--button_line_height\";s:6:\"choice\";s:11:\"line-height\";}i:6;a:2:{s:4:\"name\";s:23:\"--button_text_transform\";s:6:\"choice\";s:14:\"text-transform\";}}}s:25:\"button_gradient_top_color\";a:7:{s:5:\"label\";s:27:\"Button Gradient Start Color\";s:11:\"description\";s:50:\"Controls the start color of the button background.\";s:2:\"id\";s:25:\"button_gradient_top_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--button_gradient_top_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:8:\"callback\";a:2:{i:0;s:12:\"toggle_class\";i:1;a:3:{s:9:\"condition\";a:2:{i:0;s:28:\"button_gradient_bottom_color\";i:1;s:19:\"not-equal-to-option\";}s:7:\"element\";s:4:\"body\";s:9:\"className\";s:26:\"fusion-has-button-gradient\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:28:\"button_gradient_bottom_color\";a:6:{s:5:\"label\";s:25:\"Button Gradient End Color\";s:11:\"description\";s:48:\"Controls the end color of the button background.\";s:2:\"id\";s:28:\"button_gradient_bottom_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--button_gradient_bottom_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:31:\"button_gradient_top_color_hover\";a:7:{s:5:\"label\";s:33:\"Button Gradient Start Hover Color\";s:11:\"description\";s:56:\"Controls the start hover color of the button background.\";s:2:\"id\";s:31:\"button_gradient_top_color_hover\";s:7:\"default\";s:108:\"hsla(var(--awb-color4-h),calc(var(--awb-color4-s) - 5%),calc(var(--awb-color4-l) - 10%),var(--awb-color4-a))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:33:\"--button_gradient_top_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:7:\"preview\";a:3:{s:8:\"selector\";s:43:\".fusion-button,.fusion-button .wpcf7-submit\";s:4:\"type\";s:5:\"class\";s:6:\"toggle\";s:5:\"hover\";}}s:34:\"button_gradient_bottom_color_hover\";a:7:{s:5:\"label\";s:31:\"Button Gradient End Hover Color\";s:11:\"description\";s:54:\"Controls the end hover color of the button background.\";s:2:\"id\";s:34:\"button_gradient_bottom_color_hover\";s:7:\"default\";s:108:\"hsla(var(--awb-color4-h),calc(var(--awb-color4-s) - 5%),calc(var(--awb-color4-l) - 10%),var(--awb-color4-a))\";s:4:\"type\";s:11:\"color-alpha\";s:7:\"preview\";a:3:{s:8:\"selector\";s:43:\".fusion-button,.fusion-button .wpcf7-submit\";s:4:\"type\";s:5:\"class\";s:6:\"toggle\";s:5:\"hover\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:36:\"--button_gradient_bottom_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"button_gradient_start\";a:7:{s:5:\"label\";s:21:\"Button Gradient Start\";s:11:\"description\";s:45:\"Controls the start position for the gradient.\";s:2:\"id\";s:21:\"button_gradient_start\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--button_gradient_start\";s:13:\"value_pattern\";s:2:\"$%\";}}}s:19:\"button_gradient_end\";a:7:{s:5:\"label\";s:19:\"Button Gradient End\";s:11:\"description\";s:43:\"Controls the end position for the gradient.\";s:2:\"id\";s:19:\"button_gradient_end\";s:7:\"default\";s:3:\"100\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--button_gradient_end\";s:13:\"value_pattern\";s:2:\"$%\";}}}s:20:\"button_gradient_type\";a:7:{s:5:\"label\";s:20:\"Button Gradient Type\";s:11:\"description\";s:30:\"Controls the type of gradient.\";s:2:\"id\";s:20:\"button_gradient_type\";s:7:\"default\";s:6:\"linear\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:6:\"linear\";s:6:\"Linear\";s:6:\"radial\";s:6:\"Radial\";}s:6:\"output\";a:1:{i:0;a:6:{s:7:\"element\";s:4:\"body\";s:8:\"function\";s:4:\"attr\";s:4:\"attr\";s:5:\"class\";s:13:\"value_pattern\";s:24:\"fusion-button_gradient-$\";s:12:\"remove_attrs\";a:2:{i:0;s:29:\"fusion-button_gradient-linear\";i:1;s:29:\"fusion-button_gradient-radial\";}s:11:\"toLowerCase\";b:1;}}}s:21:\"button_gradient_angle\";a:8:{s:5:\"label\";s:21:\"Button Gradient Angle\";s:11:\"description\";s:43:\"Controls the angle for the linear gradient.\";s:2:\"id\";s:21:\"button_gradient_angle\";s:7:\"default\";s:3:\"180\";s:4:\"type\";s:6:\"slider\";s:15:\"soft_dependency\";b:1;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"360\";s:4:\"step\";s:1:\"1\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--button_gradient_angle\";s:13:\"value_pattern\";s:4:\"$deg\";}}}s:23:\"button_radial_direction\";a:8:{s:5:\"label\";s:23:\"Button Radial Direction\";s:11:\"description\";s:37:\"Select direction for radial gradient.\";s:2:\"id\";s:23:\"button_radial_direction\";s:7:\"default\";s:13:\"center center\";s:4:\"type\";s:6:\"select\";s:15:\"soft_dependency\";b:1;s:7:\"choices\";a:9:{s:8:\"left top\";s:8:\"Left Top\";s:11:\"left center\";s:11:\"Left Center\";s:11:\"left bottom\";s:11:\"Left Bottom\";s:9:\"right top\";s:9:\"Right Top\";s:12:\"right center\";s:12:\"Right Center\";s:12:\"right bottom\";s:12:\"Right Bottom\";s:10:\"center top\";s:10:\"Center Top\";s:13:\"center center\";s:13:\"Center Center\";s:13:\"center bottom\";s:13:\"Center Bottom\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:25:\"--button_radial_direction\";}}}s:19:\"button_accent_color\";a:6:{s:5:\"label\";s:17:\"Button Text Color\";s:11:\"description\";s:56:\"Controls the color of the button text, divider and icon.\";s:2:\"id\";s:19:\"button_accent_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--button_accent_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"button_accent_hover_color\";a:7:{s:5:\"label\";s:23:\"Button Text Hover Color\";s:11:\"description\";s:62:\"Controls the hover color of the button text, divider and icon.\";s:2:\"id\";s:25:\"button_accent_hover_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--button_accent_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:7:\"preview\";a:3:{s:8:\"selector\";s:43:\".fusion-button,.fusion-button .wpcf7-submit\";s:4:\"type\";s:5:\"class\";s:6:\"toggle\";s:5:\"hover\";}}s:18:\"button_bevel_color\";a:6:{s:5:\"label\";s:30:\"Button Bevel Color For 3D Mode\";s:11:\"description\";s:66:\"Controls the bevel color of the buttons when using 3D button type.\";s:2:\"id\";s:18:\"button_bevel_color\";s:7:\"default\";s:108:\"hsla(var(--awb-color4-h),calc(var(--awb-color4-s) - 5%),calc(var(--awb-color4-l) - 10%),var(--awb-color4-a))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:2:{i:0;a:2:{s:4:\"name\";s:20:\"--button_bevel_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}i:1;a:2:{s:4:\"name\";s:19:\"--button_box_shadow\";s:8:\"callback\";a:2:{i:0;s:24:\"conditional_return_value\";i:1;a:2:{s:13:\"value_pattern\";a:2:{i:0;s:76:\"inset 0px 1px 0px #ffffff, 0px 3px 0px $, 1px 5px 5px 3px rgba(0, 0, 0, 0.3)\";i:1;s:4:\"none\";}s:10:\"conditions\";a:1:{i:0;a:3:{i:0;s:11:\"button_type\";i:1;s:3:\"===\";i:2;s:2:\"3d\";}}}}}}}s:24:\"button_bevel_color_hover\";a:6:{s:5:\"label\";s:36:\"Button Hover Bevel Color For 3D Mode\";s:11:\"description\";s:72:\"Controls the hover bevel color of the buttons when using 3D button type.\";s:2:\"id\";s:24:\"button_bevel_color_hover\";s:7:\"default\";s:108:\"hsla(var(--awb-color4-h),calc(var(--awb-color4-s) - 5%),calc(var(--awb-color4-l) - 10%),var(--awb-color4-a))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"--button_bevel_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"button_border_width\";a:7:{s:5:\"label\";s:18:\"Button Border Size\";s:11:\"description\";s:37:\"Controls the border size for buttons.\";s:2:\"id\";s:19:\"button_border_width\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:25:\"--button_border_width-top\";s:6:\"choice\";s:3:\"top\";s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:27:\"--button_border_width-right\";s:6:\"choice\";s:5:\"right\";s:2:\"po\";b:0;}i:2;a:3:{s:4:\"name\";s:28:\"--button_border_width-bottom\";s:6:\"choice\";s:6:\"bottom\";s:2:\"po\";b:0;}i:3;a:3:{s:4:\"name\";s:26:\"--button_border_width-left\";s:6:\"choice\";s:4:\"left\";s:2:\"po\";b:0;}}}s:20:\"button_border_radius\";a:7:{s:4:\"type\";s:13:\"border_radius\";s:5:\"label\";s:20:\"Button Border Radius\";s:11:\"description\";s:39:\"Controls the border radius for buttons.\";s:2:\"id\";s:20:\"button_border_radius\";s:7:\"choices\";a:5:{s:8:\"top_left\";b:1;s:9:\"top_right\";b:1;s:12:\"bottom_right\";b:1;s:11:\"bottom_left\";b:1;s:5:\"units\";a:3:{i:0;s:2:\"px\";i:1;s:1:\"%\";i:2;s:2:\"em\";}}s:7:\"default\";a:4:{s:8:\"top_left\";s:3:\"4px\";s:9:\"top_right\";s:3:\"4px\";s:12:\"bottom_right\";s:3:\"4px\";s:11:\"bottom_left\";s:3:\"4px\";}s:8:\"css_vars\";a:4:{i:0;a:3:{s:4:\"name\";s:31:\"--button-border-radius-top-left\";s:6:\"choice\";s:8:\"top_left\";s:7:\"element\";s:4:\"body\";}i:1;a:3:{s:4:\"name\";s:32:\"--button-border-radius-top-right\";s:6:\"choice\";s:9:\"top_right\";s:7:\"element\";s:4:\"body\";}i:2;a:3:{s:4:\"name\";s:35:\"--button-border-radius-bottom-right\";s:6:\"choice\";s:12:\"bottom_right\";s:7:\"element\";s:4:\"body\";}i:3;a:3:{s:4:\"name\";s:34:\"--button-border-radius-bottom-left\";s:6:\"choice\";s:11:\"bottom_left\";s:7:\"element\";s:4:\"body\";}}}s:19:\"button_border_color\";a:6:{s:5:\"label\";s:19:\"Button Border Color\";s:11:\"description\";s:38:\"Controls the border color for buttons.\";s:2:\"id\";s:19:\"button_border_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--button_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"button_border_hover_color\";a:6:{s:5:\"label\";s:25:\"Button Border Hover Color\";s:11:\"description\";s:46:\"Controls the hover border color of the button.\";s:2:\"id\";s:25:\"button_border_hover_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--button_border_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:14:\"button_presets\";a:6:{s:5:\"label\";s:21:\"Legacy Button Presets\";s:11:\"description\";s:56:\"Select if you would like to enable legacy color presets.\";s:2:\"id\";s:14:\"button_presets\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}}}s:26:\"carousel_shortcode_section\";a:6:{s:5:\"label\";s:8:\"Carousel\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:26:\"carousel_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:14:\"fusiona-images\";s:6:\"fields\";a:3:{s:18:\"carousel_nav_color\";a:7:{s:5:\"label\";s:29:\"Carousel Navigation Box Color\";s:11:\"description\";s:62:\"Controls the color of the navigation box for carousel sliders.\";s:2:\"id\";s:18:\"carousel_nav_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 30%))\";s:4:\"type\";s:11:\"color-alpha\";s:11:\"option_name\";s:14:\"fusion_options\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--carousel_nav_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"carousel_hover_color\";a:7:{s:5:\"label\";s:35:\"Carousel Hover Navigation Box Color\";s:11:\"description\";s:68:\"Controls the color of the hover navigation box for carousel sliders.\";s:2:\"id\";s:20:\"carousel_hover_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:11:\"option_name\";s:14:\"fusion_options\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--carousel_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:14:\"carousel_speed\";a:8:{s:5:\"label\";s:14:\"Carousel Speed\";s:11:\"description\";s:65:\"Controls the speed of all carousel elements. ex: 1000 = 1 second.\";s:2:\"id\";s:14:\"carousel_speed\";s:7:\"default\";s:4:\"2500\";s:4:\"type\";s:6:\"slider\";s:11:\"option_name\";s:14:\"fusion_options\";s:7:\"choices\";a:3:{s:3:\"min\";s:4:\"1000\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:3:\"250\";}s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:18:\"fusionCarouselVars\";s:2:\"id\";s:14:\"carousel_speed\";s:7:\"trigger\";a:1:{i:0;s:23:\"fusion-reinit-carousels\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}}}s:23:\"chart_shortcode_section\";a:6:{s:5:\"label\";s:5:\"Chart\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"chart_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:17:\"fusiona-bar-chart\";s:6:\"fields\";a:5:{s:21:\"chart_legend_position\";a:7:{s:5:\"label\";s:15:\"Legend Position\";s:11:\"description\";s:133:\"Set chart legend position. Note that on mobile devices legend will be positioned below the chart when left or right position is used.\";s:2:\"id\";s:21:\"chart_legend_position\";s:7:\"default\";s:3:\"top\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:5:{s:3:\"top\";s:3:\"Top\";s:5:\"right\";s:5:\"Right\";s:6:\"bottom\";s:6:\"Bottom\";s:4:\"left\";s:4:\"Left\";s:3:\"off\";s:3:\"Off\";}}s:19:\"chart_show_tooltips\";a:7:{s:5:\"label\";s:13:\"Show Tooltips\";s:11:\"description\";s:146:\"Choose whether tooltips should be displayed on hover. If your chart is in a column and the column has a hover type or link, tooltips are disabled.\";s:2:\"id\";s:19:\"chart_show_tooltips\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:14:\"chart_bg_color\";a:6:{s:5:\"label\";s:22:\"Chart Background Color\";s:11:\"description\";s:37:\"Controls the background of the chart.\";s:2:\"id\";s:14:\"chart_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"chart_axis_text_color\";a:6:{s:5:\"label\";s:21:\"Chart Axis Text Color\";s:11:\"description\";s:49:\"Controls the text color of the x-axis and y-axis.\";s:2:\"id\";s:21:\"chart_axis_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:20:\"chart_gridline_color\";a:6:{s:5:\"label\";s:20:\"Chart Gridline Color\";s:11:\"description\";s:65:\"Controls the color of the chart background grid lines and values.\";s:2:\"id\";s:20:\"chart_gridline_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:27:\"checklist_shortcode_section\";a:6:{s:5:\"label\";s:9:\"Checklist\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"checklist_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:15:\"fusiona-list-ul\";s:6:\"fields\";a:10:{s:21:\"checklist_icons_color\";a:6:{s:5:\"label\";s:20:\"Checklist Icon Color\";s:11:\"description\";s:41:\"Controls the color of the checklist icon.\";s:2:\"id\";s:21:\"checklist_icons_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--checklist_icons_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"checklist_circle\";a:6:{s:5:\"label\";s:21:\"Checklist Icon Circle\";s:11:\"description\";s:72:\"Turn on if you want to display a circle background for checklists icons.\";s:2:\"id\";s:16:\"checklist_circle\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"checklist_circle_color\";a:7:{s:5:\"label\";s:27:\"Checklist Icon Circle Color\";s:11:\"description\";s:59:\"Controls the color of the checklist icon circle background.\";s:2:\"id\";s:22:\"checklist_circle_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--checklist_circle_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"checklist_text_color\";a:6:{s:5:\"label\";s:20:\"Checklist Text Color\";s:11:\"description\";s:41:\"Controls the color of the checklist text.\";s:2:\"id\";s:20:\"checklist_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--checklist_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"checklist_item_size\";a:6:{s:5:\"label\";s:14:\"Item Font Size\";s:11:\"description\";s:41:\"Controls the font size of the list items.\";s:2:\"id\";s:19:\"checklist_item_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"checklist_item_padding\";a:7:{s:5:\"label\";s:12:\"Item Padding\";s:11:\"description\";s:44:\"Controls the padding size of the list items.\";s:2:\"id\";s:22:\"checklist_item_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:6:\"0.35em\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:6:\"0.35em\";s:4:\"left\";s:1:\"0\";}s:4:\"type\";s:7:\"spacing\";s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:28:\"--checklist_item_padding-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:31:\"--checklist_item_padding-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:2;a:2:{s:4:\"name\";s:29:\"--checklist_item_padding-left\";s:6:\"choice\";s:4:\"left\";}i:3;a:2:{s:4:\"name\";s:30:\"--checklist_item_padding-right\";s:6:\"choice\";s:5:\"right\";}}}s:17:\"checklist_divider\";a:7:{s:5:\"label\";s:13:\"Divider Lines\";s:11:\"description\";s:54:\"Choose if a divider line shows between each list item.\";s:2:\"id\";s:17:\"checklist_divider\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:9:\"transport\";s:11:\"postMessage\";}s:23:\"checklist_divider_color\";a:7:{s:5:\"label\";s:18:\"Divider Line Color\";s:11:\"description\";s:40:\"Controls the color of the divider lines.\";s:2:\"id\";s:23:\"checklist_divider_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--checklist_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"checklist_odd_row_bgcolor\";a:6:{s:5:\"label\";s:34:\"Checklist Odd Row Background Color\";s:11:\"description\";s:55:\"Controls the background color of the checklist odd row.\";s:2:\"id\";s:25:\"checklist_odd_row_bgcolor\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:27:\"--checklist_odd_row_bgcolor\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"checklist_even_row_bgcolor\";a:6:{s:5:\"label\";s:35:\"Checklist Even Row Background Color\";s:11:\"description\";s:56:\"Controls the background color of the checklist even row.\";s:2:\"id\";s:26:\"checklist_even_row_bgcolor\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:28:\"--checklist_even_row_bgcolor\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:24:\"column_shortcode_section\";a:7:{s:5:\"label\";s:6:\"Column\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:24:\"column_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:14:\"fusiona-column\";s:6:\"fields\";a:4:{s:10:\"col_margin\";a:7:{s:5:\"label\";s:14:\"Column Margins\";s:11:\"description\";s:53:\"Controls the top/bottom margins for all column sizes.\";s:2:\"id\";s:10:\"col_margin\";s:4:\"type\";s:7:\"spacing\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:9:\"transport\";s:11:\"postMessage\";s:7:\"default\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}}s:11:\"col_spacing\";a:6:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:59:\"Controls the column spacing between one column to the next.\";s:2:\"id\";s:11:\"col_spacing\";s:7:\"default\";s:2:\"4%\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"col_width_medium\";a:7:{s:5:\"label\";s:30:\"Column Width On Medium Screens\";s:11:\"description\";s:65:\"Controls how columns should be displayed on medium sized screens.\";s:2:\"id\";s:16:\"col_width_medium\";s:7:\"default\";s:18:\"inherit_from_large\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:18:\"inherit_from_large\";s:18:\"Inherit From Large\";s:3:\"1_1\";s:11:\"Full Width \";}}s:15:\"col_width_small\";a:7:{s:5:\"label\";s:29:\"Column Width On Small Screens\";s:11:\"description\";s:64:\"Controls how columns should be displayed on small sized screens.\";s:2:\"id\";s:15:\"col_width_small\";s:7:\"default\";s:3:\"1_1\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:18:\"inherit_from_large\";s:18:\"Inherit From Large\";s:3:\"1_1\";s:11:\"Full Width \";}}}}s:27:\"container_shortcode_section\";a:6:{s:5:\"label\";s:9:\"Container\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"container_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:17:\"fusiona-container\";s:6:\"fields\";a:13:{s:29:\"container_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:151:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For column spacing option, please check column element options panel.</div>\";s:2:\"id\";s:29:\"container_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:25:\"container_padding_default\";a:7:{s:5:\"label\";s:38:\"Container Padding for Default Template\";s:11:\"description\";s:106:\"Controls the top/right/bottom/left padding of the container element when using the Default page template. \";s:2:\"id\";s:25:\"container_padding_default\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"container_padding_100\";a:7:{s:5:\"label\";s:41:\"Container Padding for 100% Width Template\";s:11:\"description\";s:108:\"Controls the top/right/bottom/left padding of the container element when using the 100% width page template.\";s:2:\"id\";s:21:\"container_padding_100\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:4:\"30px\";s:5:\"right\";s:4:\"30px\";}s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"full_width_bg_color\";a:6:{s:5:\"label\";s:26:\"Container Background Color\";s:11:\"description\";s:55:\"Controls the background color of the container element.\";s:2:\"id\";s:19:\"full_width_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:31:\"full_width_gradient_start_color\";a:6:{s:5:\"label\";s:30:\"Container Gradient Start Color\";s:11:\"description\";s:63:\"Controls the start color for gradient of the container element.\";s:2:\"id\";s:31:\"full_width_gradient_start_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:29:\"full_width_gradient_end_color\";a:6:{s:5:\"label\";s:28:\"Container Gradient End Color\";s:11:\"description\";s:61:\"Controls the end color for gradient of the container element.\";s:2:\"id\";s:29:\"full_width_gradient_end_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"full_width_border_sizes\";a:7:{s:5:\"label\";s:22:\"Container Border Sizes\";s:11:\"description\";s:50:\"Controls the border size of the container element.\";s:2:\"id\";s:23:\"full_width_border_sizes\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}}s:23:\"full_width_border_color\";a:6:{s:5:\"label\";s:22:\"Container Border Color\";s:11:\"description\";s:51:\"Controls the border color of the container element.\";s:2:\"id\";s:23:\"full_width_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:29:\"container_scroll_nav_bg_color\";a:6:{s:5:\"label\";s:49:\"Container 100% Height Navigation Background Color\";s:11:\"description\";s:101:\"Controls the background colors of the navigation area and name box when using 100% height containers.\";s:2:\"id\";s:29:\"container_scroll_nav_bg_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 80%))\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:31:\"--container_scroll_nav_bg_color\";s:7:\"element\";s:26:\".fusion-scroll-section-nav\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:33:\"container_scroll_nav_bullet_color\";a:6:{s:5:\"label\";s:46:\"Container 100% Height Navigation Element Color\";s:11:\"description\";s:93:\"Controls the color of the navigation circles and text name when using 100% height containers.\";s:2:\"id\";s:33:\"container_scroll_nav_bullet_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:35:\"--container_scroll_nav_bullet_color\";s:7:\"element\";s:34:\".fusion-scroll-section-link-bullet\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:44:\"container_hundred_percent_scroll_sensitivity\";a:7:{s:5:\"label\";s:40:\"Container 100% Height Scroll Sensitivity\";s:11:\"description\";s:104:\"Controls the sensitivity of the scrolling transition on 100% height scrolling sections. In milliseconds.\";s:2:\"id\";s:44:\"container_hundred_percent_scroll_sensitivity\";s:7:\"default\";s:3:\"450\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"200\";s:3:\"max\";s:4:\"1500\";s:4:\"step\";s:2:\"10\";}}s:39:\"container_hundred_percent_height_mobile\";a:6:{s:5:\"label\";s:31:\"Container 100% Height On Mobile\";s:11:\"description\";s:303:\"Turn on to enable the 100% height containers on mobile. Please note, this feature only works when your containers have minimal content. If the container has a lot of content it will overflow the screen height. In many cases, 100% height containers work well on desktop, but will need disabled on mobile.\";s:2:\"id\";s:39:\"container_hundred_percent_height_mobile\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:19:\"fusionContainerVars\";s:2:\"id\";s:39:\"container_hundred_percent_height_mobile\";s:7:\"trigger\";a:1:{i:0;s:6:\"resize\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}}s:24:\"container_legacy_support\";a:6:{s:5:\"label\";s:24:\"Legacy Container Support\";s:11:\"description\";s:262:\"<strong>IMPORTANT:</strong> If you disable legacy mode and then save a page, all containers on that page will be saved as flex mode.  If you later decide to turn the global legacy support back on then you will have to re-edit those pages if you want legacy mode.\";s:2:\"id\";s:24:\"container_legacy_support\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}}}s:31:\"content_boxes_shortcode_section\";a:5:{s:5:\"label\";s:13:\"Content Boxes\";s:2:\"id\";s:31:\"content_boxes_shortcode_section\";s:4:\"icon\";s:17:\"fusiona-newspaper\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:20:{s:20:\"content_box_bg_color\";a:6:{s:5:\"label\";s:28:\"Content Box Background Color\";s:11:\"description\";s:48:\"Controls the background color for content boxes.\";s:2:\"id\";s:20:\"content_box_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"content_box_title_size\";a:7:{s:5:\"label\";s:27:\"Content Box Title Font Size\";s:11:\"description\";s:36:\"Controls the size of the title text.\";s:2:\"id\";s:22:\"content_box_title_size\";s:7:\"default\";s:2:\"24\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"250\";s:4:\"step\";s:1:\"1\";}}s:23:\"content_box_title_color\";a:6:{s:5:\"label\";s:28:\"Content Box Title Font Color\";s:11:\"description\";s:37:\"Controls the color of the title font.\";s:2:\"id\";s:23:\"content_box_title_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"content_box_body_color\";a:6:{s:5:\"label\";s:27:\"Content Box Body Font Color\";s:11:\"description\";s:36:\"Controls the color of the body font.\";s:2:\"id\";s:22:\"content_box_body_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"content_box_icon_size\";a:7:{s:5:\"label\";s:26:\"Content Box Icon Font Size\";s:11:\"description\";s:30:\"Controls the size of the icon.\";s:2:\"id\";s:21:\"content_box_icon_size\";s:7:\"default\";s:2:\"20\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"250\";s:4:\"step\";s:1:\"1\";}}s:22:\"content_box_icon_color\";a:6:{s:5:\"label\";s:22:\"Content Box Icon Color\";s:11:\"description\";s:43:\"Controls the color of the content box icon.\";s:2:\"id\";s:22:\"content_box_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"content_box_icon_circle\";a:7:{s:5:\"label\";s:27:\"Content Box Icon Background\";s:11:\"description\";s:48:\"Turn on to display a background behind the icon.\";s:2:\"id\";s:23:\"content_box_icon_circle\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:2:\"On\";s:2:\"no\";s:3:\"Off\";}}s:30:\"content_box_icon_circle_radius\";a:7:{s:5:\"label\";s:34:\"Content Box Icon Background Radius\";s:11:\"description\";s:50:\"Controls the border radius of the icon background.\";s:2:\"id\";s:30:\"content_box_icon_circle_radius\";s:7:\"default\";s:3:\"50%\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:25:\"content_box_icon_bg_color\";a:7:{s:5:\"label\";s:33:\"Content Box Icon Background Color\";s:11:\"description\";s:42:\"Controls the color of the icon background.\";s:2:\"id\";s:25:\"content_box_icon_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:38:\"content_box_icon_bg_inner_border_color\";a:7:{s:5:\"label\";s:46:\"Content Box Icon Background Inner Border Color\";s:11:\"description\";s:55:\"Controls the inner border color of the icon background.\";s:2:\"id\";s:38:\"content_box_icon_bg_inner_border_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:37:\"content_box_icon_bg_inner_border_size\";a:8:{s:5:\"label\";s:45:\"Content Box Icon Background Inner Border Size\";s:11:\"description\";s:54:\"Controls the inner border size of the icon background.\";s:2:\"id\";s:37:\"content_box_icon_bg_inner_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;}s:38:\"content_box_icon_bg_outer_border_color\";a:7:{s:5:\"label\";s:46:\"Content Box Icon Background Outer Border Color\";s:11:\"description\";s:55:\"Controls the outer border color of the icon background.\";s:2:\"id\";s:38:\"content_box_icon_bg_outer_border_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:37:\"content_box_icon_bg_outer_border_size\";a:8:{s:5:\"label\";s:45:\"Content Box Icon Background Outer Border Size\";s:11:\"description\";s:54:\"Controls the outer border size of the icon background.\";s:2:\"id\";s:37:\"content_box_icon_bg_outer_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;}s:27:\"content_box_icon_hover_type\";a:7:{s:5:\"label\";s:32:\"Content Box Hover Animation Type\";s:11:\"description\";s:38:\"Controls the hover effect of the icon.\";s:2:\"id\";s:27:\"content_box_icon_hover_type\";s:7:\"default\";s:4:\"fade\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:4:\"none\";s:4:\"None\";s:4:\"fade\";s:4:\"Fade\";s:5:\"slide\";s:5:\"Slide\";s:7:\"pulsate\";s:7:\"Pulsate\";}}s:40:\"content_box_hover_animation_accent_color\";a:6:{s:5:\"label\";s:30:\"Content Box Hover Accent Color\";s:11:\"description\";s:35:\"Controls the accent color on hover.\";s:2:\"id\";s:40:\"content_box_hover_animation_accent_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"content_box_link_type\";a:7:{s:5:\"label\";s:21:\"Content Box Link Type\";s:11:\"description\";s:59:\"Controls the type of link that displays in the content box.\";s:2:\"id\";s:21:\"content_box_link_type\";s:7:\"default\";s:4:\"text\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:4:\"text\";s:4:\"Text\";s:10:\"button-bar\";s:10:\"Button Bar\";s:6:\"button\";s:6:\"Button\";}}s:23:\"content_box_button_span\";a:8:{s:5:\"label\";s:11:\"Button Span\";s:11:\"description\";s:46:\"Choose to have the button span the full width.\";s:2:\"id\";s:23:\"content_box_button_span\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:15:\"soft_dependency\";b:1;}s:21:\"content_box_link_area\";a:7:{s:5:\"label\";s:21:\"Content Box Link Area\";s:11:\"description\";s:49:\"Controls which area the link will be assigned to.\";s:2:\"id\";s:21:\"content_box_link_area\";s:7:\"default\";s:9:\"link-icon\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:9:\"link-icon\";s:11:\"Link + Icon\";s:3:\"box\";s:18:\"Entire Content Box\";}}s:23:\"content_box_link_target\";a:7:{s:5:\"label\";s:23:\"Content Box Link Target\";s:11:\"description\";s:32:\"Controls how the link will open.\";s:2:\"id\";s:23:\"content_box_link_target\";s:7:\"default\";s:5:\"_self\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:5:\"_self\";s:11:\"Same Window\";s:6:\"_blank\";s:14:\"New Window/Tab\";}}s:18:\"content_box_margin\";a:7:{s:5:\"label\";s:30:\"Content Box Top/Bottom Margins\";s:11:\"description\";s:49:\"Controls the top/bottom margin for content boxes.\";s:2:\"id\";s:18:\"content_box_margin\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}s:7:\"default\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}}}}s:27:\"countdown_shortcode_section\";a:5:{s:5:\"label\";s:9:\"Countdown\";s:2:\"id\";s:27:\"countdown_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:24:\"fusiona-calendar-check-o\";s:6:\"fields\";a:24:{s:18:\"countdown_timezone\";a:7:{s:5:\"label\";s:18:\"Countdown Timezone\";s:11:\"description\";s:65:\"Controls the timezone that is used for the countdown calculation.\";s:2:\"id\";s:18:\"countdown_timezone\";s:7:\"default\";s:9:\"site_time\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:9:\"site_time\";s:13:\"Site Timezone\";s:9:\"user_time\";s:13:\"User Timezone\";}}s:16:\"countdown_layout\";a:7:{s:5:\"label\";s:16:\"Countdown Layout\";s:11:\"description\";s:42:\"Select the layout of the coundown element.\";s:2:\"id\";s:16:\"countdown_layout\";s:7:\"default\";s:7:\"floated\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:7:\"floated\";s:7:\"Floated\";s:7:\"stacked\";s:7:\"Stacked\";}}s:20:\"countdown_show_weeks\";a:7:{s:5:\"label\";s:20:\"Countdown Show Weeks\";s:11:\"description\";s:56:\"Turn on to display the number of weeks in the countdown.\";s:2:\"id\";s:20:\"countdown_show_weeks\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:2:\"On\";s:2:\"no\";s:3:\"Off\";}}s:24:\"countdown_label_position\";a:7:{s:5:\"label\";s:24:\"Countdown Label Position\";s:11:\"description\";s:44:\"Select the position of the date/time labels.\";s:2:\"id\";s:24:\"countdown_label_position\";s:7:\"default\";s:9:\"text_flow\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:9:\"text_flow\";s:9:\"Text Flow\";s:3:\"top\";s:3:\"Top\";s:6:\"bottom\";s:6:\"Bottom\";}}s:26:\"countdown_background_color\";a:7:{s:5:\"label\";s:26:\"Countdown Background Color\";s:11:\"description\";s:52:\"Controls the background color for the countdown box.\";s:2:\"id\";s:26:\"countdown_background_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:28:\"--countdown_background_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"countdown_background_image\";a:7:{s:5:\"label\";s:26:\"Countdown Background Image\";s:11:\"description\";s:49:\"Select an image for the countdown box background.\";s:2:\"id\";s:26:\"countdown_background_image\";s:7:\"default\";s:0:\"\";s:3:\"mod\";s:0:\"\";s:4:\"type\";s:5:\"media\";s:9:\"transport\";s:11:\"postMessage\";}s:27:\"countdown_background_repeat\";a:7:{s:5:\"label\";s:27:\"Countdown Background Repeat\";s:11:\"description\";s:42:\"Controls how the background image repeats.\";s:2:\"id\";s:27:\"countdown_background_repeat\";s:7:\"default\";s:9:\"no-repeat\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:6:\"repeat\";s:10:\"Repeat All\";s:8:\"repeat-x\";s:17:\"Repeat Horizontal\";s:8:\"repeat-y\";s:15:\"Repeat Vertical\";s:9:\"no-repeat\";s:11:\"Repeat None\";}}s:29:\"countdown_background_position\";a:7:{s:5:\"label\";s:29:\"Countdown Background Position\";s:11:\"description\";s:48:\"Controls how the background image is positioned.\";s:2:\"id\";s:29:\"countdown_background_position\";s:7:\"default\";s:13:\"center center\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:9:{s:8:\"top left\";s:8:\"top left\";s:10:\"top center\";s:10:\"top center\";s:9:\"top right\";s:9:\"top right\";s:11:\"center left\";s:11:\"center left\";s:13:\"center center\";s:13:\"center center\";s:12:\"center right\";s:12:\"center right\";s:11:\"bottom left\";s:11:\"bottom left\";s:13:\"bottom center\";s:13:\"bottom center\";s:12:\"bottom right\";s:12:\"bottom right\";}}s:29:\"countdown_counter_box_spacing\";a:6:{s:5:\"label\";s:29:\"Countdown Counter Box Spacing\";s:11:\"description\";s:47:\"Controls the spacing between the counter boxes.\";s:2:\"id\";s:29:\"countdown_counter_box_spacing\";s:7:\"default\";s:4:\"10px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";}s:27:\"countdown_counter_box_color\";a:7:{s:5:\"label\";s:38:\"Countdown Counter Box Background Color\";s:11:\"description\";s:52:\"Controls the background color for the counter boxes.\";s:2:\"id\";s:27:\"countdown_counter_box_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:29:\"--countdown_counter_box_color\";}}}s:25:\"countdown_counter_padding\";a:7:{s:5:\"label\";s:29:\"Countdown Counter Box Padding\";s:11:\"description\";s:39:\"Set the padding for the counter boxes. \";s:2:\"id\";s:25:\"countdown_counter_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:5:\"0.6em\";s:5:\"right\";s:5:\"1.1em\";s:6:\"bottom\";s:5:\"0.6em\";s:4:\"left\";s:5:\"1.1em\";}s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";}s:29:\"countdown_counter_border_size\";a:7:{s:5:\"label\";s:29:\"Countdown Counter Border Size\";s:11:\"description\";s:46:\"Controls the border size of the counter boxes.\";s:2:\"id\";s:29:\"countdown_counter_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:30:\"countdown_counter_border_color\";a:7:{s:5:\"label\";s:30:\"Countdown Counter Border Color\";s:11:\"description\";s:47:\"Controls the border color of the counter boxes.\";s:2:\"id\";s:30:\"countdown_counter_border_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:31:\"countdown_counter_border_radius\";a:7:{s:5:\"label\";s:31:\"Countdown Counter Border Radius\";s:11:\"description\";s:48:\"Controls the border radius of the counter boxes.\";s:2:\"id\";s:31:\"countdown_counter_border_radius\";s:7:\"default\";s:3:\"4px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:9:\"transport\";s:11:\"postMessage\";}s:27:\"countdown_counter_font_size\";a:6:{s:5:\"label\";s:27:\"Countdown Counter Font Size\";s:11:\"description\";s:47:\"Controls the font size for the countdown timer.\";s:2:\"id\";s:27:\"countdown_counter_font_size\";s:7:\"default\";s:4:\"18px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";}s:28:\"countdown_counter_text_color\";a:7:{s:5:\"label\";s:28:\"Countdown Counter Text Color\";s:11:\"description\";s:48:\"Controls the color for the countdown timer text.\";s:2:\"id\";s:28:\"countdown_counter_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--countdown_counter_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"countdown_label_font_size\";a:6:{s:5:\"label\";s:33:\"Countdown Counter Label Font Size\";s:11:\"description\";s:47:\"Controls the font size for the countdown label.\";s:2:\"id\";s:25:\"countdown_label_font_size\";s:7:\"default\";s:4:\"18px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"countdown_label_color\";a:7:{s:5:\"label\";s:34:\"Countdown Counter Label Text Color\";s:11:\"description\";s:50:\"Controls the color for the countdown timer labels.\";s:2:\"id\";s:21:\"countdown_label_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:23:\"--countdown_label_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"countdown_heading_font_size\";a:6:{s:5:\"label\";s:27:\"Countdown Heading Font Size\";s:11:\"description\";s:49:\"Controls the font size for the countdown heading.\";s:2:\"id\";s:27:\"countdown_heading_font_size\";s:7:\"default\";s:4:\"18px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";}s:28:\"countdown_heading_text_color\";a:7:{s:5:\"label\";s:28:\"Countdown Heading Text Color\";s:11:\"description\";s:46:\"Controls the color for the countdown headings.\";s:2:\"id\";s:28:\"countdown_heading_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:30:\"--countdown_heading_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:30:\"countdown_subheading_font_size\";a:6:{s:5:\"label\";s:30:\"Countdown Subheading Font Size\";s:11:\"description\";s:52:\"Controls the font size for the countdown subheading.\";s:2:\"id\";s:30:\"countdown_subheading_font_size\";s:7:\"default\";s:4:\"14px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";}s:31:\"countdown_subheading_text_color\";a:6:{s:5:\"label\";s:31:\"Countdown Subheading Text Color\";s:11:\"description\";s:49:\"Controls the color for the countdown subheadings.\";s:2:\"id\";s:31:\"countdown_subheading_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:25:\"countdown_link_text_color\";a:6:{s:5:\"label\";s:25:\"Countdown Link Text Color\";s:11:\"description\";s:47:\"Controls the color for the countdown link text.\";s:2:\"id\";s:25:\"countdown_link_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"countdown_link_target\";a:7:{s:5:\"label\";s:21:\"Countdown Link Target\";s:11:\"description\";s:32:\"Controls how the link will open.\";s:2:\"id\";s:21:\"countdown_link_target\";s:7:\"default\";s:5:\"_self\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:5:\"_self\";s:11:\"Same Window\";s:6:\"_blank\";s:10:\"New Window\";}}}}s:30:\"counters_box_shortcode_section\";a:6:{s:5:\"label\";s:13:\"Counter Boxes\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:30:\"counters_box_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:15:\"fusiona-browser\";s:6:\"fields\";a:8:{s:17:\"counter_box_speed\";a:7:{s:5:\"label\";s:19:\"Counter Boxes Speed\";s:11:\"description\";s:70:\"Controls the speed of the counter boxes elements. ex: 1000 = 1 second.\";s:2:\"id\";s:17:\"counter_box_speed\";s:7:\"default\";s:4:\"1000\";s:4:\"type\";s:6:\"slider\";s:6:\"output\";a:1:{i:0;a:4:{s:7:\"element\";s:13:\"helperElement\";s:8:\"property\";s:5:\"dummy\";s:11:\"js_callback\";a:2:{i:0;s:21:\"fusionGlobalScriptSet\";i:1;a:3:{s:9:\"globalVar\";s:17:\"fusionCountersBox\";s:2:\"id\";s:17:\"counter_box_speed\";s:7:\"trigger\";a:1:{i:0;s:0:\"\";}}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"500\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:3:\"250\";}}s:17:\"counter_box_color\";a:6:{s:5:\"label\";s:30:\"Counter Boxes Value Font Color\";s:11:\"description\";s:51:\"Controls the color of the counter values and icons.\";s:2:\"id\";s:17:\"counter_box_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"counter_box_title_size\";a:7:{s:5:\"label\";s:29:\"Counter Boxes Value Font Size\";s:11:\"description\";s:39:\"Controls the size of the counter value.\";s:2:\"id\";s:22:\"counter_box_title_size\";s:7:\"default\";s:2:\"50\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}}s:21:\"counter_box_icon_size\";a:7:{s:5:\"label\";s:23:\"Counter Boxes Icon Size\";s:11:\"description\";s:30:\"Controls the size of the icon.\";s:2:\"id\";s:21:\"counter_box_icon_size\";s:7:\"default\";s:2:\"50\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}}s:22:\"counter_box_body_color\";a:6:{s:5:\"label\";s:29:\"Counter Boxes Body Font Color\";s:11:\"description\";s:50:\"Controls the color of the counter boxes body text.\";s:2:\"id\";s:22:\"counter_box_body_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"counter_box_body_size\";a:7:{s:5:\"label\";s:28:\"Counter Boxes Body Font Size\";s:11:\"description\";s:49:\"Controls the size of the counter boxes body text.\";s:2:\"id\";s:21:\"counter_box_body_size\";s:7:\"default\";s:2:\"14\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"200\";s:4:\"step\";s:1:\"1\";}}s:24:\"counter_box_border_color\";a:6:{s:5:\"label\";s:26:\"Counter Boxes Border Color\";s:11:\"description\";s:47:\"Controls the color of the counter boxes border.\";s:2:\"id\";s:24:\"counter_box_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:20:\"counter_box_icon_top\";a:7:{s:5:\"label\";s:25:\"Counter Boxes Icon On Top\";s:11:\"description\";s:56:\"Turn on to display the icon on top of the counter value.\";s:2:\"id\";s:20:\"counter_box_icon_top\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:2:\"On\";s:2:\"no\";s:3:\"Off\";}}}}s:33:\"counters_circle_shortcode_section\";a:6:{s:5:\"label\";s:15:\"Counter Circles\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:33:\"counters_circle_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:13:\"fusiona-clock\";s:6:\"fields\";a:2:{s:20:\"counter_filled_color\";a:6:{s:5:\"label\";s:28:\"Counter Circles Filled Color\";s:11:\"description\";s:40:\"Controls the color of the filled circle.\";s:2:\"id\";s:20:\"counter_filled_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"counter_unfilled_color\";a:6:{s:5:\"label\";s:30:\"Counter Circles Unfilled Color\";s:11:\"description\";s:42:\"Controls the color of the unfilled circle.\";s:2:\"id\";s:22:\"counter_unfilled_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:25:\"dropcap_shortcode_section\";a:6:{s:5:\"label\";s:7:\"Dropcap\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"dropcap_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:12:\"fusiona-font\";s:6:\"fields\";a:2:{s:13:\"dropcap_color\";a:6:{s:5:\"label\";s:13:\"Dropcap Color\";s:11:\"description\";s:76:\"Controls the color of the dropcap text, or the dropcap box if a box is used.\";s:2:\"id\";s:13:\"dropcap_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:15:\"--dropcap_color\";s:7:\"element\";s:28:\".fusion-body .fusion-dropcap\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"dropcap_text_color\";a:6:{s:5:\"label\";s:18:\"Dropcap Text Color\";s:11:\"description\";s:58:\"Controls the color of the dropcap text when a box is used.\";s:2:\"id\";s:18:\"dropcap_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--dropcap_text_color\";s:7:\"element\";s:28:\".fusion-body .fusion-dropcap\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:21:\"faq_shortcode_section\";a:7:{s:5:\"label\";s:3:\"FAQ\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:21:\"faq_shortcode_section\";s:4:\"type\";s:11:\"sub-section\";s:4:\"icon\";s:24:\"fusiona-exclamation-sign\";s:8:\"help_url\";s:66:\"https://theme-fusion.com/documentation/avada/elements/faq-element/\";s:6:\"fields\";a:16:{s:18:\"faq_featured_image\";a:7:{s:5:\"label\";s:19:\"FAQ Featured Images\";s:11:\"description\";s:35:\"Turn on to display featured images.\";s:2:\"id\";s:18:\"faq_featured_image\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:11:\"option_name\";s:14:\"fusion_options\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"faq_filters\";a:8:{s:5:\"label\";s:11:\"FAQ Filters\";s:11:\"description\";s:42:\"Controls how the filters display for FAQs.\";s:2:\"id\";s:11:\"faq_filters\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:3:{s:3:\"yes\";s:4:\"Show\";s:15:\"yes_without_all\";s:28:\"Show without &quot;All&quot;\";s:2:\"no\";s:4:\"Hide\";}s:11:\"option_name\";s:14:\"fusion_options\";s:9:\"transport\";s:11:\"postMessage\";}s:18:\"faq_accordion_type\";a:7:{s:5:\"label\";s:29:\"FAQs in Toggles or Accordions\";s:11:\"description\";s:102:\"Toggles allow several items to be open at a time. Accordions only allow one item to be open at a time.\";s:2:\"id\";s:18:\"faq_accordion_type\";s:7:\"default\";s:10:\"accordions\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"toggles\";s:7:\"Toggles\";s:10:\"accordions\";s:10:\"Accordions\";}s:9:\"transport\";s:11:\"postMessage\";}s:24:\"faq_accordion_boxed_mode\";a:6:{s:5:\"label\";s:23:\"FAQ Items in Boxed Mode\";s:11:\"description\";s:103:\"Turn on to display items in boxed mode. FAQ Item divider line must be disabled for this option to work.\";s:2:\"id\";s:24:\"faq_accordion_boxed_mode\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:25:\"faq_accordion_border_size\";a:8:{s:5:\"label\";s:32:\"FAQ Item Boxed Mode Border Width\";s:11:\"description\";s:41:\"Controls the border size of the FAQ item.\";s:2:\"id\";s:25:\"faq_accordion_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}}s:26:\"faq_accordian_border_color\";a:7:{s:5:\"label\";s:32:\"FAQ Item Boxed Mode Border Color\";s:11:\"description\";s:42:\"Controls the border color of the FAQ item.\";s:2:\"id\";s:26:\"faq_accordian_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:30:\"faq_accordian_background_color\";a:7:{s:5:\"label\";s:36:\"FAQ Item Boxed Mode Background Color\";s:11:\"description\";s:46:\"Controls the background color of the FAQ item.\";s:2:\"id\";s:30:\"faq_accordian_background_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:25:\"faq_accordian_hover_color\";a:7:{s:5:\"label\";s:42:\"FAQ Item Boxed Mode Background Hover Color\";s:11:\"description\";s:52:\"Controls the background hover color of the FAQ item.\";s:2:\"id\";s:25:\"faq_accordian_hover_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:26:\"faq_accordion_divider_line\";a:7:{s:5:\"label\";s:21:\"FAQ Item Divider Line\";s:11:\"description\";s:52:\"Turn on to display a divider line between each item.\";s:2:\"id\";s:26:\"faq_accordion_divider_line\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:29:\"faq_accordion_title_font_size\";a:6:{s:5:\"label\";s:19:\"FAQ Title Font Size\";s:11:\"description\";s:36:\"Controls the size of the title text.\";s:2:\"id\";s:29:\"faq_accordion_title_font_size\";s:7:\"default\";s:4:\"24px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"faq_accordion_icon_size\";a:7:{s:5:\"label\";s:18:\"FAQ Item Icon Size\";s:11:\"description\";s:25:\"Set the size of the icon.\";s:2:\"id\";s:23:\"faq_accordion_icon_size\";s:7:\"default\";s:2:\"16\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"40\";s:4:\"step\";s:1:\"1\";}s:4:\"type\";s:6:\"slider\";}s:24:\"faq_accordian_icon_color\";a:6:{s:5:\"label\";s:19:\"FAQ Item Icon Color\";s:11:\"description\";s:38:\"Controls the color of icon in FAQ box.\";s:2:\"id\";s:24:\"faq_accordian_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"faq_accordion_icon_boxed\";a:6:{s:5:\"label\";s:24:\"FAQ Item Icon Boxed Mode\";s:11:\"description\";s:38:\"Turn on to display icon in boxed mode.\";s:2:\"id\";s:24:\"faq_accordion_icon_boxed\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:28:\"faq_accordian_inactive_color\";a:7:{s:5:\"label\";s:32:\"FAQ Item Icon Inactive Box Color\";s:11:\"description\";s:43:\"Controls the color of the inactive FAQ box.\";s:2:\"id\";s:28:\"faq_accordian_inactive_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:24:\"faq_accordion_icon_align\";a:7:{s:5:\"label\";s:23:\"FAQ Item Icon Alignment\";s:11:\"description\";s:35:\"Controls the alignment of the icon.\";s:2:\"id\";s:24:\"faq_accordion_icon_align\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:4:\"left\";s:4:\"Left\";s:5:\"right\";s:5:\"Right\";}}s:26:\"faq_accordian_active_color\";a:6:{s:5:\"label\";s:39:\"FAQ Item Icon Toggle Hover Accent Color\";s:11:\"description\";s:58:\"Controls the accent color on hover for icon box and title.\";s:2:\"id\";s:26:\"faq_accordian_active_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:28:\"flip_boxes_shortcode_section\";a:6:{s:5:\"label\";s:10:\"Flip Boxes\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:28:\"flip_boxes_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:17:\"fusiona-loop-alt2\";s:6:\"fields\";a:13:{s:22:\"flip_boxes_flip_effect\";a:7:{s:5:\"label\";s:11:\"Flip Effect\";s:11:\"description\";s:34:\"Set the flip effect for the boxes.\";s:2:\"id\";s:22:\"flip_boxes_flip_effect\";s:7:\"default\";s:7:\"classic\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:7:\"classic\";s:7:\"Classic\";s:2:\"3d\";s:2:\"3d\";}}s:25:\"flip_boxes_flip_direction\";a:7:{s:5:\"label\";s:14:\"Flip Direction\";s:11:\"description\";s:49:\"Set the direction in which the boxes should flip.\";s:2:\"id\";s:25:\"flip_boxes_flip_direction\";s:7:\"default\";s:5:\"right\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:4:\"left\";s:9:\"Flip Left\";s:5:\"right\";s:10:\"Flip Right\";s:2:\"up\";s:7:\"Flip Up\";s:4:\"down\";s:9:\"Flip Down\";}}s:24:\"flip_boxes_flip_duration\";a:7:{s:5:\"label\";s:13:\"Flip Duration\";s:11:\"description\";s:38:\"Set the speed at which the boxes flip.\";s:2:\"id\";s:24:\"flip_boxes_flip_duration\";s:7:\"default\";s:3:\"0.8\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:3:\"0.1\";s:3:\"max\";s:1:\"2\";s:4:\"step\";s:3:\"0.1\";}}s:24:\"flip_boxes_equal_heights\";a:7:{s:5:\"label\";s:13:\"Equal Heights\";s:11:\"description\";s:50:\"Set to yes to display flip boxes to equal heights.\";s:2:\"id\";s:24:\"flip_boxes_equal_heights\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:19:\"flip_boxes_front_bg\";a:6:{s:5:\"label\";s:35:\"Flip Box Background Color Frontside\";s:11:\"description\";s:47:\"Controls the color of the frontside background.\";s:2:\"id\";s:19:\"flip_boxes_front_bg\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"flip_boxes_front_heading\";a:6:{s:5:\"label\";s:32:\"Flip Box Heading Color Frontside\";s:11:\"description\";s:44:\"Controls the color of the frontside heading.\";s:2:\"id\";s:24:\"flip_boxes_front_heading\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"flip_boxes_front_text\";a:6:{s:5:\"label\";s:29:\"Flip Box Text Color Frontside\";s:11:\"description\";s:41:\"Controls the color of the frontside text.\";s:2:\"id\";s:21:\"flip_boxes_front_text\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:18:\"flip_boxes_back_bg\";a:6:{s:5:\"label\";s:34:\"Flip Box Background Color Backside\";s:11:\"description\";s:46:\"Controls the color of the backside background.\";s:2:\"id\";s:18:\"flip_boxes_back_bg\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"flip_boxes_back_heading\";a:6:{s:5:\"label\";s:31:\"Flip Box Heading Color Backside\";s:11:\"description\";s:43:\"Controls the color of the backside heading.\";s:2:\"id\";s:23:\"flip_boxes_back_heading\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:20:\"flip_boxes_back_text\";a:6:{s:5:\"label\";s:28:\"Flip Box Text Color Backside\";s:11:\"description\";s:40:\"Controls the color of the backside text.\";s:2:\"id\";s:20:\"flip_boxes_back_text\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:22:\"flip_boxes_border_size\";a:7:{s:5:\"label\";s:20:\"Flip Box Border Size\";s:11:\"description\";s:52:\"Controls the border size of the flip box background.\";s:2:\"id\";s:22:\"flip_boxes_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:23:\"flip_boxes_border_color\";a:6:{s:5:\"label\";s:21:\"Flip Box Border Color\";s:11:\"description\";s:49:\"Controls the border color of flip box background.\";s:2:\"id\";s:23:\"flip_boxes_border_color\";s:7:\"default\";s:13:\"rgba(0,0,0,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"flip_boxes_border_radius\";a:7:{s:5:\"label\";s:22:\"Flip Box Border Radius\";s:11:\"description\";s:54:\"Controls the border radius of the flip box background.\";s:2:\"id\";s:24:\"flip_boxes_border_radius\";s:7:\"default\";s:3:\"6px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:3:{i:0;s:2:\"px\";i:1;s:1:\"%\";i:2;s:2:\"em\";}s:9:\"transport\";s:11:\"postMessage\";}}}s:25:\"gallery_shortcode_section\";a:5:{s:5:\"label\";s:7:\"Gallery\";s:2:\"id\";s:25:\"gallery_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:17:\"fusiona-dashboard\";s:6:\"fields\";a:9:{s:20:\"gallery_picture_size\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:12:\"Picture Size\";s:11:\"description\";s:92:\"Fixed = width and height will be fixed<br/>Auto = width and height will adjust to the image.\";s:2:\"id\";s:20:\"gallery_picture_size\";s:7:\"choices\";a:2:{s:5:\"fixed\";s:5:\"Fixed\";s:4:\"auto\";s:4:\"Auto\";}s:7:\"default\";s:4:\"auto\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"gallery_layout\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:14:\"Gallery Layout\";s:11:\"description\";s:31:\"Select the gallery layout type.\";s:2:\"id\";s:14:\"gallery_layout\";s:7:\"choices\";a:2:{s:4:\"grid\";s:4:\"Grid\";s:7:\"masonry\";s:7:\"Masonry\";}s:7:\"default\";s:4:\"grid\";s:9:\"transport\";s:11:\"postMessage\";}s:15:\"gallery_columns\";a:7:{s:4:\"type\";s:6:\"slider\";s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:106:\"Set the number of columns per row. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:15:\"gallery_columns\";s:7:\"default\";s:1:\"3\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"6\";s:4:\"step\";s:1:\"1\";}}s:22:\"gallery_column_spacing\";a:7:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:47:\"Controls the column spacing for gallery images.\";s:2:\"id\";s:22:\"gallery_column_spacing\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"300\";s:4:\"step\";s:1:\"1\";}}s:18:\"gallery_hover_type\";a:7:{s:4:\"type\";s:6:\"select\";s:5:\"label\";s:10:\"Hover Type\";s:11:\"description\";s:29:\"Select the hover effect type.\";s:2:\"id\";s:18:\"gallery_hover_type\";s:7:\"choices\";a:5:{s:0:\"\";s:7:\"Default\";s:4:\"none\";s:4:\"None\";s:6:\"zoomin\";s:7:\"Zoom In\";s:7:\"zoomout\";s:8:\"Zoom Out\";s:6:\"liftup\";s:7:\"Lift Up\";}s:7:\"default\";s:4:\"none\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"gallery_lightbox_content\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:16:\"Lightbox Content\";s:2:\"id\";s:24:\"gallery_lightbox_content\";s:7:\"default\";s:4:\"none\";s:7:\"choices\";a:4:{s:4:\"none\";s:4:\"None\";s:6:\"titles\";s:6:\"Titles\";s:8:\"captions\";s:8:\"Captions\";s:17:\"title_and_caption\";s:21:\"Titles &amp; Captions\";}s:11:\"description\";s:59:\"Choose if titles and captions will display in the lightbox.\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"gallery_border_size\";a:7:{s:5:\"label\";s:25:\"Gallery Image Border Size\";s:11:\"description\";s:38:\"Controls the border size of the image.\";s:2:\"id\";s:19:\"gallery_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:20:\"gallery_border_color\";a:6:{s:5:\"label\";s:26:\"Gallery Image Border Color\";s:11:\"description\";s:39:\"Controls the border color of the image.\";s:2:\"id\";s:20:\"gallery_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"gallery_border_radius\";a:7:{s:5:\"label\";s:27:\"Gallery Image Border Radius\";s:11:\"description\";s:49:\"Controls the border radius of the gallery images.\";s:2:\"id\";s:21:\"gallery_border_radius\";s:7:\"default\";s:3:\"0px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:9:\"transport\";s:11:\"postMessage\";}}}s:28:\"google_map_shortcode_section\";a:6:{s:5:\"label\";s:10:\"Google Map\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:28:\"google_map_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:11:\"fusiona-map\";s:6:\"fields\";a:1:{s:19:\"google_map_api_type\";a:7:{s:5:\"label\";s:15:\"Google API Type\";s:11:\"description\";s:417:\"Select the Google API type that should be used to load your map. The JavaScript API allows for more options and custom styling, but could be charged for by Google depending on the amount of map loads. The embed and the static API can be used for free regardless of map loads. For more information please see the <a href=\"https://cloud.google.com/maps-platform/user-guide/\" target=\"_blank\">Google Maps Users Guide</a>.\";s:2:\"id\";s:19:\"google_map_api_type\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:2:\"js\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:2:\"js\";s:6:\"JS API\";s:5:\"embed\";s:9:\"Embed API\";s:6:\"static\";s:10:\"Static API\";}}}}s:22:\"icon_shortcode_section\";a:6:{s:5:\"label\";s:4:\"Icon\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"icon_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:12:\"fusiona-flag\";s:6:\"fields\";a:11:{s:9:\"icon_size\";a:7:{s:5:\"label\";s:14:\"Icon Font Size\";s:11:\"description\";s:30:\"Controls the size of the icon.\";s:2:\"id\";s:9:\"icon_size\";s:7:\"default\";s:2:\"32\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"250\";s:4:\"step\";s:1:\"1\";}}s:10:\"icon_color\";a:7:{s:5:\"label\";s:10:\"Icon Color\";s:11:\"description\";s:31:\"Controls the color of the icon.\";s:2:\"id\";s:10:\"icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:12:\"--icon_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"icon_color_hover\";a:7:{s:5:\"label\";s:16:\"Icon Hover Color\";s:11:\"description\";s:40:\"Controls the color of the icon on hover.\";s:2:\"id\";s:16:\"icon_color_hover\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--icon_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:11:\"icon_circle\";a:7:{s:5:\"label\";s:15:\"Icon Background\";s:11:\"description\";s:48:\"Turn on to display a background behind the icon.\";s:2:\"id\";s:11:\"icon_circle\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:17:\"icon_circle_color\";a:7:{s:5:\"label\";s:21:\"Icon Background Color\";s:11:\"description\";s:37:\"Controls the color of the background.\";s:2:\"id\";s:17:\"icon_circle_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--icon_circle_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"icon_circle_color_hover\";a:7:{s:5:\"label\";s:27:\"Icon Hover Background Color\";s:11:\"description\";s:46:\"Controls the color of the background on hover.\";s:2:\"id\";s:23:\"icon_circle_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:25:\"--icon_circle_color_hover\";}}}s:16:\"icon_border_size\";a:8:{s:5:\"label\";s:16:\"Icon Border Size\";s:11:\"description\";s:48:\"Controls the border size of the icon background.\";s:2:\"id\";s:16:\"icon_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:18:\"--icon_border_size\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}}s:17:\"icon_border_color\";a:7:{s:5:\"label\";s:28:\"Icon Background Border Color\";s:11:\"description\";s:44:\"Controls the border color of the background.\";s:2:\"id\";s:17:\"icon_border_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--icon_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:23:\"icon_border_color_hover\";a:7:{s:5:\"label\";s:34:\"Icon Hover Background Border Color\";s:11:\"description\";s:53:\"Controls the border color of the background on hover.\";s:2:\"id\";s:23:\"icon_border_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--icon_border_color_hover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"icon_border_radius\";a:7:{s:5:\"label\";s:13:\"Border Radius\";s:11:\"description\";s:22:\"Set the border radius.\";s:2:\"id\";s:18:\"icon_border_radius\";s:7:\"choices\";a:5:{s:8:\"top_left\";b:1;s:9:\"top_right\";b:1;s:12:\"bottom_right\";b:1;s:11:\"bottom_left\";b:1;s:5:\"units\";a:3:{i:0;s:2:\"px\";i:1;s:1:\"%\";i:2;s:2:\"em\";}}s:7:\"default\";a:4:{s:8:\"top_left\";s:3:\"50%\";s:9:\"top_right\";s:3:\"50%\";s:12:\"bottom_right\";s:3:\"50%\";s:11:\"bottom_left\";s:3:\"50%\";}s:4:\"type\";s:13:\"border_radius\";s:9:\"transport\";s:11:\"postMessage\";}s:15:\"icon_hover_type\";a:7:{s:5:\"label\";s:25:\"Icon Hover Animation Type\";s:11:\"description\";s:38:\"Controls the hover effect of the icon.\";s:2:\"id\";s:15:\"icon_hover_type\";s:7:\"default\";s:4:\"fade\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:4:\"fade\";s:4:\"Fade\";s:5:\"slide\";s:5:\"Slide\";s:7:\"pulsate\";s:7:\"Pulsate\";}}}}s:36:\"image_before_after_shortcode_section\";a:6:{s:5:\"label\";s:21:\" Image Before & After\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:36:\"image_before_after_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:22:\"fusiona-object-ungroup\";s:6:\"fields\";a:14:{s:17:\"before_after_type\";a:7:{s:5:\"label\";s:11:\"Effect Type\";s:11:\"description\";s:177:\"Select which type of effect your before and after image uses. &quot;Slide&quot; provides a handle to move back and forth while &quot;Fade&quot; changes the image on mouse hover.\";s:2:\"id\";s:17:\"before_after_type\";s:7:\"default\";s:12:\"before_after\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:12:\"before_after\";s:5:\"Slide\";s:6:\"switch\";s:4:\"Fade\";}}s:22:\"before_after_font_size\";a:8:{s:4:\"type\";s:6:\"slider\";s:5:\"label\";s:15:\"Label Font Size\";s:11:\"description\";s:105:\"Controls the font size of the label text. Note: font family is controlled by body font in Global Options.\";s:2:\"id\";s:22:\"before_after_font_size\";s:7:\"default\";s:2:\"14\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"10\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;}s:25:\"before_after_accent_color\";a:7:{s:5:\"label\";s:18:\"Label Accent Color\";s:11:\"description\";s:111:\"Controls the color of the label background and text. Text takes 100% of this color, background takes a % of it.\";s:2:\"id\";s:25:\"before_after_accent_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:28:\"before_after_label_placement\";a:8:{s:5:\"label\";s:15:\"Label Placement\";s:11:\"description\";s:127:\"Choose if labels are on top of the image and centered, on top of the image up &amp; down or outside of the image up &amp; down.\";s:2:\"id\";s:28:\"before_after_label_placement\";s:7:\"default\";s:14:\"image-centered\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:14:\"image-centered\";s:14:\"Image Centered\";s:13:\"image-up-down\";s:19:\"Image Up &amp; Down\";s:17:\"out-image-up-down\";s:27:\"Outside Image Up &amp; Down\";}s:15:\"soft_dependency\";b:1;}s:24:\"before_after_handle_type\";a:8:{s:5:\"label\";s:19:\"Handle Design Style\";s:11:\"description\";s:76:\"Controls the design of the handle used to change the before and after image.\";s:2:\"id\";s:24:\"before_after_handle_type\";s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:6:{s:7:\"default\";s:18:\"Circle With Arrows\";s:6:\"square\";s:18:\"Square With Arrows\";s:9:\"rectangle\";s:21:\"Rectangle With Arrows\";s:6:\"arrows\";s:6:\"Arrows\";s:7:\"diamond\";s:7:\"Diamond\";s:6:\"circle\";s:13:\"Single Circle\";}s:15:\"soft_dependency\";b:1;}s:25:\"before_after_handle_color\";a:7:{s:5:\"label\";s:12:\"Handle Color\";s:11:\"description\";s:85:\"Controls the color of the before and after image handle line and arrows. ex: #ffffff.\";s:2:\"id\";s:25:\"before_after_handle_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:22:\"before_after_handle_bg\";a:7:{s:5:\"label\";s:23:\"Handle Background Color\";s:11:\"description\";s:87:\"Controls the background color of the before and after image handle switch. ex: #000000.\";s:2:\"id\";s:22:\"before_after_handle_bg\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:19:\"before_after_offset\";a:8:{s:5:\"label\";s:13:\"Handle Offset\";s:11:\"description\";s:140:\"Controls where the handle will be positioned on page load allowing you to control how much of each image displays by default. In percentage.\";s:2:\"id\";s:19:\"before_after_offset\";s:7:\"default\";s:2:\"50\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;}s:24:\"before_after_orientation\";a:8:{s:5:\"label\";s:18:\"Handle Orientation\";s:11:\"description\";s:59:\"Controls the position of the before and after image handle.\";s:2:\"id\";s:24:\"before_after_orientation\";s:7:\"default\";s:10:\"horizontal\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:10:\"horizontal\";s:10:\"Horizontal\";s:8:\"vertical\";s:8:\"Vertical\";}s:15:\"soft_dependency\";b:1;}s:28:\"before_after_handle_movement\";a:8:{s:5:\"label\";s:23:\"Handle Movement Control\";s:11:\"description\";s:121:\"Controls how the viewer interacts with the image handler. The image handle can use Drag &amp; Click, Drag Only, or Hover.\";s:2:\"id\";s:28:\"before_after_handle_movement\";s:7:\"default\";s:10:\"drag_click\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:10:\"drag_click\";s:16:\"Drag &amp; Click\";s:4:\"drag\";s:9:\"Drag Only\";s:5:\"hover\";s:5:\"Hover\";}s:15:\"soft_dependency\";b:1;}s:28:\"before_after_transition_time\";a:8:{s:5:\"label\";s:27:\"Image Fade Transition Speed\";s:11:\"description\";s:69:\"Controls the speed of the fade transition on mouse hover. In seconds.\";s:2:\"id\";s:28:\"before_after_transition_time\";s:7:\"default\";s:3:\"0.5\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:1:\"1\";s:4:\"step\";s:3:\"0.1\";}s:15:\"soft_dependency\";b:1;}s:24:\"before_after_border_size\";a:7:{s:5:\"label\";s:11:\"Border Size\";s:11:\"description\";s:65:\"Controls the border size of the image before &amp; after element.\";s:2:\"id\";s:24:\"before_after_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:25:\"before_after_border_color\";a:7:{s:5:\"label\";s:12:\"Border Color\";s:11:\"description\";s:66:\"Controls the border color of the image before &amp; after element.\";s:2:\"id\";s:25:\"before_after_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:26:\"before_after_border_radius\";a:8:{s:5:\"label\";s:13:\"Border Radius\";s:11:\"description\";s:67:\"Controls the border radius of the image before &amp; after element.\";s:2:\"id\";s:26:\"before_after_border_radius\";s:7:\"default\";s:3:\"0px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}}}s:28:\"imageframe_shortcode_section\";a:6:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:28:\"imageframe_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:13:\"fusiona-image\";s:6:\"fields\";a:6:{s:21:\"imageframe_style_type\";a:7:{s:5:\"label\";s:16:\"Image Style Type\";s:11:\"description\";s:22:\"Select the style type.\";s:2:\"id\";s:21:\"imageframe_style_type\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:4:\"none\";s:4:\"None\";s:4:\"glow\";s:4:\"Glow\";s:10:\"dropshadow\";s:11:\"Drop Shadow\";s:12:\"bottomshadow\";s:13:\"Bottom Shadow\";}}s:15:\"imageframe_blur\";a:8:{s:5:\"label\";s:29:\"Image Glow / Drop Shadow Blur\";s:11:\"description\";s:62:\"Choose the amount of blur added to glow or drop shadow effect.\";s:2:\"id\";s:15:\"imageframe_blur\";s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;}s:20:\"imgframe_style_color\";a:7:{s:5:\"label\";s:17:\"Image Style Color\";s:11:\"description\";s:137:\"Controls the style color for all style types except border. Hex colors will use a subtle auto added alpha level to produce a nice effect.\";s:2:\"id\";s:20:\"imgframe_style_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:22:\"imageframe_border_size\";a:7:{s:5:\"label\";s:17:\"Image Border Size\";s:11:\"description\";s:38:\"Controls the border size of the image.\";s:2:\"id\";s:22:\"imageframe_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:21:\"imgframe_border_color\";a:7:{s:5:\"label\";s:18:\"Image Border Color\";s:11:\"description\";s:39:\"Controls the border color of the image.\";s:2:\"id\";s:21:\"imgframe_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:24:\"imageframe_border_radius\";a:7:{s:5:\"label\";s:19:\"Image Border Radius\";s:11:\"description\";s:40:\"Controls the border radius of the image.\";s:2:\"id\";s:24:\"imageframe_border_radius\";s:7:\"default\";s:3:\"0px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:9:\"transport\";s:11:\"postMessage\";}}}s:23:\"modal_shortcode_section\";a:6:{s:5:\"label\";s:5:\"Modal\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"modal_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:21:\"fusiona-external-link\";s:6:\"fields\";a:2:{s:14:\"modal_bg_color\";a:6:{s:5:\"label\";s:22:\"Modal Background Color\";s:11:\"description\";s:53:\"Controls the background color of the modal popup box.\";s:2:\"id\";s:14:\"modal_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:18:\"modal_border_color\";a:6:{s:5:\"label\";s:18:\"Modal Border Color\";s:11:\"description\";s:49:\"Controls the border color of the modal popup box.\";s:2:\"id\";s:18:\"modal_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:24:\"person_shortcode_section\";a:6:{s:5:\"label\";s:6:\"Person\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:24:\"person_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:12:\"fusiona-user\";s:6:\"fields\";a:11:{s:36:\"person_shortcode_important_note_info\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:238:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> The styling options for the social icons used in the person element are controlled through the options under the \"Social Icon Elements\" section on this tab.</div>\";s:2:\"id\";s:36:\"person_shortcode_important_note_info\";s:4:\"type\";s:6:\"custom\";}s:13:\"person_margin\";a:7:{s:5:\"label\";s:7:\"Margins\";s:11:\"description\";s:42:\"Controls the margin around person element.\";s:2:\"id\";s:13:\"person_margin\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:4:\"left\";b:1;s:6:\"bottom\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}}s:23:\"person_background_color\";a:6:{s:5:\"label\";s:23:\"Person Background Color\";s:11:\"description\";s:49:\"Controls the background color of the person area.\";s:2:\"id\";s:23:\"person_background_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"person_pic_style\";a:7:{s:5:\"label\";s:25:\"Person Picture Style Type\";s:11:\"description\";s:22:\"Select the style type.\";s:2:\"id\";s:16:\"person_pic_style\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:4:\"none\";s:4:\"None\";s:4:\"glow\";s:4:\"Glow\";s:10:\"dropshadow\";s:11:\"Drop Shadow\";s:12:\"bottomshadow\";s:13:\"Bottom Shadow\";}}s:21:\"person_pic_style_blur\";a:8:{s:5:\"label\";s:38:\"Person Picture Glow / Drop Shadow Blur\";s:11:\"description\";s:62:\"Choose the amount of blur added to glow or drop shadow effect.\";s:2:\"id\";s:21:\"person_pic_style_blur\";s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:8:\"required\";a:2:{i:0;a:3:{s:7:\"setting\";s:16:\"person_pic_style\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"none\";}i:1;a:3:{s:7:\"setting\";s:16:\"person_pic_style\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:12:\"bottomshadow\";}}}s:18:\"person_style_color\";a:6:{s:5:\"label\";s:18:\"Person Style Color\";s:11:\"description\";s:59:\"Controls the style color for all style types except border.\";s:2:\"id\";s:18:\"person_style_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"person_border_color\";a:6:{s:5:\"label\";s:19:\"Person Border Color\";s:11:\"description\";s:46:\"Controls the border color of the person image.\";s:2:\"id\";s:19:\"person_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:18:\"person_border_size\";a:7:{s:5:\"label\";s:18:\"Person Border Size\";s:11:\"description\";s:45:\"Controls the border size of the person image.\";s:2:\"id\";s:18:\"person_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:20:\"person_border_radius\";a:7:{s:5:\"label\";s:20:\"Person Border Radius\";s:11:\"description\";s:47:\"Controls the border radius of the person image.\";s:2:\"id\";s:20:\"person_border_radius\";s:7:\"default\";s:3:\"0px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:1:\"%\";}s:9:\"transport\";s:11:\"postMessage\";}s:16:\"person_alignment\";a:7:{s:5:\"label\";s:24:\"Person Content Alignment\";s:11:\"description\";s:45:\"Controls the alignment of the person content.\";s:2:\"id\";s:16:\"person_alignment\";s:7:\"default\";s:4:\"Left\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:4:\"Left\";s:4:\"Left\";s:6:\"Center\";s:6:\"Center\";s:5:\"Right\";s:5:\"Right\";}}s:20:\"person_icon_position\";a:7:{s:5:\"label\";s:27:\"Person Social Icon Position\";s:11:\"description\";s:42:\"Controls the position of the social icons.\";s:2:\"id\";s:20:\"person_icon_position\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"Top\";s:3:\"Top\";s:6:\"Bottom\";s:6:\"Bottom\";}}}}s:25:\"popover_shortcode_section\";a:6:{s:5:\"label\";s:7:\"Popover\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:25:\"popover_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:15:\"fusiona-uniF61C\";s:6:\"fields\";a:5:{s:24:\"popover_heading_bg_color\";a:6:{s:5:\"label\";s:32:\"Popover Heading Background Color\";s:11:\"description\";s:53:\"Controls the color of the popover heading background.\";s:2:\"id\";s:24:\"popover_heading_bg_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--popover_heading_bg_color\";s:7:\"element\";s:8:\".popover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:24:\"popover_content_bg_color\";a:6:{s:5:\"label\";s:32:\"Popover Content Background Color\";s:11:\"description\";s:49:\"Controls the color of popover content background.\";s:2:\"id\";s:24:\"popover_content_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:26:\"--popover_content_bg_color\";s:7:\"element\";s:8:\".popover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"popover_border_color\";a:6:{s:5:\"label\";s:20:\"Popover Border Color\";s:11:\"description\";s:41:\"Controls the border color of popover box.\";s:2:\"id\";s:20:\"popover_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--popover_border_color\";s:7:\"element\";s:8:\".popover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"popover_text_color\";a:6:{s:5:\"label\";s:18:\"Popover Text Color\";s:11:\"description\";s:39:\"Controls the color of the popover text.\";s:2:\"id\";s:18:\"popover_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:20:\"--popover_text_color\";s:7:\"element\";s:8:\".popover\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:17:\"popover_placement\";a:6:{s:5:\"label\";s:16:\"Popover Position\";s:11:\"description\";s:76:\"Controls the position of the popover in reference to the triggering element.\";s:2:\"id\";s:17:\"popover_placement\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:4:{s:3:\"Top\";s:3:\"Top\";s:5:\"Right\";s:5:\"Right\";s:6:\"Bottom\";s:6:\"Bottom\";s:4:\"Left\";s:4:\"Left\";}}}}s:27:\"portfolio_shortcode_section\";a:6:{s:5:\"label\";s:9:\"Portfolio\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"portfolio_shortcode_section\";s:4:\"icon\";s:21:\"fusiona-insertpicture\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:16:{s:29:\"portfolio_featured_image_size\";a:7:{s:5:\"label\";s:29:\"Portfolio Featured Image Size\";s:11:\"description\";s:225:\"Controls if the featured image size is fixed (cropped) or auto (full image ratio) for portfolio elements. <strong>IMPORTANT:</strong> Fixed works best with a standard 940px site width. Auto works best with larger site widths.\";s:2:\"id\";s:29:\"portfolio_featured_image_size\";s:7:\"default\";s:4:\"full\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:7:\"cropped\";s:5:\"Fixed\";s:4:\"full\";s:4:\"Auto\";}}s:17:\"portfolio_columns\";a:7:{s:5:\"label\";s:17:\"Number of Columns\";s:11:\"description\";s:173:\"Set the number of columns per row. With Carousel layout this specifies the maximum amount of columns. <strong>IMPORTANT:</strong> Masonry layout does not work with 1 column.\";s:2:\"id\";s:17:\"portfolio_columns\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"default\";i:3;s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";i:1;s:3:\"max\";i:6;s:4:\"step\";i:1;}}s:24:\"portfolio_column_spacing\";a:7:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:48:\"Controls the column spacing for portfolio items.\";s:2:\"id\";s:24:\"portfolio_column_spacing\";s:7:\"default\";s:2:\"30\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"300\";s:4:\"step\";s:1:\"1\";}}s:15:\"portfolio_items\";a:7:{s:5:\"label\";s:34:\"Number of Portfolio Items Per Page\";s:11:\"description\";s:164:\"Controls the number of posts that display per page for portfolio elements. Set to -1 to display all. Set to 0 to use the number of posts from Settings &gt; Reading.\";s:2:\"id\";s:15:\"portfolio_items\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"-1\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:21:\"portfolio_text_layout\";a:7:{s:5:\"label\";s:21:\"Portfolio Text Layout\";s:11:\"description\";s:118:\"Controls if the portfolio text content is displayed boxed or unboxed or is completely disabled for portfolio elements.\";s:2:\"id\";s:21:\"portfolio_text_layout\";s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:7:\"no_text\";s:7:\"No Text\";s:5:\"boxed\";s:5:\"Boxed\";s:7:\"unboxed\";s:7:\"Unboxed\";}}s:24:\"portfolio_content_length\";a:7:{s:5:\"label\";s:22:\"Portfolio Text Display\";s:11:\"description\";s:97:\"Choose how to display the post excerpt for portfolio elements. Does not apply to image rollovers.\";s:2:\"id\";s:24:\"portfolio_content_length\";s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:12:\"full_content\";s:12:\"Full Content\";s:7:\"excerpt\";s:7:\"Excerpt\";s:7:\"no_text\";s:7:\"No Text\";}}s:24:\"portfolio_excerpt_length\";a:8:{s:5:\"label\";s:14:\"Excerpt Length\";s:11:\"description\";s:68:\"Controls the number of words in the excerpts for portfolio elements.\";s:2:\"id\";s:24:\"portfolio_excerpt_length\";s:7:\"default\";s:2:\"10\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:3:\"500\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;}s:28:\"portfolio_strip_html_excerpt\";a:6:{s:5:\"label\";s:23:\"Strip HTML from Excerpt\";s:11:\"description\";s:70:\"Turn on to strip HTML content from the excerpt for portfolio elements.\";s:2:\"id\";s:28:\"portfolio_strip_html_excerpt\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"portfolio_title_display\";a:7:{s:5:\"label\";s:23:\"Portfolio Title Display\";s:11:\"description\";s:76:\"Controls what displays with the portfolio post title for portfolio elements.\";s:2:\"id\";s:23:\"portfolio_title_display\";s:7:\"default\";s:3:\"all\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"all\";s:20:\"Title and Categories\";s:5:\"title\";s:10:\"Only Title\";s:4:\"cats\";s:15:\"Only Categories\";s:4:\"none\";s:4:\"None\";}}s:24:\"portfolio_text_alignment\";a:7:{s:5:\"label\";s:24:\"Portfolio Text Alignment\";s:11:\"description\";s:135:\"Controls the alignment of the portfolio title, categories and excerpt text when using the Portfolio Text layouts in portfolio elements.\";s:2:\"id\";s:24:\"portfolio_text_alignment\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:6:\"center\";s:6:\"Center\";s:5:\"right\";s:5:\"Right\";}}s:24:\"portfolio_layout_padding\";a:8:{s:5:\"label\";s:29:\"Portfolio Text Layout Padding\";s:11:\"description\";s:95:\"Controls the padding for the portfolio text layout when using boxed mode in portfolio elements.\";s:2:\"id\";s:24:\"portfolio_layout_padding\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";}s:4:\"type\";s:7:\"spacing\";s:15:\"soft_dependency\";b:1;s:6:\"output\";a:1:{i:0;a:2:{s:7:\"element\";s:74:\".fusion-portfolio-boxed.fusion-portfolio-element .fusion-portfolio-content\";s:8:\"property\";s:7:\"padding\";}}}s:25:\"portfolio_pagination_type\";a:7:{s:5:\"label\";s:15:\"Pagination Type\";s:11:\"description\";s:52:\"Controls the pagination type for portfolio elements.\";s:2:\"id\";s:25:\"portfolio_pagination_type\";s:7:\"default\";s:10:\"pagination\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:10:\"pagination\";s:10:\"Pagination\";s:15:\"infinite_scroll\";s:15:\"Infinite Scroll\";s:16:\"load_more_button\";s:16:\"Load More Button\";}}s:49:\"portfolio_element_load_more_posts_button_bg_color\";a:6:{s:5:\"label\";s:39:\"Load More Posts Button Background Color\";s:11:\"description\";s:99:\"Controls the background color of the load more button for ajax post loading for portfolio elements.\";s:2:\"id\";s:49:\"portfolio_element_load_more_posts_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color7)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:51:\"--portfolio_element_load_more_posts_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:51:\"portfolio_element_load_more_posts_button_text_color\";a:6:{s:5:\"label\";s:33:\"Load More Posts Button Text Color\";s:11:\"description\";s:93:\"Controls the text color of the load more button for ajax post loading for portfolio elements.\";s:2:\"id\";s:51:\"portfolio_element_load_more_posts_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:53:\"--portfolio_element_load_more_posts_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:55:\"portfolio_element_load_more_posts_hover_button_bg_color\";a:6:{s:5:\"label\";s:45:\"Load More Posts Button Hover Background Color\";s:11:\"description\";s:105:\"Controls the hover background color of the load more button for ajax post loading for portfolio elements.\";s:2:\"id\";s:55:\"portfolio_element_load_more_posts_hover_button_bg_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:57:\"--portfolio_element_load_more_posts_hover_button_bg_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:57:\"portfolio_element_load_more_posts_hover_button_text_color\";a:6:{s:5:\"label\";s:39:\"Load More Posts Hover Button Text Color\";s:11:\"description\";s:99:\"Controls the hover text color of the load more button for ajax post loading for portfolio elements.\";s:2:\"id\";s:57:\"portfolio_element_load_more_posts_hover_button_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:59:\"--portfolio_element_load_more_posts_hover_button_text_color\";s:7:\"element\";s:24:\".fusion-load-more-button\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:31:\"pricing_table_shortcode_section\";a:6:{s:5:\"label\";s:13:\"Pricing Table\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:31:\"pricing_table_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:14:\"fusiona-dollar\";s:6:\"fields\";a:7:{s:36:\"full_boxed_pricing_box_heading_color\";a:6:{s:5:\"label\";s:33:\"Pricing Box Style 1 Heading Color\";s:11:\"description\";s:53:\"Controls the color of style 1 pricing table headings.\";s:2:\"id\";s:36:\"full_boxed_pricing_box_heading_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:29:\"sep_pricing_box_heading_color\";a:6:{s:5:\"label\";s:33:\"Pricing Box Style 2 Heading Color\";s:11:\"description\";s:53:\"Controls the color of style 2 pricing table headings.\";s:2:\"id\";s:29:\"sep_pricing_box_heading_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:17:\"pricing_box_color\";a:6:{s:5:\"label\";s:17:\"Pricing Box Color\";s:11:\"description\";s:45:\"Controls the color portions of pricing boxes.\";s:2:\"id\";s:17:\"pricing_box_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--pricing_box_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:16:\"pricing_bg_color\";a:6:{s:5:\"label\";s:28:\"Pricing Box Background Color\";s:11:\"description\";s:63:\"Controls the color of the main background and title background.\";s:2:\"id\";s:16:\"pricing_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:30:\"pricing_background_color_hover\";a:6:{s:5:\"label\";s:34:\"Pricing Box Background Hover Color\";s:11:\"description\";s:69:\"Controls the hover color of the main background and title background.\";s:2:\"id\";s:30:\"pricing_background_color_hover\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:20:\"pricing_border_color\";a:6:{s:5:\"label\";s:24:\"Pricing Box Border Color\";s:11:\"description\";s:79:\"Controls the color of the outer border, pricing row and footer row backgrounds.\";s:2:\"id\";s:20:\"pricing_border_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:21:\"pricing_divider_color\";a:6:{s:5:\"label\";s:25:\"Pricing Box Divider Color\";s:11:\"description\";s:59:\"Controls the color of the dividers in-between pricing rows.\";s:2:\"id\";s:21:\"pricing_divider_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:26:\"progress_shortcode_section\";a:6:{s:5:\"label\";s:12:\"Progress Bar\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:26:\"progress_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:13:\"fusiona-tasks\";s:6:\"fields\";a:7:{s:25:\"progressbar_text_position\";a:7:{s:5:\"label\";s:26:\"Progress Bar Text Position\";s:11:\"description\";s:102:\"Select the position of the progress bar text. Choose &quot;Default&quot; for Global Options selection.\";s:2:\"id\";s:25:\"progressbar_text_position\";s:7:\"default\";s:6:\"on_bar\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:6:\"on_bar\";s:6:\"On Bar\";s:9:\"above_bar\";s:9:\"Above Bar\";s:9:\"below_bar\";s:9:\"Below Bar\";}}s:22:\"progressbar_text_color\";a:6:{s:5:\"label\";s:23:\"Progress Bar Text Color\";s:11:\"description\";s:44:\"Controls the color of the progress bar text.\";s:2:\"id\";s:22:\"progressbar_text_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:18:\"progressbar_height\";a:6:{s:5:\"label\";s:19:\"Progress Bar Height\";s:11:\"description\";s:37:\"Insert a height for the progress bar.\";s:2:\"id\";s:18:\"progressbar_height\";s:7:\"default\";s:4:\"48px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"progressbar_filled_color\";a:6:{s:5:\"label\";s:25:\"Progress Bar Filled Color\";s:11:\"description\";s:51:\"Controls the color of the progress bar filled area.\";s:2:\"id\";s:24:\"progressbar_filled_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:26:\"progressbar_unfilled_color\";a:6:{s:5:\"label\";s:27:\"Progress Bar Unfilled Color\";s:11:\"description\";s:53:\"Controls the color of the progress bar unfilled area.\";s:2:\"id\";s:26:\"progressbar_unfilled_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:30:\"progressbar_filled_border_size\";a:7:{s:5:\"label\";s:31:\"Progress Bar Filled Border Size\";s:11:\"description\";s:57:\"Controls the border size of the progress bar filled area.\";s:2:\"id\";s:30:\"progressbar_filled_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}}s:31:\"progressbar_filled_border_color\";a:6:{s:5:\"label\";s:32:\"Progress Bar Filled Border Color\";s:11:\"description\";s:58:\"Controls the border color of the progress bar filled area.\";s:2:\"id\";s:31:\"progressbar_filled_border_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:33:\"scroll_progress_shortcode_section\";a:7:{s:5:\"label\";s:15:\"Scroll Progress\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:33:\"scroll_progress_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"icon\";s:23:\"fusiona-scroll-progress\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:7:{s:24:\"scroll_progress_position\";a:7:{s:5:\"label\";s:21:\"Progress Bar Position\";s:11:\"description\";s:41:\"Select the position of the progress bar..\";s:2:\"id\";s:24:\"scroll_progress_position\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:4:\"flow\";s:7:\"choices\";a:3:{s:4:\"flow\";s:12:\"Content Flow\";s:3:\"top\";s:12:\"Fixed to Top\";s:6:\"bottom\";s:15:\"Fixed to Bottom\";}s:9:\"transport\";s:11:\"postMessage\";}s:22:\"scroll_progress_height\";a:6:{s:5:\"label\";s:19:\"Progress Bar Height\";s:11:\"description\";s:37:\"Insert a height for the progress bar.\";s:2:\"id\";s:22:\"scroll_progress_height\";s:7:\"default\";s:4:\"10px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";}s:32:\"scroll_progress_background_color\";a:6:{s:5:\"label\";s:16:\"Background Color\";s:11:\"description\";s:50:\"Controls the background color of the progress bar.\";s:2:\"id\";s:32:\"scroll_progress_background_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:30:\"scroll_progress_progress_color\";a:6:{s:5:\"label\";s:14:\"Progress Color\";s:11:\"description\";s:39:\"Controls the color of the progress bar.\";s:2:\"id\";s:30:\"scroll_progress_progress_color\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:27:\"scroll_progress_border_size\";a:7:{s:5:\"label\";s:24:\"Progress Bar Border Size\";s:11:\"description\";s:45:\"Controls the border size of the progress bar.\";s:2:\"id\";s:27:\"scroll_progress_border_size\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}}s:28:\"scroll_progress_border_color\";a:6:{s:5:\"label\";s:25:\"Progress Bar Border Color\";s:11:\"description\";s:46:\"Controls the border color of the progress bar.\";s:2:\"id\";s:28:\"scroll_progress_border_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:29:\"scroll_progress_border_radius\";a:7:{s:5:\"label\";s:13:\"Border Radius\";s:11:\"description\";s:42:\"Set the border radius of the progress bar.\";s:2:\"id\";s:29:\"scroll_progress_border_radius\";s:4:\"type\";s:13:\"border_radius\";s:7:\"choices\";a:5:{s:8:\"top_left\";b:1;s:9:\"top_right\";b:1;s:12:\"bottom_right\";b:1;s:11:\"bottom_left\";b:1;s:5:\"units\";a:3:{i:0;s:2:\"px\";i:1;s:1:\"%\";i:2;s:2:\"em\";}}s:7:\"default\";a:4:{s:8:\"top_left\";s:3:\"0px\";s:9:\"top_right\";s:3:\"0px\";s:12:\"bottom_right\";s:3:\"0px\";s:11:\"bottom_left\";s:3:\"0px\";}s:9:\"transport\";s:11:\"postMessage\";}}}s:35:\"section_separator_shortcode_section\";a:6:{s:5:\"label\";s:17:\"Section Separator\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:35:\"section_separator_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:16:\"fusiona-ellipsis\";s:6:\"fields\";a:3:{s:23:\"section_sep_border_size\";a:7:{s:5:\"label\";s:29:\"Section Separator Border Size\";s:11:\"description\";s:50:\"Controls the border size of the section separator.\";s:2:\"id\";s:23:\"section_sep_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:14:\"section_sep_bg\";a:6:{s:5:\"label\";s:34:\"Section Separator Background Color\";s:11:\"description\";s:61:\"Controls the background color of the section separator style.\";s:2:\"id\";s:14:\"section_sep_bg\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:24:\"section_sep_border_color\";a:6:{s:5:\"label\";s:30:\"Section Separator Border Color\";s:11:\"description\";s:43:\"Controls the border color of the separator.\";s:2:\"id\";s:24:\"section_sep_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:27:\"separator_shortcode_section\";a:6:{s:5:\"label\";s:9:\"Separator\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:27:\"separator_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:13:\"fusiona-minus\";s:6:\"fields\";a:7:{s:20:\"separator_style_type\";a:7:{s:5:\"label\";s:15:\"Separator Style\";s:11:\"description\";s:121:\"Controls the line style of all separators, divider lines on portfolio archives, blog archives, product archives and more.\";s:2:\"id\";s:20:\"separator_style_type\";s:7:\"default\";s:6:\"double\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:8:{s:4:\"none\";s:8:\"No Style\";s:6:\"single\";s:19:\"Single Border Solid\";s:6:\"double\";s:19:\"Double Border Solid\";s:13:\"single|dashed\";s:20:\"Single Border Dashed\";s:13:\"double|dashed\";s:20:\"Double Border Dashed\";s:13:\"single|dotted\";s:20:\"Single Border Dotted\";s:13:\"double|dotted\";s:20:\"Double Border Dotted\";s:6:\"shadow\";s:6:\"Shadow\";}}s:9:\"sep_color\";a:7:{s:5:\"label\";s:15:\"Separator Color\";s:11:\"description\";s:216:\"Controls the color of all separators, divider lines and borders for meta, previous &amp; next, filters, archive pages, boxes around number pagination, sidebar widgets, accordion divider lines, counter boxes and more.\";s:2:\"id\";s:9:\"sep_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:11:\"--sep_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"separator_border_size\";a:7:{s:5:\"label\";s:11:\"Border Size\";s:11:\"description\";s:42:\"Controls the border size of the separator.\";s:2:\"id\";s:21:\"separator_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:19:\"separator_icon_size\";a:7:{s:5:\"label\";s:9:\"Icon Size\";s:11:\"description\";s:40:\"Controls the icon size of the separator.\";s:2:\"id\";s:19:\"separator_icon_size\";s:7:\"default\";s:2:\"16\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}}s:20:\"separator_icon_color\";a:6:{s:5:\"label\";s:10:\"Icon Color\";s:11:\"description\";s:30:\"Controls the color of the Icon\";s:2:\"id\";s:20:\"separator_icon_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"separator_circle\";a:6:{s:5:\"label\";s:16:\"Separator Circle\";s:11:\"description\";s:66:\"Turn on if you want to display a circle around the separator icon.\";s:2:\"id\";s:16:\"separator_circle\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:25:\"separator_circle_bg_color\";a:7:{s:5:\"label\";s:12:\"Circle Color\";s:11:\"description\";s:60:\"Controls the background color of the circle around the icon.\";s:2:\"id\";s:25:\"separator_circle_bg_color\";s:7:\"default\";s:19:\"rgba(255,255,255,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:16:\"separator_circle\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}}}s:30:\"social_links_shortcode_section\";a:6:{s:5:\"label\";s:20:\"Social Links Element\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:30:\"social_links_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:12:\"fusiona-link\";s:6:\"fields\";a:15:{s:17:\"social_links_info\";a:3:{s:2:\"id\";s:17:\"social_links_info\";s:4:\"type\";s:6:\"custom\";s:11:\"description\";s:171:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> These social icon global options control both the social link element and person element.</div>\";}s:19:\"social_links_margin\";a:7:{s:5:\"label\";s:7:\"Margins\";s:11:\"description\";s:48:\"Controls the margin around social links element.\";s:2:\"id\";s:19:\"social_links_margin\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:4:\"left\";b:1;s:6:\"bottom\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}}s:30:\"social_links_tooltip_placement\";a:7:{s:5:\"label\";s:35:\"Social Links Icons Tooltip Position\";s:11:\"description\";s:56:\"Controls the tooltip position of the social links icons.\";s:2:\"id\";s:30:\"social_links_tooltip_placement\";s:7:\"default\";s:3:\"Top\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:5:{s:3:\"Top\";s:3:\"Top\";s:5:\"Right\";s:5:\"Right\";s:6:\"Bottom\";s:6:\"Bottom\";s:4:\"Left\";s:4:\"Left\";s:4:\"None\";s:4:\"None\";}}s:22:\"social_links_font_size\";a:6:{s:5:\"label\";s:15:\"Icons Font Size\";s:11:\"description\";s:49:\"Controls the font size for the social link icons.\";s:2:\"id\";s:22:\"social_links_font_size\";s:7:\"default\";s:4:\"16px\";s:4:\"type\";s:9:\"dimension\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--social_links_font_size\";s:7:\"element\";s:20:\".fusion-social-links\";}}}s:23:\"social_links_color_type\";a:7:{s:5:\"label\";s:15:\"Icon Color Type\";s:11:\"description\";s:146:\"Custom colors allow you to choose a color for icons and boxes. Brand colors will use the exact brand color of each network for the icons or boxes.\";s:2:\"id\";s:23:\"social_links_color_type\";s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:6:\"custom\";s:13:\"Custom Colors\";s:5:\"brand\";s:12:\"Brand Colors\";}}s:23:\"social_links_icon_color\";a:7:{s:5:\"label\";s:11:\"Icons Color\";s:11:\"description\";s:39:\"Controls the color of the custom icons.\";s:2:\"id\";s:23:\"social_links_icon_color\";s:7:\"default\";s:17:\"var(--awb-color6)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:29:\"social_links_icon_color_hover\";a:7:{s:5:\"label\";s:17:\"Icons Hover Color\";s:11:\"description\";s:48:\"Controls the color of the custom icons on hover.\";s:2:\"id\";s:29:\"social_links_icon_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:18:\"social_links_boxed\";a:6:{s:5:\"label\";s:11:\"Boxed Style\";s:11:\"description\";s:99:\"Turn on to have the icon displayed in a small box. Turn off to have the icon displayed with no box.\";s:2:\"id\";s:18:\"social_links_boxed\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:26:\"social_links_boxed_padding\";a:7:{s:5:\"label\";s:13:\"Boxed Padding\";s:2:\"id\";s:26:\"social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:28:\"--social_links_boxed_padding\";s:7:\"element\";s:20:\".fusion-social-links\";}}}s:22:\"social_links_box_color\";a:7:{s:5:\"label\";s:14:\"Box Background\";s:11:\"description\";s:49:\"Select a custom social icon box background color.\";s:2:\"id\";s:22:\"social_links_box_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:28:\"social_links_box_color_hover\";a:7:{s:5:\"label\";s:20:\"Box Hover Background\";s:11:\"description\";s:58:\"Select a custom social icon box background color on hover.\";s:2:\"id\";s:28:\"social_links_box_color_hover\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:19:\"social_links_border\";a:7:{s:5:\"label\";s:15:\"Box Border Size\";s:11:\"description\";s:45:\"Controls the borders size of social icon box.\";s:2:\"id\";s:19:\"social_links_border\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:4:\"left\";b:1;s:6:\"bottom\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}}s:25:\"social_links_boxed_radius\";a:8:{s:5:\"label\";s:10:\"Box Radius\";s:11:\"description\";s:32:\"Box radius for the social icons.\";s:2:\"id\";s:25:\"social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";s:4:\"type\";s:9:\"dimension\";s:7:\"choices\";a:2:{i:0;s:2:\"px\";i:1;s:2:\"em\";}s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:25:\"social_links_border_color\";a:7:{s:5:\"label\";s:12:\"Border Color\";s:11:\"description\";s:46:\"Controls the borders color of social icon box.\";s:2:\"id\";s:25:\"social_links_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:31:\"social_links_border_color_hover\";a:7:{s:5:\"label\";s:18:\"Border Hover Color\";s:11:\"description\";s:55:\"Controls the borders color of social icon box on hover.\";s:2:\"id\";s:31:\"social_links_border_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}}}s:36:\"syntax_highlighter_shortcode_section\";a:7:{s:5:\"label\";s:18:\"Syntax Highlighter\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:36:\"syntax_highlighter_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:12:\"fusiona-code\";s:6:\"fields\";a:13:{s:24:\"syntax_highlighter_theme\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:17:\"Highlighter Theme\";s:11:\"description\";s:57:\"Select which theme you want to use for code highlighting.\";s:2:\"id\";s:24:\"syntax_highlighter_theme\";s:7:\"choices\";a:4:{s:7:\"default\";s:7:\"Light 1\";s:7:\"elegant\";s:7:\"Light 2\";s:9:\"hopscotch\";s:6:\"Dark 1\";s:12:\"oceanic-next\";s:6:\"Dark 2\";}s:7:\"default\";s:7:\"default\";s:9:\"transport\";s:11:\"postMessage\";}s:31:\"syntax_highlighter_line_numbers\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:12:\"Line Numbers\";s:11:\"description\";s:51:\"Choose if you want to display or hide line numbers.\";s:2:\"id\";s:31:\"syntax_highlighter_line_numbers\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:7:\"default\";s:3:\"yes\";}s:47:\"syntax_highlighter_line_number_background_color\";a:7:{s:4:\"type\";s:11:\"color-alpha\";s:5:\"label\";s:29:\"Line Numbers Background Color\";s:11:\"description\";s:106:\"Controls the background color for the line numbers. If left empty, color from selected theme will be used.\";s:2:\"id\";s:47:\"syntax_highlighter_line_number_background_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"syntax_highlighter_line_numbers\";s:5:\"value\";s:3:\"yes\";s:8:\"operator\";s:2:\"==\";}}}s:41:\"syntax_highlighter_line_number_text_color\";a:7:{s:4:\"type\";s:11:\"color-alpha\";s:5:\"label\";s:23:\"Line Numbers Text Color\";s:11:\"description\";s:95:\"Controls the color for line number text. If left empty, color from selected theme will be used.\";s:2:\"id\";s:41:\"syntax_highlighter_line_number_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:31:\"syntax_highlighter_line_numbers\";s:5:\"value\";s:3:\"yes\";s:8:\"operator\";s:2:\"==\";}}}s:32:\"syntax_highlighter_line_wrapping\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:13:\"Line Wrapping\";s:11:\"description\";s:69:\"Controls whether the long line should break or add horizontal scroll.\";s:2:\"id\";s:32:\"syntax_highlighter_line_wrapping\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:6:\"scroll\";s:6:\"Scroll\";s:5:\"break\";s:5:\"Break\";}s:7:\"default\";s:6:\"scroll\";}s:36:\"syntax_highlighter_copy_to_clipboard\";a:7:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:17:\"Copy to Clipboard\";s:11:\"description\";s:94:\"Choose if you want to allow your visitors to easily copy your code with a click of the button.\";s:2:\"id\";s:36:\"syntax_highlighter_copy_to_clipboard\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:7:\"default\";s:3:\"yes\";}s:41:\"syntax_highlighter_copy_to_clipboard_text\";a:7:{s:4:\"type\";s:4:\"text\";s:5:\"label\";s:22:\"Copy to Clipboard Text\";s:11:\"description\";s:53:\"Enter text to be displayed for user to click to copy.\";s:2:\"id\";s:41:\"syntax_highlighter_copy_to_clipboard_text\";s:7:\"default\";s:17:\"Copy to Clipboard\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:36:\"syntax_highlighter_copy_to_clipboard\";s:5:\"value\";s:3:\"yes\";s:8:\"operator\";s:2:\"==\";}}}s:28:\"syntax_highlighter_font_size\";a:7:{s:4:\"type\";s:6:\"slider\";s:5:\"label\";s:9:\"Font Size\";s:11:\"description\";s:52:\"Controls the font size of the syntax highlight code.\";s:2:\"id\";s:28:\"syntax_highlighter_font_size\";s:7:\"default\";s:2:\"14\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:2:\"10\";s:3:\"max\";s:3:\"100\";s:4:\"step\";s:1:\"1\";}}s:35:\"syntax_highlighter_background_color\";a:6:{s:4:\"type\";s:11:\"color-alpha\";s:5:\"label\";s:16:\"Background Color\";s:11:\"description\";s:54:\"Controls the background color for code highlight area.\";s:2:\"id\";s:35:\"syntax_highlighter_background_color\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"default\";s:17:\"var(--awb-color1)\";}s:30:\"syntax_highlighter_border_size\";a:7:{s:4:\"type\";s:6:\"slider\";s:5:\"label\";s:11:\"Border Size\";s:11:\"description\";s:62:\"Controls the border size of the syntax highlighter. In pixels.\";s:2:\"id\";s:30:\"syntax_highlighter_border_size\";s:7:\"default\";s:1:\"1\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}}s:31:\"syntax_highlighter_border_color\";a:7:{s:4:\"type\";s:11:\"color-alpha\";s:5:\"label\";s:12:\"Border Color\";s:11:\"description\";s:26:\"Controls the border color.\";s:2:\"id\";s:31:\"syntax_highlighter_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:30:\"syntax_highlighter_border_size\";s:5:\"value\";s:1:\"0\";s:8:\"operator\";s:2:\"!=\";}}}s:31:\"syntax_highlighter_border_style\";a:8:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:12:\"Border Style\";s:11:\"description\";s:26:\"Controls the border style.\";s:2:\"id\";s:31:\"syntax_highlighter_border_style\";s:7:\"default\";s:5:\"solid\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:30:\"syntax_highlighter_border_size\";s:5:\"value\";s:1:\"0\";s:8:\"operator\";s:2:\"!=\";}}s:7:\"choices\";a:3:{s:5:\"solid\";s:5:\"Solid\";s:6:\"dashed\";s:6:\"Dashed\";s:6:\"dotted\";s:6:\"Dotted\";}}s:25:\"syntax_highlighter_margin\";a:7:{s:5:\"label\";s:7:\"Margins\";s:11:\"description\";s:54:\"Controls the margin around syntax highlighter element.\";s:2:\"id\";s:25:\"syntax_highlighter_margin\";s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:4:\"left\";b:1;s:6:\"bottom\";b:1;s:5:\"right\";b:1;}s:7:\"default\";a:4:{s:3:\"top\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";}}}}s:22:\"tabs_shortcode_section\";a:6:{s:5:\"label\";s:4:\"Tabs\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"tabs_shortcode_section\";s:4:\"icon\";s:14:\"fusiona-folder\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:6:{s:9:\"tabs_info\";a:3:{s:2:\"id\";s:17:\"social_links_info\";s:4:\"type\";s:6:\"custom\";s:11:\"description\";s:200:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> These tab global options control both the tab element and Avada tab widget, however the widget does not utilize icons.</div>\";}s:13:\"tabs_bg_color\";a:7:{s:5:\"label\";s:35:\"Tabs Background Color + Hover Color\";s:11:\"description\";s:71:\"Controls the color of the active tab, tab hover and content background.\";s:2:\"id\";s:13:\"tabs_bg_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:15:\"--tabs_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:19:\"tabs_inactive_color\";a:7:{s:5:\"label\";s:19:\"Tabs Inactive Color\";s:11:\"description\";s:101:\"Controls the color of the inactive tabs as well as the post date box layout for the Avada Tab Widget.\";s:2:\"id\";s:19:\"tabs_inactive_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:21:\"--tabs_inactive_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:17:\"tabs_border_color\";a:7:{s:5:\"label\";s:17:\"Tabs Border Color\";s:11:\"description\";s:37:\"Controls the color of the tab border.\";s:2:\"id\";s:17:\"tabs_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:19:\"--tabs_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"tabs_icon_position\";a:7:{s:5:\"label\";s:13:\"Icon Position\";s:11:\"description\";s:43:\"Choose the position of the icon on the tab.\";s:2:\"id\";s:18:\"tabs_icon_position\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:4:\"left\";s:4:\"Left\";s:5:\"right\";s:5:\"Right\";s:3:\"top\";s:3:\"Top\";}}s:14:\"tabs_icon_size\";a:7:{s:5:\"label\";s:14:\"Tabs Icon Size\";s:11:\"description\";s:25:\"Set the size of the icon.\";s:2:\"id\";s:14:\"tabs_icon_size\";s:7:\"default\";s:2:\"16\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:3:\"150\";s:4:\"step\";s:1:\"1\";}s:4:\"type\";s:6:\"slider\";}}}s:26:\"tagcloud_shortcode_section\";a:6:{s:5:\"label\";s:9:\"Tag Cloud\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:26:\"tagcloud_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:16:\"fusiona-list-alt\";s:6:\"fields\";a:6:{s:11:\"tagcloud_bg\";a:7:{s:5:\"label\";s:21:\"Tags Background Color\";s:11:\"description\";s:40:\"Choose the background color of the tags.\";s:2:\"id\";s:11:\"tagcloud_bg\";s:7:\"default\";s:22:\"rgba(255, 255, 255, 0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:13:\"css_vars_temp\";a:1:{i:0;a:3:{s:4:\"name\";s:11:\"--tag-color\";s:7:\"element\";s:41:\".fusion-tagcloud-element a.tag-cloud-link\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:17:\"tagcloud_bg_hover\";a:7:{s:5:\"label\";s:27:\"Tags Background Hover Color\";s:11:\"description\";s:46:\"Choose the background hover color of the tags.\";s:2:\"id\";s:17:\"tagcloud_bg_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:13:\"css_vars_temp\";a:1:{i:0;a:3:{s:4:\"name\";s:17:\"--tag-color-hover\";s:7:\"element\";s:41:\".fusion-tagcloud-element a.tag-cloud-link\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:14:\"tagcloud_color\";a:7:{s:5:\"label\";s:15:\"Tags Text Color\";s:11:\"description\";s:34:\"Choose the text color of the tags.\";s:2:\"id\";s:14:\"tagcloud_color\";s:7:\"default\";s:97:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:13:\"css_vars_temp\";a:1:{i:0;a:3:{s:4:\"name\";s:16:\"--tag-text-color\";s:7:\"element\";s:41:\".fusion-tagcloud-element a.tag-cloud-link\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:20:\"tagcloud_color_hover\";a:7:{s:5:\"label\";s:21:\"Tags Text Hover Color\";s:11:\"description\";s:40:\"Choose the text hover color of the tags.\";s:2:\"id\";s:20:\"tagcloud_color_hover\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:13:\"css_vars_temp\";a:1:{i:0;a:3:{s:4:\"name\";s:22:\"--tag-text-color-hover\";s:7:\"element\";s:41:\".fusion-tagcloud-element a.tag-cloud-link\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:21:\"tagcloud_border_color\";a:7:{s:5:\"label\";s:17:\"Tags Border Color\";s:11:\"description\";s:35:\"Choose the boder color of the tags.\";s:2:\"id\";s:21:\"tagcloud_border_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:13:\"css_vars_temp\";a:1:{i:0;a:3:{s:4:\"name\";s:18:\"--tag-border-color\";s:7:\"element\";s:41:\".fusion-tagcloud-element a.tag-cloud-link\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:27:\"tagcloud_border_color_hover\";a:7:{s:5:\"label\";s:23:\"Tags Border Hover Color\";s:11:\"description\";s:41:\"Choose the boder hover color of the tags.\";s:2:\"id\";s:27:\"tagcloud_border_color_hover\";s:7:\"default\";s:17:\"var(--awb-color4)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:13:\"css_vars_temp\";a:1:{i:0;a:3:{s:4:\"name\";s:24:\"--tag-border-color-hover\";s:7:\"element\";s:41:\".fusion-tagcloud-element a.tag-cloud-link\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}}}s:29:\"tagline_box_shortcode_section\";a:6:{s:5:\"label\";s:11:\"Tagline Box\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:29:\"tagline_box_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:16:\"fusiona-list-alt\";s:6:\"fields\";a:3:{s:10:\"tagline_bg\";a:6:{s:5:\"label\";s:28:\"Tagline Box Background Color\";s:11:\"description\";s:49:\"Controls the color of the tagline box background.\";s:2:\"id\";s:10:\"tagline_bg\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:20:\"tagline_border_color\";a:6:{s:5:\"label\";s:24:\"Tagline Box Border Color\";s:11:\"description\";s:45:\"Controls the border color of the tagline box.\";s:2:\"id\";s:20:\"tagline_border_color\";s:7:\"default\";s:19:\"rgba(226,226,226,0)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}s:14:\"tagline_margin\";a:7:{s:5:\"label\";s:30:\"Tagline Box Top/Bottom Margins\";s:11:\"description\";s:50:\"Controls the top/bottom margin of the tagline box.\";s:2:\"id\";s:14:\"tagline_margin\";s:7:\"default\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:4:\"type\";s:7:\"spacing\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"top\";b:1;s:6:\"bottom\";b:1;}}}}s:30:\"testimonials_shortcode_section\";a:6:{s:5:\"label\";s:12:\"Testimonials\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:30:\"testimonials_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:15:\"fusiona-bubbles\";s:6:\"fields\";a:4:{s:20:\"testimonial_bg_color\";a:6:{s:5:\"label\";s:28:\"Testimonial Background Color\";s:11:\"description\";s:49:\"Controls the color of the testimonial background.\";s:2:\"id\";s:20:\"testimonial_bg_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:22:\"--testimonial_bg_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:22:\"testimonial_text_color\";a:6:{s:5:\"label\";s:22:\"Testimonial Text Color\";s:11:\"description\";s:43:\"Controls the color of the testimonial text.\";s:2:\"id\";s:22:\"testimonial_text_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--testimonial_text_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:18:\"testimonials_speed\";a:6:{s:5:\"label\";s:18:\"Testimonials Speed\";s:11:\"description\";s:160:\"Controls the speed of the testimonial slider. ex: 1000 = 1 second. <strong>IMPORTANT:</strong> Setting speed to 0 will disable autoplay for testimonials slider.\";s:2:\"id\";s:18:\"testimonials_speed\";s:7:\"default\";s:4:\"4000\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:5:\"20000\";s:4:\"step\";s:3:\"250\";}}s:19:\"testimonials_random\";a:5:{s:5:\"label\";s:12:\"Random Order\";s:11:\"description\";s:50:\"Turn on to display testimonials in a random order.\";s:2:\"id\";s:19:\"testimonials_random\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}}}s:22:\"text_shortcode_section\";a:6:{s:5:\"label\";s:10:\"Text Block\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:22:\"text_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:12:\"fusiona-font\";s:6:\"fields\";a:6:{s:12:\"text_columns\";a:7:{s:5:\"label\";s:24:\"Number Of Inline Columns\";s:11:\"description\";s:278:\"Set the number of columns the text should be broken into.<br />IMPORTANT: This feature is designed to be used for running text, images, dropcaps and other inline content. While some block elements will work, their usage is not recommended and others can easily break the layout.\";s:2:\"id\";s:12:\"text_columns\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"6\";s:4:\"step\";s:1:\"1\";}}s:21:\"text_column_min_width\";a:7:{s:5:\"label\";s:16:\"Column Min Width\";s:11:\"description\";s:230:\"Set the minimum width for each column, this allows your columns to gracefully break into the selected size as the screen width narrows. Leave this option empty if you wish to keep the same amount of columns from desktop to mobile.\";s:2:\"id\";s:21:\"text_column_min_width\";s:7:\"default\";s:5:\"100px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:19:\"text_column_spacing\";a:7:{s:5:\"label\";s:14:\"Column Spacing\";s:11:\"description\";s:59:\"Controls the column spacing between one column to the next.\";s:2:\"id\";s:19:\"text_column_spacing\";s:7:\"default\";s:3:\"2em\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}s:15:\"text_rule_style\";a:8:{s:5:\"label\";s:10:\"Rule Style\";s:11:\"description\";s:108:\"Select the style of the vertical line between columns. Some of the styles depend on the rule size and color.\";s:2:\"id\";s:15:\"text_rule_style\";s:7:\"default\";s:4:\"none\";s:9:\"transport\";s:11:\"postMessage\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{s:4:\"none\";s:4:\"None\";s:5:\"solid\";s:5:\"Solid\";s:6:\"dashed\";s:6:\"Dashed\";s:6:\"dotted\";s:6:\"Dotted\";s:6:\"double\";s:6:\"Double\";s:6:\"groove\";s:6:\"Groove\";s:5:\"ridge\";s:5:\"Ridge\";}s:15:\"soft_dependency\";b:1;}s:14:\"text_rule_size\";a:8:{s:5:\"label\";s:9:\"Rule Size\";s:11:\"description\";s:206:\"Sets the size of the vertical line between columns. The rule is rendered as &quot;below&quot; spacing and columns, so it can span over the gap between columns if it is larger than the column spacing amount.\";s:2:\"id\";s:14:\"text_rule_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:2:\"50\";s:4:\"step\";s:1:\"1\";}s:15:\"soft_dependency\";b:1;}s:15:\"text_rule_color\";a:7:{s:5:\"label\";s:10:\"Rule Color\";s:11:\"description\";s:56:\"Controls the color of the vertical line between columns.\";s:2:\"id\";s:15:\"text_rule_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:15:\"soft_dependency\";b:1;}}}s:23:\"title_shortcode_section\";a:6:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"title_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:9:\"fusiona-H\";s:6:\"fields\";a:5:{s:20:\"title_text_transform\";a:7:{s:5:\"label\";s:14:\"Text Transform\";s:11:\"description\";s:33:\"Choose how the text is displayed.\";s:2:\"id\";s:20:\"title_text_transform\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{s:4:\"none\";s:4:\"None\";s:9:\"uppercase\";s:9:\"Uppercase\";s:9:\"lowercase\";s:9:\"Lowercase\";s:10:\"capitalize\";s:10:\"Capitalize\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:22:\"--title_text_transform\";}}}s:16:\"title_style_type\";a:7:{s:5:\"label\";s:15:\"Title Separator\";s:11:\"description\";s:55:\"Controls the type of title separator that will display.\";s:2:\"id\";s:16:\"title_style_type\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:10:{s:12:\"single solid\";s:12:\"Single Solid\";s:13:\"single dashed\";s:13:\"Single Dashed\";s:13:\"single dotted\";s:13:\"Single Dotted\";s:12:\"double solid\";s:12:\"Double Solid\";s:13:\"double dashed\";s:13:\"Double Dashed\";s:13:\"double dotted\";s:13:\"Double Dotted\";s:15:\"underline solid\";s:15:\"Underline Solid\";s:16:\"underline dashed\";s:16:\"Underline Dashed\";s:16:\"underline dotted\";s:16:\"Underline Dotted\";s:4:\"none\";s:4:\"None\";}}s:18:\"title_border_color\";a:7:{s:5:\"label\";s:21:\"Title Separator Color\";s:11:\"description\";s:43:\"Controls the color of the title separators.\";s:2:\"id\";s:18:\"title_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--title_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:12:\"title_margin\";a:7:{s:5:\"label\";s:13:\"Title Margins\";s:11:\"description\";s:84:\"Controls the margin of the titles. Leave empty to use corresponding heading margins.\";s:2:\"id\";s:12:\"title_margin\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:3:\"0px\";}s:9:\"transport\";s:11:\"postMessage\";s:4:\"type\";s:7:\"spacing\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}}s:19:\"title_margin_mobile\";a:7:{s:5:\"label\";s:20:\"Title Mobile Margins\";s:11:\"description\";s:125:\"Controls the margin of the titles on mobiles. Leave empty together with desktop margins to use corresponding heading margins.\";s:2:\"id\";s:19:\"title_margin_mobile\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"10px\";s:4:\"left\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}}}}s:25:\"toggles_shortcode_section\";a:5:{s:5:\"label\";s:7:\"Toggles\";s:2:\"id\";s:25:\"toggles_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:18:\"fusiona-expand-alt\";s:6:\"fields\";a:18:{s:14:\"accordion_type\";a:6:{s:5:\"label\";s:21:\"Toggles or Accordions\";s:11:\"description\";s:102:\"Toggles allow several items to be open at a time. Accordions only allow one item to be open at a time.\";s:2:\"id\";s:14:\"accordion_type\";s:7:\"default\";s:10:\"accordions\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"toggles\";s:7:\"Toggles\";s:10:\"accordions\";s:10:\"Accordions\";}}s:20:\"accordion_boxed_mode\";a:5:{s:5:\"label\";s:17:\"Toggle Boxed Mode\";s:11:\"description\";s:101:\"Turn on to display items in boxed mode. Toggle divider line must be disabled for this option to work.\";s:2:\"id\";s:20:\"accordion_boxed_mode\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:21:\"accordion_border_size\";a:7:{s:5:\"label\";s:30:\"Toggle Boxed Mode Border Width\";s:11:\"description\";s:44:\"Controls the border size of the toggle item.\";s:2:\"id\";s:21:\"accordion_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:15:\"soft_dependency\";b:1;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}}s:22:\"accordian_border_color\";a:6:{s:5:\"label\";s:30:\"Toggle Boxed Mode Border Color\";s:11:\"description\";s:45:\"Controls the border color of the toggle item.\";s:2:\"id\";s:22:\"accordian_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;}s:26:\"accordian_background_color\";a:6:{s:5:\"label\";s:34:\"Toggle Boxed Mode Background Color\";s:11:\"description\";s:49:\"Controls the background color of the toggle item.\";s:2:\"id\";s:26:\"accordian_background_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;}s:21:\"accordian_hover_color\";a:6:{s:5:\"label\";s:40:\"Toggle Boxed Mode Background Hover Color\";s:11:\"description\";s:55:\"Controls the background hover color of the toggle item.\";s:2:\"id\";s:21:\"accordian_hover_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;}s:22:\"accordion_divider_line\";a:6:{s:5:\"label\";s:19:\"Toggle Divider Line\";s:11:\"description\";s:52:\"Turn on to display a divider line between each item.\";s:2:\"id\";s:22:\"accordion_divider_line\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;}s:23:\"accordion_divider_color\";a:6:{s:5:\"label\";s:18:\"Divider Line Color\";s:11:\"description\";s:42:\"Controls the color of toggle divider line.\";s:2:\"id\";s:23:\"accordion_divider_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--accordion_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:29:\"accordion_divider_hover_color\";a:6:{s:5:\"label\";s:24:\"Divider Line Hover Color\";s:11:\"description\";s:48:\"Controls the hover color of toggle divider line.\";s:2:\"id\";s:29:\"accordion_divider_hover_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--accordion_divider_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"accordion_title_typography\";a:6:{s:2:\"id\";s:26:\"accordion_title_typography\";s:5:\"label\";s:23:\"Toggle Title Typography\";s:11:\"description\";s:44:\"Choose the typography for all toggle titles.\";s:4:\"type\";s:10:\"typography\";s:7:\"choices\";a:4:{s:11:\"font-family\";b:1;s:11:\"font-weight\";b:1;s:9:\"font-size\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:4:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:32:\"var(--awb-typography1-font-size)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}}s:19:\"accordion_icon_size\";a:6:{s:5:\"label\";s:16:\"Toggle Icon Size\";s:11:\"description\";s:25:\"Set the size of the icon.\";s:2:\"id\";s:19:\"accordion_icon_size\";s:7:\"default\";s:2:\"16\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:2:\"40\";s:4:\"step\";s:1:\"1\";}}s:20:\"accordian_icon_color\";a:5:{s:5:\"label\";s:17:\"Toggle Icon Color\";s:11:\"description\";s:41:\"Controls the color of icon in toggle box.\";s:2:\"id\";s:20:\"accordian_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";}s:20:\"accordion_icon_boxed\";a:5:{s:5:\"label\";s:22:\"Toggle Icon Boxed Mode\";s:11:\"description\";s:45:\"Turn on to display toggle icon in boxed mode.\";s:2:\"id\";s:20:\"accordion_icon_boxed\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:24:\"accordian_inactive_color\";a:7:{s:5:\"label\";s:30:\"Toggle Icon Inactive Box Color\";s:11:\"description\";s:46:\"Controls the color of the inactive toggle box.\";s:2:\"id\";s:24:\"accordian_inactive_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--accordian_inactive_color\";}}}s:28:\"accordion_content_typography\";a:6:{s:2:\"id\";s:28:\"accordion_content_typography\";s:5:\"label\";s:25:\"Toggle Content Typography\";s:11:\"description\";s:45:\"Choose the typography for all toggle content.\";s:4:\"type\";s:10:\"typography\";s:7:\"choices\";a:4:{s:11:\"font-family\";b:1;s:11:\"font-weight\";b:1;s:9:\"font-size\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:4:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}}s:22:\"accordian_active_color\";a:6:{s:5:\"label\";s:25:\"Toggle Hover Accent Color\";s:11:\"description\";s:58:\"Controls the accent color on hover for icon box and title.\";s:2:\"id\";s:22:\"accordian_active_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--accordian_active_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:29:\"accordian_active_accent_color\";a:4:{s:5:\"label\";s:26:\"Toggle Active Accent Color\";s:11:\"description\";s:59:\"Controls the accent color on active for icon box and title.\";s:2:\"id\";s:29:\"accordian_active_accent_color\";s:4:\"type\";s:11:\"color-alpha\";}s:20:\"accordion_icon_align\";a:6:{s:5:\"label\";s:21:\"Toggle Icon Alignment\";s:11:\"description\";s:38:\"Controls the alignment of toggle icon.\";s:2:\"id\";s:20:\"accordion_icon_align\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"left\";s:4:\"Left\";s:5:\"right\";s:5:\"Right\";}}}}s:28:\"user_login_shortcode_section\";a:6:{s:5:\"label\";s:10:\"User Login\";s:2:\"id\";s:28:\"user_login_shortcode_section\";s:11:\"description\";s:0:\"\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:24:\"fusiona-calendar-check-o\";s:6:\"fields\";a:6:{s:21:\"user_login_text_align\";a:7:{s:5:\"label\";s:21:\"User Login Text Align\";s:11:\"description\";s:160:\"Controls the alignment of all user login content. &quot;Text Flow&quot; follows the default text align of the site. &quot;Center&quot; will center all elements.\";s:2:\"id\";s:21:\"user_login_text_align\";s:7:\"default\";s:6:\"center\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:8:\"textflow\";s:9:\"Text Flow\";s:6:\"center\";s:6:\"Center\";}}s:28:\"user_login_form_field_layout\";a:7:{s:5:\"label\";s:28:\"User Login Form Field Layout\";s:11:\"description\";s:173:\"Choose if form fields should be stacked and full width, or if they should be floated. <strong>IMPORTANT:</strong> This option only works for the login and the register form.\";s:2:\"id\";s:28:\"user_login_form_field_layout\";s:7:\"default\";s:7:\"stacked\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:7:\"stacked\";s:7:\"Stacked\";s:7:\"floated\";s:7:\"Floated\";}}s:27:\"user_login_form_show_labels\";a:7:{s:5:\"label\";s:22:\"User Login Show Labels\";s:11:\"description\";s:50:\"Controls if the form field labels should be shown.\";s:2:\"id\";s:27:\"user_login_form_show_labels\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:33:\"user_login_form_show_placeholders\";a:7:{s:5:\"label\";s:28:\"User Login Show Placeholders\";s:11:\"description\";s:56:\"Controls if the form field placeholders should be shown.\";s:2:\"id\";s:33:\"user_login_form_show_placeholders\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:32:\"user_login_form_show_remember_me\";a:7:{s:5:\"label\";s:36:\"User Login Show Remember Me Checkbox\";s:11:\"description\";s:75:\"Controls if the remenber me checkbox should be displayed in the login form.\";s:2:\"id\";s:32:\"user_login_form_show_remember_me\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:32:\"user_login_form_background_color\";a:6:{s:5:\"label\";s:32:\"User Login Form Background Color\";s:11:\"description\";s:42:\"Controls the color of the form background.\";s:2:\"id\";s:32:\"user_login_form_background_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:23:\"video_shortcode_section\";a:7:{s:5:\"label\";s:5:\"Video\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"video_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"icon\";s:13:\"fusiona-video\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:3:{s:15:\"video_max_width\";a:6:{s:5:\"label\";s:13:\"Maximum Width\";s:11:\"description\";s:46:\"Set the maximum width using a valid CSS value.\";s:2:\"id\";s:15:\"video_max_width\";s:7:\"default\";s:4:\"100%\";s:4:\"type\";s:4:\"text\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--fusion-video-max-width-default\";s:7:\"element\";s:4:\"body\";}}}s:14:\"video_controls\";a:6:{s:5:\"label\";s:14:\"Video Controls\";s:11:\"description\";s:55:\"Controls whether the video controls should show or not.\";s:2:\"id\";s:14:\"video_controls\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:3:\"yes\";s:7:\"choices\";a:2:{s:3:\"yes\";s:4:\"Show\";s:2:\"no\";s:4:\"Hide\";}}s:13:\"video_preload\";a:6:{s:5:\"label\";s:16:\"Video Preloading\";s:11:\"description\";s:203:\"Controls how / if the browser should preload the video. Choose &quot;Metadata&quot; if only the video metadata should be preloaded on page load or &quot;Auto&quot; to preload the full video on page load.\";s:2:\"id\";s:13:\"video_preload\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:4:\"auto\";s:7:\"choices\";a:3:{s:4:\"auto\";s:4:\"Auto\";s:8:\"metadata\";s:8:\"Metadata\";s:4:\"none\";s:4:\"None\";}}}}s:28:\"visibility_shortcode_section\";a:6:{s:5:\"label\";s:23:\"Visibility Size Options\";s:2:\"id\";s:28:\"visibility_shortcode_section\";s:11:\"description\";s:0:\"\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:14:\"fusiona-mobile\";s:6:\"fields\";a:1:{s:16:\"visibility_moved\";a:4:{s:2:\"id\";s:16:\"visibility_moved\";s:5:\"label\";s:0:\"\";s:4:\"type\";s:6:\"custom\";s:11:\"description\";s:235:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> You can now find the visibility breakpoints on the main <a href=\"#\" class=\"fusion-quick-option\" data-fusion-option=\"visibility_small\">responsive tab</a>.</div>\";}}}s:29:\"widget_area_shortcode_section\";a:6:{s:5:\"label\";s:11:\"Widget Area\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:29:\"widget_area_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:15:\"fusiona-sidebar\";s:6:\"fields\";a:2:{s:22:\"widget_area_title_size\";a:6:{s:5:\"label\";s:17:\"Widget Title Size\";s:11:\"description\";s:46:\"Controls the size of widget titles. In pixels.\";s:2:\"id\";s:22:\"widget_area_title_size\";s:7:\"default\";s:4:\"24px\";s:4:\"type\";s:9:\"dimension\";s:9:\"transport\";s:11:\"postMessage\";}s:23:\"widget_area_title_color\";a:6:{s:5:\"label\";s:18:\"Widget Title Color\";s:11:\"description\";s:36:\"Controls the color of widget titles.\";s:2:\"id\";s:23:\"widget_area_title_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}}','no'),(16612,'_site_transient_timeout_community-events-86415f5fe1f20052eea969a154a4e08d','1645761903','no'),(16613,'_site_transient_community-events-86415f5fe1f20052eea969a154a4e08d','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"37.186.169.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:26:\"WordCamp Prague 2022 Live!\";s:3:\"url\";s:33:\"https://prague.wordcamp.org/2022/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2022-02-26 09:15:00\";s:8:\"end_date\";s:19:\"2022-02-26 09:15:00\";s:20:\"start_unix_timestamp\";i:1645863300;s:18:\"end_unix_timestamp\";i:1645863300;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"CZ\";s:8:\"latitude\";d:50.0755381;s:9:\"longitude\";d:14.4378005;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:24:\"WordCamp Vienna, Austria\";s:3:\"url\";s:33:\"https://vienna.wordcamp.org/2022/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2022-04-23 08:00:00\";s:8:\"end_date\";s:19:\"2022-04-23 08:00:00\";s:20:\"start_unix_timestamp\";i:1650693600;s:18:\"end_unix_timestamp\";i:1650693600;s:8:\"location\";a:4:{s:8:\"location\";s:15:\"Vienna, Austria\";s:7:\"country\";s:2:\"AT\";s:8:\"latitude\";d:48.2129431;s:9:\"longitude\";d:16.3608799;}}}}','no'),(16614,'_transient_timeout_feed_f014c832422b67a4cec692b17aa40756','1645761904','no'),(16615,'_transient_feed_f014c832422b67a4cec692b17aa40756','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n  \n      \n      \n      \n      \n      \n      \n      \n      \n      \n              \n              \n              \n              \n              \n              \n              \n              \n              \n      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Releases | WordPress.org Deutsch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://de.wordpress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"WordPress auf Deutsch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Feb 2022 08:31:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"de-DE\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.0-alpha-52791\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:57:\"\n               \n              \n              \n              \n              \n                              \n              \n\n                                    \n                                                                              \n                                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 5.9.1 Wartungs-Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://de.wordpress.org/2022/02/wordpress-5-9-1-wartungs-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Feb 2022 19:31:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=5185\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:389:\"Am 22. Februar 2022 wurde WordPress 5.9.1 veröffentlicht. Dabei handelt es sich um einen Wartungs-Release, welcher 82 Fehler im Core als auch im Block-Editor schließt. Für eine optimale Nutzung von WordPress 5.9 wird empfohlen, dieses Update einzuspielen. Ihr könnt das Update auf WordPress 5.9.1 über das Backend unter Dashboard › Aktualisierungen anstoßen oder euch die [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Kevin Kyburz (@swissky)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7513:\"<p>Am 22. Februar 2022 wurde WordPress 5.9.1 veröffentlicht. Dabei handelt es sich um einen Wartungs-Release, welcher 82 Fehler im Core als auch im Block-Editor schließt. Für eine optimale Nutzung von WordPress 5.9 wird empfohlen, dieses Update einzuspielen.</p>\n<p>Ihr könnt das Update auf WordPress 5.9.1 über das Backend unter Dashboard › Aktualisierungen anstoßen oder euch die Datei von WordPress.org <a href=\"https://wordpress.org/wordpress-5.9.1.zip\">herunterladen</a>. Wenn eure Website automatische Hintergrundupdates unterstützt, könnte die neue Version bereits installiert sein.</p>\n<p>Die nächste Hauptversion wird die <a href=\"https://make.wordpress.org/core/6.0/\">Version 6.0</a> sein. <span id=\"more-5185\"></span> Detaillierte Informationen zu den Änderungen gibt es in der <a href=\"https://make.wordpress.org/core/2022/02/16/wordpress-5-9-1-rc-1/\">Liste aller Änderungen auf Trac</a> oder auf der <a href=\"https://wordpress.org/support/wordpress-version/version-5-9-1/\">5.9.1-HelpHub-Seite</a>.&nbsp;</p>\n<h2>Danksagungen</h2>\n<p>Der 5.9.1-Release wurde von <a href=\"https://profiles.wordpress.org/desrosj/\">Jb Audras</a> und <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> geleitet.&nbsp;Ein spezieller Dank geht an <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a>, welcher das Ganze überwacht hat.&nbsp;</p>\n<p>Auch ein großes Danke an alle anderen Personen, welche mitgeholfen haben, den WordPress-5.9.1-Release zu ermöglichen:</p>\n<p><a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/madeinua/\">ArteMa</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/blogaid/\">BlogAid</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/azouamauriac/\">Flinim Asso</a>, <a href=\"https://profiles.wordpress.org/gadhiyaravi/\">gadhiyaravi</a>, <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/ianatkins/\">ianatkins</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/itsamoreh/\">itsamoreh</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a>, <a href=\"https://profiles.wordpress.org/pyrobd/\">Lukman Nakib</a>, <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/pls78/\">Paolo L. Scala</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/malinevskiy/\">Pavlo</a>, <a href=\"https://profiles.wordpress.org/petaryoast/\">Petar Ratković</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/mahype/\">Sven Wagener</a>, <a href=\"https://profiles.wordpress.org/staatic/\">Team Staatic</a>, <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat AbhaNonStopNewsUK</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/antonynz/\">wpcharged</a>, <a href=\"https://profiles.wordpress.org/wpsoul/\">wpsoul</a>, <a href=\"https://profiles.wordpress.org/dolphingg/\">Yunus Ertuğrul</a>&nbsp;und <a href=\"https://profiles.wordpress.org/rafiahmedd/\">Rafi Ahmed</a>.</p>\n<p>Danke auch an <a href=\"https://profiles.wordpress.org/estelaris/\">@estelaris</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">@pbiron</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">@ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/bph/\">@bph</a>, <a href=\"https://profiles.wordpress.org/abhanonstopnewsuk/\">@abhanonstopnewsuk</a> und <a href=\"https://profiles.wordpress.org/threadi/\">@threadi</a>, welche beim Testen des Release-Paketes geholfen haben.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n         \n              \n              \n              \n              \n                              \n              \n              \n\n                                    \n                                                                              \n                                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"WordPress 5.9 »Joséphine«\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://de.wordpress.org/2022/01/wordpress-5-9/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jan 2022 19:49:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Allgemein\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=5161\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:453:\"Am 25. Januar wurde WordPress 5.9 »Joséphine« veröffentlicht, benannt nach der Jazz-Sängerin Joséphine Baker. Die neue Version bringt unter anderem Full-Site-Editing mit, über das Websites im Backend komplett angepasst werden können. Twenty Twenty-Two und Full-Site-Editing WordPress 5.9 bringt mit Twenty Twenty-Two ein sogenanntes Block-Theme als neues Standard-Theme mit. Block-Themes unterscheiden sich stark von bisherigen Themes, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Florian Brinkmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:57596:\"\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://de.wordpress.org/files/2022/01/5-9-inline-v2-1024x694.png\" alt=\"Illustration einer Schallplatte, die halb aus der Hülle schaut, mit einem Foto von Joséphine Baker auf dem Cover und »WordPress 5.9 Joséphine – Code is poetry«.\" class=\"wp-image-5171\" width=\"840\" height=\"569\" srcset=\"https://de.wordpress.org/files/2022/01/5-9-inline-v2-1024x694.png 1024w, https://de.wordpress.org/files/2022/01/5-9-inline-v2-300x203.png 300w, https://de.wordpress.org/files/2022/01/5-9-inline-v2-768x521.png 768w, https://de.wordpress.org/files/2022/01/5-9-inline-v2-1536x1042.png 1536w, https://de.wordpress.org/files/2022/01/5-9-inline-v2-2048x1389.png 2048w\" sizes=\"(max-width: 840px) 100vw, 840px\" /></figure>\n\n\n\n<p>Am 25. Januar wurde WordPress 5.9 »Joséphine« veröffentlicht, benannt nach der Jazz-Sängerin Joséphine Baker. Die neue Version bringt unter anderem Full-Site-Editing mit, über das Websites im Backend komplett angepasst werden können.</p>\n\n\n\n<span id=\"more-5161\"></span>\n\n\n\n<h2 id=\"twenty-twenty-two-und-full-site-editing\">Twenty Twenty-Two und Full-Site-Editing</h2>\n\n\n\n<p>WordPress 5.9 bringt mit Twenty Twenty-Two ein sogenanntes <a href=\"https://wordpress.org/support/article/block-themes/\">Block-Theme</a> als neues Standard-Theme mit. Block-Themes unterscheiden sich stark von bisherigen Themes, weil die Templates komplett aus Blöcken zusammengesetzt sind.</p>\n\n\n\n<p>Ein solches Block-Theme ist die Voraussetzung dafür, den neuen <a href=\"https://wordpress.org/support/article/site-editor/\">Site-Editor</a> nutzen zu können, mit dem Templates direkt im Backend bearbeitet und auch Templates erstellt werden können.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\">\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://de.wordpress.org/files/2022/01/5-9-release-1.png\"><img loading=\"lazy\" data-id=\"5169\"  src=\"https://de.wordpress.org/files/2022/01/5-9-release-1-1024x768.png\" alt=\"Screenshot aus dem Block-Editor mit aktiviertem Twenty-Twenty-Two-Theme, bei der Bearbeitung eines Abfrage-Loop-Blocks.\" class=\"wp-image-5169\" width=\"840\" height=\"630\" srcset=\"https://de.wordpress.org/files/2022/01/5-9-release-1-1024x768.png 1024w, https://de.wordpress.org/files/2022/01/5-9-release-1-300x225.png 300w, https://de.wordpress.org/files/2022/01/5-9-release-1-768x576.png 768w, https://de.wordpress.org/files/2022/01/5-9-release-1-440x330.png 440w, https://de.wordpress.org/files/2022/01/5-9-release-1.png 1204w\" sizes=\"(max-width: 840px) 100vw, 840px\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://de.wordpress.org/files/2022/01/5-9-release-2.png\"><img loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"5168\"  src=\"https://de.wordpress.org/files/2022/01/5-9-release-2-1024x768.png\" alt=\"Screenshot der Stile-Sidebar im Site-Editor.\" class=\"wp-image-5168\" srcset=\"https://de.wordpress.org/files/2022/01/5-9-release-2-1024x768.png 1024w, https://de.wordpress.org/files/2022/01/5-9-release-2-300x225.png 300w, https://de.wordpress.org/files/2022/01/5-9-release-2-768x576.png 768w, https://de.wordpress.org/files/2022/01/5-9-release-2-440x330.png 440w, https://de.wordpress.org/files/2022/01/5-9-release-2.png 1204w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n</figure>\n\n\n\n<p>Wenn ein Block-Theme aktiv ist, wird der Customizer aus dem Admin-Menü entfernt, weil Stil-Änderungen über das Stile-Interface im Site-Editor gemacht werden können – wenn Plugins den Customizer benötigen, ist er aber wieder sichtbar. Im Site-Editor kann beispielsweise eine eigene Farbpalette erstellt werden, die entweder für alle oder nur bestimmte Blöcke vorhanden ist.</p>\n\n\n\n<p>Um Menüs für die Website im Site-Editor zu erstellen und zu verwalten, gibt es einen neuen Navigations-Block, der die Menüs als Inhaltstyp in der Datenbank speichert.</p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"https://de.wordpress.org/files/2022/01/5-9-release-3-1024x768.png\" alt=\"Screenshot eines Navigations-Blocks mit der Block-Sidebar und den Block-Optionen.\" class=\"wp-image-5167\" width=\"840\" height=\"630\" srcset=\"https://de.wordpress.org/files/2022/01/5-9-release-3-1024x768.png 1024w, https://de.wordpress.org/files/2022/01/5-9-release-3-300x225.png 300w, https://de.wordpress.org/files/2022/01/5-9-release-3-768x576.png 768w, https://de.wordpress.org/files/2022/01/5-9-release-3-440x330.png 440w, https://de.wordpress.org/files/2022/01/5-9-release-3.png 1204w\" sizes=\"(max-width: 840px) 100vw, 840px\" /></figure>\n\n\n\n<h2 id=\"weitere-verbesserungen-und-updates\">Weitere Verbesserungen und Updates</h2>\n\n\n\n<p>WordPress 5.9 bringt neue Typografie-Werkzeuge, Optionen für flexible Layouts und ermöglicht mehr Kontrolle über Details wie Abstände, Rahmen und mehr.</p>\n\n\n\n<p>Das <a href=\"https://de.wordpress.org/patterns/\">WordPress-Vorlagen-Verzeichnis</a> ist Heimat einer großen Auswahl von Block-Vorlagen, die ihr einfach direkt auf auf eurer Website nutzen könnt.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://de.wordpress.org/files/2022/01/5-9-release-5.png\"><img loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"5166\"  src=\"https://de.wordpress.org/files/2022/01/5-9-release-5-1024x768.png\" alt=\"Screenshot des Sidebar-Panels mit den ganzen verfügbaren Textoptionen wie Schriftgröße, Schriftschnitt, Zeichenabstand und Zeilenabstand.\" class=\"wp-image-5166\" srcset=\"https://de.wordpress.org/files/2022/01/5-9-release-5-1024x768.png 1024w, https://de.wordpress.org/files/2022/01/5-9-release-5-300x225.png 300w, https://de.wordpress.org/files/2022/01/5-9-release-5-768x576.png 768w, https://de.wordpress.org/files/2022/01/5-9-release-5-440x330.png 440w, https://de.wordpress.org/files/2022/01/5-9-release-5.png 1204w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://de.wordpress.org/files/2022/01/5-9-release-4.png\"><img loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"5165\"  src=\"https://de.wordpress.org/files/2022/01/5-9-release-4-1024x768.png\" alt=\"Screenshot des Vorlagen-Verzeichnisses.\" class=\"wp-image-5165\" srcset=\"https://de.wordpress.org/files/2022/01/5-9-release-4-1024x768.png 1024w, https://de.wordpress.org/files/2022/01/5-9-release-4-300x225.png 300w, https://de.wordpress.org/files/2022/01/5-9-release-4-768x576.png 768w, https://de.wordpress.org/files/2022/01/5-9-release-4-440x330.png 440w, https://de.wordpress.org/files/2022/01/5-9-release-4.png 1204w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n</figure>\n\n\n\n<p>Die Listenansicht der eingefügten Blöcke wurde überarbeitet, jetzt können Blöcke direkt innerhalb der Liste umsortiert und eingefügt werden, sodass es einfach möglich ist, sie genau da einzufügen, wo man möchte. Bei verschachtelten Blöcken lassen sich die Zweige in der Listenansicht ein- und ausklappen.</p>\n\n\n\n<p>Der Galerie-Block wurde überarbeitet und ist jetzt so gebaut, dass er aus mehreren Bild-Blöcken besteht. So können alle Optionen des Bild-Blocks für jedes einzelne Bild in einer Galerie genutzt werden.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://de.wordpress.org/files/2022/01/5-9-release-6.png\"><img loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"5170\"  src=\"https://de.wordpress.org/files/2022/01/5-9-release-6-1024x768.png\" alt=\"Screenshot von der Block-Liste, bei der gerade per Drag-&amp;-Drop ein Absatz-Block bewegt wird.\" class=\"wp-image-5170\" srcset=\"https://de.wordpress.org/files/2022/01/5-9-release-6-1024x768.png 1024w, https://de.wordpress.org/files/2022/01/5-9-release-6-300x225.png 300w, https://de.wordpress.org/files/2022/01/5-9-release-6-768x576.png 768w, https://de.wordpress.org/files/2022/01/5-9-release-6-440x330.png 440w, https://de.wordpress.org/files/2022/01/5-9-release-6.png 1204w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://de.wordpress.org/files/2022/01/5-9-release-7.png\"><img loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"5164\"  src=\"https://de.wordpress.org/files/2022/01/5-9-release-7-1024x768.png\" alt=\"Screenshot eines Galerie-Blocks, bei dem ein Bild ausgewählt ist.\" class=\"wp-image-5164\" srcset=\"https://de.wordpress.org/files/2022/01/5-9-release-7-1024x768.png 1024w, https://de.wordpress.org/files/2022/01/5-9-release-7-300x225.png 300w, https://de.wordpress.org/files/2022/01/5-9-release-7-768x576.png 768w, https://de.wordpress.org/files/2022/01/5-9-release-7-440x330.png 440w, https://de.wordpress.org/files/2022/01/5-9-release-7.png 1204w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n</figure>\n\n\n\n<h2 id=\"wordpress-5-9-fur-entwicklerinnen-und-entwickler\">WordPress 5.9 für Entwicklerinnen und Entwickler</h2>\n\n\n\n<h3 id=\"theme-json\"><a href=\"https://make.wordpress.org/core/2022/01/04/block-themes-a-new-way-to-build-themes-in-wordpress-5-9/\">theme.json</a></h3>\n\n\n\n<p>Die theme.json wurde um weitere Optionen erweitert und WordPress 5.9 unterstützt theme.json für Child-Themes.</p>\n\n\n\n<h3 id=\"block-level-locking\"><a href=\"https://make.wordpress.org/core/2022/01/08/locking-blocks-in-wordpress-5-9/\">Block-Level-Locking</a></h3>\n\n\n\n<p>Blöcke können mit einem Lock versehen werden, sodass sie beispielsweise nicht entfernt werden können, entweder standardmäßig für einen Block über die block.json oder für Blöcke in Block-Vorlagen.</p>\n\n\n\n<h3 id=\"mehrere-stylesheets-pro-block\"><a href=\"https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/\">Mehrere Stylesheets pro Block</a></h3>\n\n\n\n<p>Es ist jetzt möglich, in der block.json mehrere Stylesheets für einen Block festzulegen und Stylesheets zu laden, die vorher bereits registriert wurden. Außerdem können Themes statt eines großen Stylesheets kleinere Stylesheets bereitstellen, die jeweils nur die Styles für einen Block enthalten und nur geladen werden, wenn der Block vorhanden ist.</p>\n\n\n\n<h3 id=\"uberarbeiteter-galerie-block\"><a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">Überarbeiteter Galerie-Block</a></h3>\n\n\n\n<p>Wie oben erwähnt wurde der Galerie-Block überarbeitet, sodass die Galerie-Bilder über normale Bild-Blöcke dargestellt werden. Wenn ihr ein Plugin oder Theme entwickelt habt, das mit dem Galerie-Block arbeitet, solltet ihr euch den verlinkten Beitrag durchlesen.</p>\n\n\n\n<h3 id=\"field-guide-fur-mehr-details\">Field-Guide für mehr Details</h3>\n\n\n\n<p>Im <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\">WordPress-5.9-Field-Guide</a> gibt es eine Liste aller Beiträge, die detaillierte Informationen zu den Änderungen enthalten, die für Entwicklerinnen und Entwickler interessant sein könnten.</p>\n\n\n\n<h2 id=\"das-team\">Das Team</h2>\n\n\n\n<p>Der WordPress-5.9-Release wurde von <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> geleitet, wobei er von dem folgenden Release-Team unterstützt wurde:</p>\n\n\n\n<ul><li>Release-Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li><li>Core-Tech- und Release-Coordinator: <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a></li><li>Triage-Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a> und <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a></li><li>Editor-Tech: <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> und <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a></li><li>Theme-Leads: <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> und <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a></li><li>Technical-Writer: <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a></li><li>Documentation-Leads: <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a> und <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a></li><li>Marketing- &amp; Communications-Leads: <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> und <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a></li><li>Test-Leads: <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> und <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a></li></ul>\n\n\n\n<p>WordPress 5.9 spiegelt die harte Arbeit von 624 freiwilligen Contributors wider. Es wurde an <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">370 Trac-Tickets</a> und mehr als <a href=\"https://github.com/WordPress/gutenberg/compare/v10.8.0...v11.9.0\">1.900 Pull-Requests auf GitHub</a> gearbeitet.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/2linctools/\">2linctools</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a>, <a href=\"https://profiles.wordpress.org/abesell132/\">abesell132</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a>, <a href=\"https://profiles.wordpress.org/wpmudev-support8/\">Adam &#8211; WPMU DEV Support</a>, <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a>, <a href=\"https://profiles.wordpress.org/adam3128/\">Adam Morgan</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/aadilali/\">Adil Ali</a>, <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a>, <a href=\"https://profiles.wordpress.org/aezazshekh/\">Aezaz Shekh</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a>, <a href=\"https://profiles.wordpress.org/ajotka/\">ajotka</a>, <a href=\"https://profiles.wordpress.org/soniakash/\">Akash Soni</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexvorn2/\">Alexandru Vornicescu</a>, <a href=\"https://profiles.wordpress.org/alexeydemidov/\">alexeydemidov</a>, <a href=\"https://profiles.wordpress.org/alexislloyd/\">Alexis Lloyd</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/algala/\">AlGala</a>, <a href=\"https://profiles.wordpress.org/firewatch/\">allilevine</a>, <a href=\"https://profiles.wordpress.org/almendron/\">almendron</a>, <a href=\"https://profiles.wordpress.org/amandariu/\">Amanda Riu</a>, <a href=\"https://profiles.wordpress.org/anandau14/\">Anand Upadhyay</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">André</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/anevins/\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/andy-schmidt/\">Andy Schmidt</a>, <a href=\"https://profiles.wordpress.org/andynick/\">andynick</a>, <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/anjanavasan/\">Anjana Vasan</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/anthonyeden/\">Anthony Eden</a>, <a href=\"https://profiles.wordpress.org/paranoia1906/\">Anthony Ledesma</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"https://profiles.wordpress.org/arena/\">arena</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a>, <a href=\"https://profiles.wordpress.org/ashfame/\">Ashfame</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/baelx/\">baelx</a>, <a href=\"https://profiles.wordpress.org/allerune/\">Bartlomiej</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/beaulebens/\">Beau Lebens</a>, <a href=\"https://profiles.wordpress.org/bedas/\">Beda</a>, <a href=\"https://profiles.wordpress.org/utz119/\">Benachi</a>, <a href=\"https://profiles.wordpress.org/benitolopez/\">benitolopez</a>, <a href=\"https://profiles.wordpress.org/rainbowgeek/\">Benjamin Denis</a>, <a href=\"https://profiles.wordpress.org/benjamingosset/\">Benjamin Gosset</a>, <a href=\"https://profiles.wordpress.org/benjaminanakena/\">benjamin.anakena</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bgardner/\">bgardner</a>, <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a>, <a href=\"https://profiles.wordpress.org/binarykitten/\">BinaryKitten</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a>, <a href=\"https://profiles.wordpress.org/bradparbs/\">Brad Parbs</a>, <a href=\"https://profiles.wordpress.org/bradleyt/\">Bradley Taylor</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bravokeyl/\">bravokeyl</a>, <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a>, <a href=\"https://profiles.wordpress.org/rzen/\">Brian Richards</a>, <a href=\"https://profiles.wordpress.org/bronsonquick/\">bronsonquick</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a>, <a href=\"https://profiles.wordpress.org/brylie/\">Brylie Christopher Oxley</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/calebwoodbridge/\">calebwoodbridge</a>, <a href=\"https://profiles.wordpress.org/carepsules/\">carepsules</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/vefusion/\">Carlos Garcia</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/cdyerkes/\">cdyerkes</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">Ceyhun Ozugur</a>, <a href=\"https://profiles.wordpress.org/shireling/\">Chad</a>, <a href=\"https://profiles.wordpress.org/chiaki/\">Chiaki</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/cklosows/\">Chris Klosowski</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/christianztamayo/\">Christian Tamayo</a>, <a href=\"https://profiles.wordpress.org/amethystanswers/\">Christina Workman</a>, <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a>, <a href=\"https://profiles.wordpress.org/clucasrowlands/\">clucasrowlands</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/callye/\">Collieth Clarke</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreyw/\">Corey</a>, <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a>, <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a>, <a href=\"https://profiles.wordpress.org/craigfrancis/\">craigfrancis</a>, <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">critterverse</a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">Dávid Szabó</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danielpost/\">Daniel Post</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/chthnc/\">Daniel Shaw</a>, <a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a>, <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a>, <a href=\"https://profiles.wordpress.org/daschmi/\">Daschmi</a>, <a href=\"https://profiles.wordpress.org/datagutten/\">datagutten</a>, <a href=\"https://profiles.wordpress.org/datainterlock/\">datainterlock</a>, <a href=\"https://profiles.wordpress.org/davecpage/\">Dave Page</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a>, <a href=\"https://profiles.wordpress.org/dgwyer/\">David Gwyer</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davidkryzaniak/\">David Kryzaniak</a>, <a href=\"https://profiles.wordpress.org/davidmosterd/\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/daviedr/\">David Rozando</a>, <a href=\"https://profiles.wordpress.org/dryanpress/\">David Ryan</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a>, <a href=\"https://profiles.wordpress.org/devutpol/\">Deb Nath Utpol</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a>, <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dhanendran/\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/dhusakovic/\">dhusakovic</a>, <a href=\"https://profiles.wordpress.org/diedeexterkate/\">DiedeExterkate</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dlt101/\">dlt101</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/codezen8/\">Donna Botti</a>, <a href=\"https://profiles.wordpress.org/dontgo2sleep/\">dontgo2sleep</a>, <a href=\"https://profiles.wordpress.org/dougwollison/\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/dpegasusm/\">dpegasusm</a>, <a href=\"https://profiles.wordpress.org/raubvogel/\">Dr. Ronny Harbich</a>, <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/drosmog/\">drosmog</a>, <a href=\"https://profiles.wordpress.org/dustinrue/\">dustinrue</a>, <a href=\"https://profiles.wordpress.org/seedsca/\">ecotechie</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/ekojr/\">EkoJR</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a>, <a href=\"https://profiles.wordpress.org/empatogen/\">empatogen</a>, <a href=\"https://profiles.wordpress.org/enchiridion/\">Enchiridion</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/erayalakese/\">erayalakese</a>, <a href=\"https://profiles.wordpress.org/teachlynx/\">Eric Malalel</a>, <a href=\"https://profiles.wordpress.org/ethitter/\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/etoledo/\">etoledo</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a>, <a href=\"https://profiles.wordpress.org/fedepia/\">fedepia</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/felipeloureirosantos/\">Felipe Santos</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/fpcsjames/\">FPCSJames</a>, <a href=\"https://profiles.wordpress.org/piewp/\">fperdaan</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/fcolombo/\">Francesco</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gazchap/\">gazchap</a>, <a href=\"https://profiles.wordpress.org/generosus/\">generosus</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a>, <a href=\"https://profiles.wordpress.org/gilbitron/\">Gilbert Pellegrom</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a>, <a href=\"https://profiles.wordpress.org/goldsounds/\">goldsounds</a>, <a href=\"https://profiles.wordpress.org/gkloveweb/\">Govind</a>, <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a>, <a href=\"https://profiles.wordpress.org/gregrickaby/\">Greg Rickaby</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/hansjovisyoast/\">Hans-Christiaan Braun</a>, <a href=\"https://profiles.wordpress.org/haosun/\">haosun</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a>, <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/herbmiller/\">herbmiller</a>, <a href=\"https://profiles.wordpress.org/hermpheus/\">Herm Martini</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hilayt24/\">hilayt24</a>, <a href=\"https://profiles.wordpress.org/hirofumi2012/\">hirofumi2012</a>, <a href=\"https://profiles.wordpress.org/hitendra-chopda/\">Hitendra Chopda</a>, <a href=\"https://profiles.wordpress.org/h71/\">Hossein Farahani</a>, <a href=\"https://profiles.wordpress.org/htmgarcia/\">htmgarcia</a>, <a href=\"https://profiles.wordpress.org/hudson-atwell/\">Hudson Atwell</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianhayes94/\">ianhayes94</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a>, <a href=\"https://profiles.wordpress.org/ibenic/\">Igor Benic</a>, <a href=\"https://profiles.wordpress.org/ilovecats7/\">ilovecats7</a>, <a href=\"https://profiles.wordpress.org/infected/\">infected</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/iluy/\">Isaac</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ismaeld/\">ismaeld</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jackreichert/\">Jack Reichert</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jakubtyrcha/\">jakub.tyrcha</a>, <a href=\"https://profiles.wordpress.org/mcjambi/\">Jam Viet</a>, <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/janwoostendorp/\">janw.oostendorp</a>, <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a>, <a href=\"https://profiles.wordpress.org/evermail/\">Jason R. Johnston</a>, <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a>, <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a>, <a href=\"https://profiles.wordpress.org/jayupadhyay01/\">Jay Upadhyay</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/teucrium/\">Jean-Philippe</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jeremyescott/\">Jeremy Scott</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/amieiro/\">Jesús Amieiro</a>, <a href=\"https://profiles.wordpress.org/engelen/\">Jesper van Engelen</a>, <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/jigneshnakrani/\">Jignesh Nakrani</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joegasper/\">joegasper</a>, <a href=\"https://profiles.wordpress.org/joelcj91/\">Joel James</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnillo/\">John Espiritu</a>, <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/zenithcity/\">john zenith</a>, <a href=\"https://profiles.wordpress.org/lwangaman/\">JohnRDOrazio (CLPTE)</a>, <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a>, <a href=\"https://profiles.wordpress.org/josephdickson/\">Joseph Dickson</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/juanruitina/\">Juan Ruitiña</a>, <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a>, <a href=\"https://profiles.wordpress.org/juhise/\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/junaidbhura/\">Junaid Bhura</a>, <a href=\"https://profiles.wordpress.org/nukaga/\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/justindocanto/\">Justin DoCanto</a>, <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/kallookoo/\">kallookoo</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/kaneva/\">kaneva</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/keoshi/\">keoshi</a>, <a href=\"https://profiles.wordpress.org/sourav926/\">Keramot UL Islam</a>, <a href=\"https://profiles.wordpress.org/kingkero/\">kero</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a>, <a href=\"https://profiles.wordpress.org/keyur5/\">keyur5</a>, <a href=\"https://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/vdwijngaert/\">Koen Van den Wijngaert</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/kurudrive/\">kurudrive</a>, <a href=\"https://profiles.wordpress.org/kwisatz/\">kwisatz</a>, <a href=\"https://profiles.wordpress.org/devnel/\">Kyle Nel</a>, <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a>, <a href=\"https://profiles.wordpress.org/lalitjalandhar/\">lalitjalandhar</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a>, <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"https://profiles.wordpress.org/lgladdy/\">Liam Gladdy</a>, <a href=\"https://profiles.wordpress.org/liammitchell/\">liammitchell</a>, <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a>, <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a>, <a href=\"https://profiles.wordpress.org/webaxones/\">Loïc Antignac</a>, <a href=\"https://profiles.wordpress.org/loranrendel/\">Loran A. Rendel</a>, <a href=\"https://profiles.wordpress.org/karpstrucking/\">Lucas Karpiuk</a>, <a href=\"https://profiles.wordpress.org/lucasw89/\">lucasw89</a>, <a href=\"https://profiles.wordpress.org/lucatume/\">lucatume</a>, <a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/luovalabs/\">luovalabs</a>, <a href=\"https://profiles.wordpress.org/lynk/\">lynk</a>, <a href=\"https://profiles.wordpress.org/asif2bd/\">M Asif Rahman</a>, <a href=\"https://profiles.wordpress.org/gorby31/\">Madalin Gorbanescu</a>, <a href=\"https://profiles.wordpress.org/aetherunbound/\">Madison</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>, <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a>, <a href=\"https://profiles.wordpress.org/malae/\">Malae</a>, <a href=\"https://profiles.wordpress.org/malthert/\">malthert</a>, <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a>, <a href=\"https://profiles.wordpress.org/manishamakhija/\">Manisha Makhija</a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a>, <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mark-k/\">Mark-k</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/wetah/\">Mateus Machado Luna</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mhuntdesign/\">Matt</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattoakley/\">mattoakley</a>, <a href=\"https://profiles.wordpress.org/wppunk/\">Max</a>, <a href=\"https://profiles.wordpress.org/max-dayala/\">MaxD</a>, <a href=\"https://profiles.wordpress.org/maximeculea/\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mclaurent/\">mclaurent</a>, <a href=\"https://profiles.wordpress.org/medusor/\">MEDUSOR</a>, <a href=\"https://profiles.wordpress.org/megphillips91/\">Meg Phillips</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/wpscholar/\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a>, <a href=\"https://profiles.wordpress.org/michelwppi/\">Michel &#8211; xiligroup dev</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mikaelmayer/\">mikaelmayer</a>, <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley (a11n)</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">mirka</a>, <a href=\"https://profiles.wordpress.org/mjaschen/\">mjaschen</a>, <a href=\"https://profiles.wordpress.org/mjulian7/\">mjulian7</a>, <a href=\"https://profiles.wordpress.org/mmxxi/\">mmxxi</a>, <a href=\"https://profiles.wordpress.org/moch11/\">moch11</a>, <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a>, <a href=\"https://profiles.wordpress.org/mt8biz/\">moto hachi</a>, <a href=\"https://profiles.wordpress.org/computerguru/\">mqudsi</a>, <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mtoensing/\">mtoensing</a>, <a href=\"https://profiles.wordpress.org/wparslan/\">Muhammad Arslan</a>, <a href=\"https://profiles.wordpress.org/muhammadfaizanhaidar/\">Muhammad Faizan Haidar</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/musabshakeel/\">Musab Shakeel</a>, <a href=\"https://profiles.wordpress.org/amustaque97/\">Mustaque Ahmed</a>, <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/namithjawahar/\">Namith Jawahar</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/natewr/\">NateWr</a>, <a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/nettsite/\">NettSite</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nickcernis/\">nickcernis</a>, <a href=\"https://profiles.wordpress.org/nico23/\">Nico</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/nikschavan/\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nlpro/\">nlpro</a>, <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a>, <a href=\"https://profiles.wordpress.org/ellenbauer/\">Outzen Larkin</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/ovann86/\">ovann86</a>, <a href=\"https://profiles.wordpress.org/ovidiul/\">ovidiul</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/iaaxpage/\">page-carbajal</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/pankajmohale/\">Pankaj Mohale</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patrick-b/\">Patrick B</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/rixeo/\">Paul Kevin</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/psrpinto/\">Paulo Pinto</a>, <a href=\"https://profiles.wordpress.org/pbking/\">pbking</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a>, <a href=\"https://profiles.wordpress.org/pierlo/\">Pierre Gordon</a>, <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/powerbuoy/\">powerbuoy</a>, <a href=\"https://profiles.wordpress.org/praem90/\">praem90</a>, <a href=\"https://profiles.wordpress.org/promz/\">Pramod Jodhani</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/procodewp/\">procodewp</a>, <a href=\"https://profiles.wordpress.org/psealock/\">psealock</a>, <a href=\"https://profiles.wordpress.org/psufan/\">psufan</a>, <a href=\"https://profiles.wordpress.org/pwtyler/\">pwtyler</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/radixweb/\">Radixweb</a>, <a href=\"https://profiles.wordpress.org/rtm909/\">Rahul Mehta</a>, <a href=\"https://profiles.wordpress.org/ralucastn/\">ralucastn</a>, <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a>, <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho (a11n)</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/richardfoley/\">Richard Foley</a>, <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a>, <a href=\"https://profiles.wordpress.org/rickcurran/\">Rick Curran</a>, <a href=\"https://profiles.wordpress.org/rbrishabh/\">Rishabh Budhiraja</a>, <a href=\"https://profiles.wordpress.org/saju4wordpress/\">Riyadh Ahmed</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\">rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/robertghetau/\">robertght</a>, <a href=\"https://profiles.wordpress.org/robtarr/\">robtarr</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/rohan013/\">Rohan Rawat</a>, <a href=\"https://profiles.wordpress.org/rhnsharma/\">Rohan Sharma</a>, <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a>, <a href=\"https://profiles.wordpress.org/rkohilakis/\">Roxy Kohilakis</a>, <a href=\"https://profiles.wordpress.org/russhylov/\">Ruslan</a>, <a href=\"https://profiles.wordpress.org/rviscomi/\">rviscomi</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/skierpage/\">S Page</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/soean/\">Sören Wrede</a>, <a href=\"https://profiles.wordpress.org/sabbirshouvo/\">Sabbir Hasan</a>, <a href=\"https://profiles.wordpress.org/sabrib/\">Sabri Bouchaala</a>, <a href=\"https://profiles.wordpress.org/zeo/\">Safirul Alredha</a>, <a href=\"https://profiles.wordpress.org/solarissmoke/\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sandipmondal/\">Sandip Mondal &#8211; a11n</a>, <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a>, <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiyamoorthy V</a>, <a href=\"https://profiles.wordpress.org/savicmarko1985/\">savicmarko1985</a>, <a href=\"https://profiles.wordpress.org/sayedulsayem/\">Sayedul Sayem</a>, <a href=\"https://profiles.wordpress.org/swb1192/\">Scott Buscemi</a>, <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/seanmcmillan/\">Sean McMillan</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/omaeyusuke/\">Segayuu</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sergiocinos/\">Sergio Cinos</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/shaharyar10/\">Shaharyar Afzal</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shohag121/\">Shazahanul Islam Shohag</a>, <a href=\"https://profiles.wordpress.org/shimon246/\">shimon246</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/shivapoudel/\">Shiva Poudel</a>, <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth</a>, <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a>, <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/simonhammes/\">simonhammes</a>, <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/sirreal/\">sirreal</a>, <a href=\"https://profiles.wordpress.org/sjlevy/\">sjlevy</a>, <a href=\"https://profiles.wordpress.org/skunkbad/\">skunkbad</a>, <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/sourovroy/\">Sourov Roy</a>, <a href=\"https://profiles.wordpress.org/spytzo/\">spytzo</a>, <a href=\"https://profiles.wordpress.org/ssergei/\">ssergei</a>, <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/strider72/\">Stephen Rider</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/stevegs/\">stevegs</a>, <a href=\"https://profiles.wordpress.org/stormrockwell/\">Storm Rockwell</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki/\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/sparklingrobots/\">Tara King</a>, <a href=\"https://profiles.wordpress.org/tareiking/\">Tarei King</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/terraling/\">terraling</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Tetsuaki Hamano</a>, <a href=\"https://profiles.wordpress.org/themiked/\">theMikeD</a>, <a href=\"https://profiles.wordpress.org/tweetythierry/\">Thierry Muller</a>, <a href=\"https://profiles.wordpress.org/thulshof/\">Thijs Hulshof</a>, <a href=\"https://profiles.wordpress.org/thimalw/\">Thimal Wickremage</a>, <a href=\"https://profiles.wordpress.org/thisiswilliam/\">thisiswilliam</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/timlappe/\">timlappe</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/titsmaker/\">titsmaker</a>, <a href=\"https://profiles.wordpress.org/tjcafferkey/\">tjcafferkey</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/tomalec/\">Tomek</a>, <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a>, <a href=\"https://profiles.wordpress.org/starbuck/\">Tony G</a>, <a href=\"https://profiles.wordpress.org/ttahmouch/\">Tony Tahmouch</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/sierratr/\">Tracy</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/tubys/\">tubys</a>, <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a>, <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/umesh84/\">umesh84</a>, <a href=\"https://profiles.wordpress.org/webulous/\">Venkat Raj</a>, <a href=\"https://profiles.wordpress.org/versusbassz/\">versusbassz</a>, <a href=\"https://profiles.wordpress.org/bartoszgrzesik/\">verybg</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a>, <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Szépe</a>, <a href=\"https://profiles.wordpress.org/vishitshah/\">Vishit Shah</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/vondelphia/\">Vondelphia.com</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, <a href=\"https://profiles.wordpress.org/wb1234/\">wb1234</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/west7/\">Wes Theron</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a>, <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wojsmol/\">wojsmol</a>, <a href=\"https://profiles.wordpress.org/woodyhayday/\">woodyhayday</a>, <a href=\"https://profiles.wordpress.org/wp_kc/\">wp_kc</a>, <a href=\"https://profiles.wordpress.org/wpnomad/\">wpnomad a11n</a>, <a href=\"https://profiles.wordpress.org/wpweaver/\">wpweaver</a>, <a href=\"https://profiles.wordpress.org/yagniksangani/\">Yagnik Sangani</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> und <a href=\"https://profiles.wordpress.org/zoiec/\">zoiec</a>.</p>\n\n\n\n<p>Am Tag des Releases war WordPress 5.9 in 71 Sprachen zu mindestens 90 Prozent übersetzt. Freiwillige Übersetzerinnen und Übersetzer arbeiten an weiteren Übersetzungen. Danke an alle, die WordPress in 205 Sprachen möglich machen.</p>\n\n\n\n<p>Danke auch an alle Freiwilligen, die in den Support-Foren mitarbeiten. Sie helfen Menschen von überall auf der Welt mit ihren Antworten und lösen Probleme. Der Erfolg von Releases, bis zurück zum ersten in 2003, ist zu einem großen Teil ihnen zu verdanken.</p>\n\n\n\n<p><em>Grafiken: <a href=\"https://wordpress.org/news/2022/01/josephine/\">WordPress-5.9-Release-Post</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n            \n              \n              \n              \n              \n                              \n              \n              \n\n                                    \n                                                                              \n                                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.8.3 Sicherheits-Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://de.wordpress.org/2022/01/wordpress-5-8-3-sicherheits-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Jan 2022 08:16:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Sicherheit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=5153\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:436:\"Am 6. Januar wurde WordPress 5.8.3 veröffentlicht. Dabei handelt es sich um einen Sicherheits-Release, weshalb ihr eure Websites möglichst schnell aktualisieren solltet. Es wurden für alle Versionszweige seit WordPress 3.7 Updates bereitgestellt. WordPress 5.8.3 ist ein kurzzyklischer Release, die nächste Major-Version wird WordPress 5.9, die sich bereits im Release-Candidate-Zustand befindet. Ihr könnt das Update auf [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Florian Brinkmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3565:\"\n<p>Am 6. Januar wurde WordPress 5.8.3 veröffentlicht. Dabei handelt es sich um einen Sicherheits-Release, weshalb ihr eure Websites möglichst schnell aktualisieren solltet. Es wurden für alle Versionszweige seit WordPress 3.7 Updates bereitgestellt.</p>\n\n\n\n<span id=\"more-5153\"></span>\n\n\n\n<p>WordPress 5.8.3 ist ein kurzzyklischer Release, die nächste Major-Version wird <a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9</a>, die sich bereits im Release-Candidate-Zustand befindet.</p>\n\n\n\n<p>Ihr könnt das Update auf die neue Version im Backend über <em>Dashboard</em> › <em>Aktualisierungen</em> ausführen. Wenn eure Website automatische Hintergrund-Updates unterstützt, könnte das Update bei euch bereits installiert sein.</p>\n\n\n\n<p><strong>Sicherheits-Updates</strong></p>\n\n\n\n<p>WordPress 3.7 bis 5.8 sind von drei beziehungsweise vier Sicherheitslücken betroffen, weshalb nicht nur für den 5.8-Zweig ein Update veröffentlicht wurde, sondern auch für alle älteren Zweige bis 3.7. Die folgenden Sicherheitslücken wurden geschlossen:</p>\n\n\n\n<ul><li>XSS-Lücke durch Post-Slugs. Danke an Karim El Ouerghemmi und Simon Scannell von <a href=\"https://www.sonarsource.com/\">SonarSource</a> fürs Melden.</li><li>Object-Injection in einigen Multisite-Installationen. Danke an Simon Scannell von <a href=\"https://www.sonarsource.com/\">SonarSource</a> fürs Melden.</li><li>SQL-Injection in WP_Query. Danke an ngocnb und khuyenn von <a href=\"https://giaohangtietkiem.vn/\">GiaoHangTietKiem JSC</a> für das Arbeiten mit <a href=\"https://www.zerodayinitiative.com/\">Trend Micro Zero Day Initiative</a> um die Lücke zu melden.</li><li>SQL-Injection in WP_Meta_Query (nur für die Versionen 4.1–5.8 relevant). Danke an Ben Bidner vom WordPress-Security-Team für das Melden der Lücke.</li></ul>\n\n\n\n<p>Danke an alle für das <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">verantwortungsvolle Melden der Sicherheitslücken</a>. Dadurch hat das Security-Team Zeit gehabt, die Probleme zu beheben, bevor die Lücken öffentlich wurden. Danke an das Security-Team für die Fixes in WordPress.</p>\n\n\n\n<p>Mehr Informationen zum Release gibt es auf der <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-3/\">5.8.3-HelpHub-Seite</a>.</p>\n\n\n\n<p><strong>Danke</strong></p>\n\n\n\n<p>Der 5.8.3-Release wurde von <a href=\"https://profiles.wordpress.org/desrosj/\">@desrosj</a> und <a href=\"https://profiles.wordpress.org/circlecube/\">@circlecube</a> geleitet.</p>\n\n\n\n<p>Zusätzlich zu den Security-Researchern und den Release-Leads, danke an alle, die WordPress 5.8.3 möglich gemacht haben:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a> und <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:60:\"\n          \n              \n              \n              \n              \n                              \n              \n              \n\n                                    \n                                                                              \n                                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.9 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://de.wordpress.org/2021/12/wordpress-5-9-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Dec 2021 09:17:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Entwicklung\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=5146\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:359:\"Am 14. Dezember wurde WordPress 5.9 Beta 3 veröffentlicht. Da die Software noch in Entwicklung ist, sollte sie nur auf einer Testumgebung installiert werden. Um WordPress 5.9 Beta 3 zu testen, gibt es drei Möglichkeiten: Mit dem Plugin WordPress Beta Tester. Über den direkten Download der Beta-3-Dateien als ZIP. Mit dem WP-CLI mit den folgenden [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Florian Brinkmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4092:\"\n<p>Am 14. Dezember wurde WordPress 5.9 Beta 3 veröffentlicht. Da die Software noch in Entwicklung ist, sollte sie nur auf einer Testumgebung installiert werden.</p>\n\n\n\n<p>Um WordPress 5.9 Beta 3 zu testen, gibt es drei Möglichkeiten:</p>\n\n\n\n<ul><li>Mit dem Plugin <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>.</li><li>Über den direkten Download der <a href=\"https://wordpress.org/wordpress-5.9-beta3.zip\">Beta-3-Dateien als ZIP</a>.</li><li>Mit dem WP-CLI mit den folgenden zwei Kommandos, um eine 5.9 Beta 1 oder 2 auf die dritte Beta zu aktualisieren:<br><pre>wp core update --version=5.9-beta2<br>wp core update --version=5.9-beta3 --force</pre></li></ul>\n\n\n\n<p>Der finale Release ist für den 25. Januar 2022 geplant, und das Core-Team benötigt Hilfe beim Testen, damit das funktioniert.</p>\n\n\n\n<span id=\"more-5146\"></span>\n\n\n\n<h2 id=\"ein-paar-highlights-der-beta-3\">Ein paar Highlights der Beta 3</h2>\n\n\n\n<p>Seit <a href=\"https://de.wordpress.org/2021/12/wordpress-5-9-beta-1-und-2-veroeffentlicht/\">Beta 2</a> wurden <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=12%2F08%2F2021..12%2F14%2F2021&amp;milestone=5.9&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">14</a> Bugs behoben, hier sind ein paar Highlights:</p>\n\n\n\n<ul><li>Editor: Hinzufügen der Full-Site-Editing-Infrastruktur vom Gutenberg-Plugin in den Core (<a href=\"https://core.trac.wordpress.org/ticket/54335\">#54335</a>).</li><li>PDF-Einbindung mit dem `object`-Element erlauben (<a href=\"https://core.trac.wordpress.org/ticket/54261\">#54261</a>).</li><li>Sprachwechsler auf der Login-Seite (<a href=\"https://core.trac.wordpress.org/ticket/43700\">#43700</a>).</li><li>REST-API: Hinzufügen des REST-Endpunkts für Navigations-Bereiche vom Gutenberg-Plugin (<a href=\"https://core.trac.wordpress.org/ticket/54393\">#54393</a>).</li><li>Themes: Beheben eines Bugs mit dem Live-Preview-Button (<a href=\"https://core.trac.wordpress.org/ticket/54578\">#54578</a>).</li></ul>\n\n\n\n<h2 id=\"wie-ihr-helfen-konnt\">Wie ihr helfen könnt</h2>\n\n\n\n<p>Das <a href=\"https://make.wordpress.org/core/handbook/testing/beta-testing/\">Testen auf Bugs</a> ist ein wichtiger Prozess während der Vorbereitung eines Releases und eine tolle Möglichkeit, zu WordPress beizutragen.</p>\n\n\n\n<p>Wenn ihr meint, einen Bug gefunden zu haben, könnt ihr ihn im <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha-/Beta-Bereich des englischen Support-Forums</a> melden. Wenn ihr euch mit dem Schreiben eines reproduzierbaren Bugreports auskennt, könnt ihr einen im <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> erstellen. Dort gibt es auch eine <a href=\"https://core.trac.wordpress.org/tickets/major\">Liste mit allen bekannten Problemen</a>.</p>\n\n\n\n<p>Auf dem Make/Core-Blog gibt es im Beitrag »<a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\">Help test WordPress 5.9 Features</a>« hilfreiche Infos zum Testen des Releases.</p>\n\n\n\n<h2 id=\"infos-fur-entwicklerinnen-und-entwickler\">Infos für Entwicklerinnen und Entwickler</h2>\n\n\n\n<p>Entwicklungsspezifische Informationen zu Neuerungen in WordPress 5.9 gibt es im <a href=\"https://make.wordpress.org/core/\">Make-WordPress-Core-Blog</a> in <a href=\"https://make.wordpress.org/core/tag/5-9+dev-notes/\">Dev-Note</a>-Beiträgen. Bisher wurden mehr als <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=5.9&amp;resolution=fixed\">300 Tickets in WordPress 5.9</a> geschlossen, inklusive knapp <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;status=reopened&amp;changetime=..12%2F07%2F2021&amp;type=enhancement&amp;type=feature+request&amp;milestone=5.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=changetime&amp;col=owner&amp;col=priority&amp;col=keywords&amp;order=changetime\">100 für neue Funktionen und Verbesserungen</a>. </p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:60:\"\n           \n              \n              \n              \n              \n                              \n              \n              \n\n                                    \n                                                                              \n                                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WordPress 5.9 Beta 1 und 2 veröffentlicht\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://de.wordpress.org/2021/12/wordpress-5-9-beta-1-und-2-veroeffentlicht/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Dec 2021 09:25:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Entwicklung\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=5141\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:414:\"WordPress 5.9 Beta 1 wurde am 30.11.2021 und 5.9 Beta 2 am 7.12.2021 veröffentlicht. Alpha-, Beta- und RC-Versionen sollten nicht auf Live-Websites, sondern nur in Testumgebungen installiert werden. Bis zum Release der finalen WordPress-Version (voraussichtlich 25. Januar 2022) ist noch genügend Zeit für ausgiebige Tests, damit möglichst viele Fehler und Inkompatibilitäten vor dem Release erkannt [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Angelika Reisiger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9965:\"<p>WordPress 5.9 Beta 1 wurde am 30.11.2021 und 5.9 Beta 2 am 7.12.2021 veröffentlicht. Alpha-, Beta- und RC-Versionen sollten nicht auf Live-Websites, sondern nur in Testumgebungen installiert werden. Bis zum Release der finalen WordPress-Version (voraussichtlich 25. Januar 2022) ist noch genügend Zeit für ausgiebige Tests, damit möglichst viele Fehler und Inkompatibilitäten vor dem Release erkannt und behoben werden können.</p>\n<p><span id=\"more-5141\"></span></p>\n<h2>Testen</h2>\n<p>Zum Testen installiere WordPress 5.9 Beta 2 in einer abgesicherten Testumgebung, entweder mit dem <a href=\"https://wordpress.org/wordpress-5.9-beta2.zip\">Zip-Archiv</a> oder über das Plugin <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>. Eine dritte Möglichkeit ist die Verwendung von WP-CLI: <code>wp core update --version=5.9-beta2</code>.</p>\n<p>Auf dem <a href=\"https://make.wordpress.org/core/\">Make-WordPress-Core-Blog</a> werden in den nächsten Wochen <a href=\"https://make.wordpress.org/core/tag/5-9+dev-notes/\">Beiträge zu größeren Änderungen in der Entwicklung</a> gepostet.</p>\n<p>Um alle Funktionen in den Gutenberg-Versionen seit WordPress 5.8 zu sehen, lies dir die Beiträge &#8222;What&#8217;s New In Gutenberg&#8220; für <a href=\"https://make.wordpress.org/core/2021/06/10/whats-new-in-gutenberg-10-8-9-june/\">10.8</a>,<a href=\"https://make.wordpress.org/core/2021/06/24/whats-new-in-gutenberg-10-9-23-june/\"> 10.9</a>,<a href=\"https://make.wordpress.org/core/2021/07/09/whats-new-in-gutenberg-11-0-0-9-july/\"> 11.0</a>,<a href=\"https://make.wordpress.org/core/2021/07/21/whats-new-in-gutenberg-11-1-0-21-july/\"> 11.1</a>,<a href=\"https://make.wordpress.org/core/2021/08/05/whats-new-in-gutenberg-11-2-0-4-august/\"> 11.2</a>,<a href=\"https://make.wordpress.org/core/2021/08/18/whats-new-in-gutenberg-11-3-18-august/\"> 11.3</a>,<a href=\"https://make.wordpress.org/core/2021/09/01/whats-new-in-gutenberg-11-4-1-september/\"> 11.4</a>,<a href=\"https://make.wordpress.org/core/2021/09/17/whats-new-in-gutenberg-11-5-16-september/\"> 11.5</a>,<a href=\"https://make.wordpress.org/core/2021/10/01/whats-new-in-gutenberg-11-6-29-september/\"> 11.6</a>,<a href=\"https://make.wordpress.org/core/2021/10/14/whats-new-in-gutenberg-11-7-october-13th/\"> 11.7</a>,<a href=\"https://make.wordpress.org/core/2021/10/28/whats-new-in-gutenberg-11-8-0-27-october/\"> 11.8</a> und <a href=\"https://make.wordpress.org/core/2021/11/12/whats-new-in-gutenberg-11-9-0-10-november/\">11.9</a> durch.</p>\n<p>Neben den erwähnten Änderungen, die 580 Verbesserungen und fast 450 Fehlerkorrekturen umfassen, wurden in Beta 1 <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.9&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">297 Tickets für WordPress 5.9</a> behoben, darunter <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;status=reopened&amp;type=enhancement&amp;type=feature+request&amp;milestone=5.9&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;col=changetime&amp;col=keywords&amp;order=changetime\">110 neue Funktionen und Verbesserungen</a>. In Beta 2 wurden <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F30%2F2021..12%2F07%2F2021&amp;milestone=5.9&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">24 Bugs beseitigt</a>. Weitere Fehlerbehebungen sind auf dem Weg.</p>\n<h2>Full Site Editing</h2>\n<h3>Das Styles-Interface</h3>\n<p>Kombiniere alle Funktionen, die in 5.8 eingeführt wurden, mit denen, die in 5.9 hinzukommen, und du erhältst Full Site Editing. Die zuvor als Global Styles bezeichnete Styles-Oberfläche ermöglicht dir die unmittelbare Interaktion mit deinen Blöcken und Elementen direkt in der WordPress-Admin-Oberfläche. Von der Typografie bis hin zu Farbpaletten bedeutet diese kohärente Design-Schnittstelle, dass eine Designänderung – selbst eine tiefgreifende – ohne einen Theme-Wechsel erfolgen kann. Es ist dafür kein Code erforderlich.</p>\n<h3>Datei theme.json</h3>\n<p>Die in WordPress 5.8 eingeführte Datei theme.json wurde überarbeitet, um Funktionen und Standardstile für deine Website und deren Blöcke zu aktivieren. Mit 5.9 kann theme.json Child-Themes und die Duotone-Methode unterstützen. Die Koordination von Stilebenen mit theme.json verringert das erforderliche CSS für dein Theme.</p>\n<h4>Weitere von theme.json unterstützte Funktionen sind:</h4>\n<ul>\n<li>Border: Farbe, Stil und Breite erweitern die Eigenschaften von border-radius, die in 5.8 eingeführt wurden.</li>\n<li>Flex-Layouts: Block-Gap-Support, mit freundlicher Genehmigung von spacing.blockGap.</li>\n<li>Typografie:  font families, font style, font weight, text decoration und text transform.</li>\n<li>Bilder: Duotones.</li>\n</ul>\n<h3>Ein neuer Navigationsblock</h3>\n<p>Hier sind die Funktionen, die am meisten getestet werden müssen:</p>\n<ul>\n<li>Responsive Menüoptionen, die du deaktivieren, immer aktivieren oder nur für kleine Bildschirme verwenden kannst.</li>\n<li>Integrierte Tastaturzugänglichkeit. Für Barrierefreiheit, für Geschwindigkeit oder für beides.</li>\n<li>Füge zusätzliche Blöcke wie Such- und Website-Icon-Blöcke hinzu (und passe sie nach deinen Wünschen an).</li>\n<li>Untermenü-Elemente mit Styling-Optionen.</li>\n<li>Horizontale oder vertikale Ausrichtung.</li>\n<li>Wiederverwendbare themenübergreifende Navigation. Der erstellte Navigationsblock wird als individueller Inhaltstyp gespeichert.</li>\n</ul>\n<h3>Ein weiterentwickelter Block Galerie</h3>\n<p>Du kannst jetzt jedes einzelne Bild des Blocks Galerie genauso bearbeiten wie eins aus dem Block Bild: Mit Inline-Zuschnitt oder einem Duoton und Änderung der Layouts per Drag-and-drop.</p>\n<p><strong>Hinweis</strong>: Hast du ein Plugin oder Theme auf der Funktionalität des Blocks Galerie entwickelt? Dann solltest du unbedingt <a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">diese Dev-Note lesen</a>, in der beschrieben wird, was du für die notwendige Kompatibilität unternehmen musst.</p>\n<h3>Fokussierter Template-Teil-Modus</h3>\n<p>Die Erstellung von Template-Teilen kann ein besonderes Maß an Konzentration erfordern, da du Entscheidungen für die gesamte Website triffst. Daher bietet WordPress 5.9 einen Fokusmodus, der dir nur den Teil zeigt, an dem du gerade arbeitest (und du kannst mit einem Tastendruck zur normalen Ansicht zurückkehren).</p>\n<h3>Blockvorlagen-Verzeichnis</h3>\n<p>Das Vorlagenverzeichnis bietet eine Reihe von vorgefertigten Blockvorlagen, von einzelnen Blöcken, die ein Bild und einen Text zeigen, bis hin zu einem kompletten Seitenlayout mit Spalten und Abschnitten. Seit der Veröffentlichung von Version 5.8 ist das Verzeichnis zu einer Sammelstelle für experimentelle Benutzeroberflächen und Vorlagen geworden, die (auch deine) Einsendungen entgegennimmt und sie der Community zur Verfügung stellt.</p>\n<h2>Neues Standard-Theme: Twenty Twenty-Two</h2>\n<p>WordPress 5.9 führt Funktionen ein, die die vollständige Bearbeitung von Websites (Full Site Editing) ermöglichen und mit &#8222;Twenty Twenty-Two&#8220; auch das erste Standard-Block-Theme.</p>\n<p>Durch die Verwendung von minimalem CSS werden die Stile des Themes in der Datei theme.json gespeichert, so dass du sie im Styles-Interface der WordPress-Admin-Oberfläche konfigurieren kannst. Mit einer Auswahl an Farbschemata, Schriftkombinationen, Seitentemplates, vorgefertigten Komponenten und Bildbearbeitungsmöglichkeiten kann das Theme individuell gestaltet werden.</p>\n<h2>Einige Änderungen aus der Beta 2</h2>\n<ul>\n<li>Block-Editor: Navigationsbereiche entfernen (<a href=\"https://core.trac.wordpress.org/ticket/54506\">#54506</a>)</li>\n<li>Block-Editor: JavaScript-Fehler in der Navigationsblock-Ansicht (<a href=\"https://core.trac.wordpress.org/ticket/54456\">#54456</a>)</li>\n<li>Block-Editor: Blockvorlagen-Theme-Fehler in Verbindung mit untergeordneten Themen (<a href=\"https://core.trac.wordpress.org/ticket/54515\">#54515</a>)</li>\n<li>Allgemein: Korrektur bestehender Links zum Customizer, wenn der Site-Editor aktiviert ist (<a href=\"https://core.trac.wordpress.org/ticket/54460\">#54460</a>)</li>\n<li>Medien: Mediathek zeigt nur das ausgewählte Bild an (<a href=\"https://core.trac.wordpress.org/ticket/53765\">#53765</a>)<br />\nMedien: Fataler Fehler beim Hochladen von Medien unter PHP 8 (<a href=\"https://core.trac.wordpress.org/ticket/54385\">#54385</a>)<br />\nREST-API: Globale-Styles-REST-API-Endpunkte von Gutenberg in Core hinzufügen (<a href=\"https://core.trac.wordpress.org/ticket/54336\">#54336</a>)</li>\n</ul>\n<h2>Wie du helfen kannst</h2>\n<p>Verfolge in den kommenden Wochen den Blog <a href=\"https://make.wordpress.org/core/\">Make WordPress Core</a> hinsichtlich <a href=\"https://make.wordpress.org/core/tag/5-9+dev-notes/\">5.9-bezogener Entwicklungs-Notizen</a>, in denen diese und andere Änderungen detaillierter aufgeschlüsselt werden.</p>\n<h3>Testen, testen, testen</h3>\n<p>Das Testen auf Fehler ist ein wichtiger Teil des Feinschliffs der Version während der Beta-Phase und eine großartige Möglichkeit, einen Beitrag zum Open-Source-Projekt WordPress zu leisten.</p>\n<h3>Fehler melden</h3>\n<p>Wenn du denkst, dass du einen Fehler gefunden hast, kannst du ihn in den <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha-/Beta-Bereichen</a> der Support-Foren posten. Wenn du dich damit auskennst, einen reproduzierbaren Fehlerbericht zu schreiben, kannst du ihn im <a href=\"https://make.wordpress.org/core/reports/\">WordPress Trac erstellen</a>, wo auch eine Liste der bereits <a href=\"https://core.trac.wordpress.org/tickets/major\">bekannten Fehler</a> zu finden ist.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:60:\"\n                \n              \n              \n              \n              \n                              \n              \n              \n\n                                    \n                                                                              \n                                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress 5.8.2 Sicherheits- und Wartungs-Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://de.wordpress.org/2021/11/wordpress-5-8-2-sicherheits-und-wartungs-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Nov 2021 10:06:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Sicherheit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=5137\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:418:\"Am 10. November wurde WordPress 5.8.2 veröffentlicht. Dabei handelt es sich um einen Sicherheits- und Wartungs-Release, der zwei Bugs behebt und eine Sicherheitslücke schließt. Aus diesem Grund wird empfohlen, Websites schnellstmöglich auf die neue Version zu aktualisieren. Alle Versionen ab WordPress 5.2 haben ein Update erhalten. WordPress 5.8.2 ist ein kleiner Wartungs- und Sicherheits-Release, die [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Florian Brinkmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2715:\"\n<p>Am 10. November wurde WordPress 5.8.2 veröffentlicht. Dabei handelt es sich um einen Sicherheits- und Wartungs-Release, der <a href=\"https://core.trac.wordpress.org/query?id=54129%2C54323%2C54207&amp;milestone=5.8.2&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;col=milestone&amp;order=priority\">zwei Bugs</a> behebt und <a href=\"https://core.trac.wordpress.org/ticket/54207\">eine Sicherheitslücke</a> schließt. Aus diesem Grund wird empfohlen, Websites schnellstmöglich auf die neue Version zu aktualisieren. Alle Versionen ab WordPress 5.2 haben ein Update erhalten.</p>\n\n\n\n<span id=\"more-5137\"></span>\n\n\n\n<p>WordPress 5.8.2 ist ein kleiner Wartungs- und Sicherheits-Release, die nächste Major-Version wird <a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9</a>.</p>\n\n\n\n<p>Ihr könnt das Update auf WordPress 5.8.2 über das Backend unter <em>Dashboard</em> › <em>Aktualisierungen</em> anstoßen oder euch die Dateien von WordPress.org herunterladen. Wenn eure Website automatische Hintergrundupdates unterstützt, könnte die neue Version bereits installiert sein.</p>\n\n\n\n<p>Detaillierte Infos zu den Änderungen gibt es in der <a href=\"https://core.trac.wordpress.org/query?id=54129%2C54323%2C54207&amp;milestone=5.8.2&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;col=milestone&amp;order=priority\">Liste aller Änderungen auf Trac </a>oder auf der <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-2/\">5.8.2-HelpHub-Seite</a>.</p>\n\n\n\n<h2 id=\"danke\">Danke</h2>\n\n\n\n<p>Der 5.8.2-Release wurde von <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> und <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a> geleitet.</p>\n\n\n\n<p>Daneben haben die folgenden Personen dabei mitgeholfen, 5.8.2 zu ermöglichen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/bradleyt/\">Bradley Taylor</a>, <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shimon246/\">shimon246</a> und<a href=\"https://profiles.wordpress.org/fierevere/\"> Yui</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:60:\"\n         \n              \n              \n              \n              \n                              \n              \n              \n\n                                    \n                                                                              \n                                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress 5.8.1 Sicherheits- und Wartungs-Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://de.wordpress.org/2021/09/wordpress-5-8-1-sicherheits-und-wartungs-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Sep 2021 08:04:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Sicherheit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=5126\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:417:\"Am 9. September wurde WordPress 5.8.1 veröffentlicht. Dabei handelt es sich um einen Sicherheits- und Wartungs-Release, der drei Sicherheitslücken schließt und 60 Bugs behebt. Da es ein Sicherheits-Release ist, solltet ihr eure Websites unverzüglich aktualisieren. Für alle Versionszweige seit WordPress 5.4 gibt es ebenfalls Updates. Bei WordPress 5.8.1 handelt es sich um ein kurz-zyklisches Release, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Florian Brinkmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8969:\"\n<p>Am 9. September wurde WordPress 5.8.1 veröffentlicht. Dabei handelt es sich um einen Sicherheits- und Wartungs-Release, der drei Sicherheitslücken schließt und <a href=\"https://core.trac.wordpress.org/query?milestone=5.8.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">60 Bugs behebt</a>. Da es ein <strong>Sicherheits-Release</strong> ist, solltet ihr eure Websites unverzüglich aktualisieren. Für alle Versionszweige seit WordPress 5.4 gibt es ebenfalls Updates.</p>\n\n\n\n<p>Bei WordPress 5.8.1 handelt es sich um ein kurz-zyklisches Release, der nächste Major-Release wird <a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9</a>.</p>\n\n\n\n<p>Ihr könnt WordPress 5.8.1 von WordPress.org herunterladen oder das Update einer bestehenden Site über <em>Dashboard</em> › <em>Aktualisierungen</em> ausführen. Wenn eure Website automatische Hintergrund-Updates unterstützt, könnte die neue Version bereits installiert sein.</p>\n\n\n\n<span id=\"more-5126\"></span>\n\n\n\n<h2>Sicherheits-Updates</h2>\n\n\n\n<p>Drei Sicherheitslücken betreffen WordPress-Versionen zwischen 5.4 und 5.8. Neben WordPress 5.8.1 wurden auch für die anderen Release-Zweige ab WordPress 5.4 neue Versionen veröffentlicht, die die Sicherheitslücken schließen.</p>\n\n\n\n<p>Die folgenden Probleme wurden behoben:</p>\n\n\n\n<ul><li>Eine »data exposure vulnerability« in der REST-API, vielen Dank an <a href=\"https://profiles.wordpress.org/mdawaffe/\">@mdawaffe</a> vom WordPress-Security-Team für das Fixen der Lücke.</li><li>XSS-Schwachstelle im Block-Editor, vielen Dank an Michał Bentkowski von Securitum für das Melden der Sicherheitslücke.</li><li>Die Lodash-Bibliothek wurde auf Version 4.17.21 aktualisiert um darin enthaltene Sicherheits-Fixes zu übernehmen.</li></ul>\n\n\n\n<p>Zusätzlich möchte das Security-Team den folgenden Personen für das Melden von Sicherheitslücken in der WordPress-5.8-Beta-Phase danken, sodass sie vor dem Release behoben werden konnten:</p>\n\n\n\n<ul><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://evanricafort.com/\">Evan Ricafort</a>&nbsp;hat eine XSS-Lücke im Block-Editor gemeldet.</li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a> hat ein Privilege-Escalation-Problem im Block-Editor gemeldet.</li></ul>\n\n\n\n<p>Danke an alle Meldenden für das <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">vertrauliche Melden der Lücken</a>. Das hat dem Security-Team Zeit gegeben, die Probleme zu beheben, bevor WordPress-Sites angegriffen werden konnten.</p>\n\n\n\n<p>Mehr Informationen zu den Änderungen in WordPress 5.8.1 gibt es in der <a href=\"https://core.trac.wordpress.org/query?milestone=5.8.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">Liste mit allen Änderungen im Trac</a> oder auf der <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-1/\">Doku-Seite zu 5.8.1</a>.</p>\n\n\n\n<h2>Danke</h2>\n\n\n\n<p>Der 5.8.1-Release wurde von <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> und <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a> geleitet.</p>\n\n\n\n<p>Zusätzlich zu den Security-Researchern und den beiden genannten Release-Leads haben die folgenden Entwicklerinnen und Entwickler dabei geholfen, WordPress 5.8.1 möglich zu machen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/2linctools/\">2linctools</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/algala/\">AlGala</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van&nbsp;Durpe</a>, <a href=\"https://profiles.wordpress.org/enchiridion/\">Enchiridion</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/mark-k/\">Mark-k</a>, <a href=\"https://profiles.wordpress.org/mhuntdesign/\">Matt</a>, <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/moch11/\">moch11</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/radixweb/\">Radixweb</a>, <a href=\"https://profiles.wordpress.org/rtm909/\">Rahul Mehta</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/terraling/\">terraling</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/wb1234/\">wb1234</a> und <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:57:\"\n                \n              \n              \n              \n              \n                              \n              \n\n                                    \n                                                                              \n                                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"WordPress 5.8 »Tatum«\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://de.wordpress.org/2021/07/wordpress-5-8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Jul 2021 08:21:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=5104\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:430:\"Am 20. Juli wurde WordPress 5.8 »Tatum« veröffentlicht, benannt nach dem Jazz-Pianisten Art Tatum. WordPress 5.8 macht die ersten Schritte hin zum Full-Site-Editing und verändert zum Beispiel die Verwaltung von Widgets. Block-basierter Widget-Editor Mit WordPress 5.8 werden Widgets zu Blöcken, und dementsprechend mussten die Ansichten zur Widget-Bearbeitung unter Design › Widgets sowie im Customizer verändert [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Florian Brinkmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:48716:\"\n<p>Am 20. Juli wurde WordPress 5.8 »Tatum« veröffentlicht, benannt nach dem Jazz-Pianisten Art Tatum. WordPress 5.8 macht die ersten Schritte hin zum Full-Site-Editing und verändert zum Beispiel die Verwaltung von Widgets.</p>\n\n\n\n<span id=\"more-5104\"></span>\n\n\n\n<h2>Block-basierter Widget-Editor</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://de.wordpress.org/files/2021/07/about-widgets-blocks.png\"><img loading=\"lazy\" width=\"1024\" height=\"768\" src=\"https://de.wordpress.org/files/2021/07/about-widgets-blocks-1024x768.png\" alt=\"Screenshot des Willkommen-Dialogs beim ersten Öffnen des neuen Block-Widget-Editors.\" class=\"wp-image-5105\" srcset=\"https://de.wordpress.org/files/2021/07/about-widgets-blocks-1024x768.png 1024w, https://de.wordpress.org/files/2021/07/about-widgets-blocks-300x225.png 300w, https://de.wordpress.org/files/2021/07/about-widgets-blocks-768x576.png 768w, https://de.wordpress.org/files/2021/07/about-widgets-blocks-440x330.png 440w, https://de.wordpress.org/files/2021/07/about-widgets-blocks.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a><figcaption>(Grafik: WordPress-5.8-About-Seite)</figcaption></figure>\n\n\n\n<p>Mit WordPress 5.8 werden Widgets zu Blöcken, und dementsprechend mussten die Ansichten zur Widget-Bearbeitung unter <em>Design</em> › <em>Widgets</em> sowie im Customizer verändert werden. Durch diese Änderungen ist es möglich, alle vorhandenen Blöcke nicht nur im Inhaltsbereich sondern auch in Widget-Bereichen zu verwenden. Diese Funktion kann unter anderem mit dem <a href=\"https://de.wordpress.org/plugins/classic-widgets/\">Plugin »Classic Widgets«</a> deaktiviert werden. Für alle Devs gibt es mehr Informationen dazu in der <a href=\"https://make.wordpress.org/core/2021/06/29/block-based-widgets-editor-in-wordpress-5-8/\">Dev-Note zum Block-basierten Widget-Editor</a>.</p>\n\n\n\n<h2>Beiträge mit neuen Blöcken und Vorlagen darstellen</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://de.wordpress.org/files/2021/07/about-query-loop.png\"><img loading=\"lazy\" width=\"1024\" height=\"811\" src=\"https://de.wordpress.org/files/2021/07/about-query-loop-1024x811.png\" alt=\"Screenshot eines Vorschlags einer Block-Vorlage beim Einfügen des Abfrage-Loop-Blocks.\" class=\"wp-image-5106\" srcset=\"https://de.wordpress.org/files/2021/07/about-query-loop-1024x811.png 1024w, https://de.wordpress.org/files/2021/07/about-query-loop-300x238.png 300w, https://de.wordpress.org/files/2021/07/about-query-loop-768x608.png 768w, https://de.wordpress.org/files/2021/07/about-query-loop.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a><figcaption>Beim Einfügen des Abfrage-Loop-Blocks werden verschiedene Vorschläge für Vorlagen angezeigt. (Grafik: WordPress-5.8-About-Seite)</figcaption></figure>\n\n\n\n<p>Mit dem neuen Abfrage-Loop-Block kann eine Liste von Beiträgen angezeigt werden, wobei nach Inhaltstyp, Kategorien, Schlagwörtern, Autor und Autorin sowie Stichwort gefiltert werden kann. Im Gegensatz zu dem Neueste-Beiträge-Block besteht die Liste der Beiträge dabei aber aus Blöcken, die auch verändert werden können. So ist eine deutlich größere Zahl an Layouts möglich und ein paar Layout-Vorschläge werden beim Einfügen des Blocks angezeigt, damit man nicht von Null starten muss.</p>\n\n\n\n<h2>Template-Editor</h2>\n\n\n\n<p>Mit dem neuen Template-Editor können Templates von Beiträgen bearbeitet werden. Dabei wird in eine Ansicht gewechselt, in der der gesamte Inhalt des Templates aus Blöcken zusammengesetzt werden kann. Damit der Editor aktiv ist, muss ein Block-Theme genutzt werden oder ein Theme, das die Funktion explizit aktiviert hat.</p>\n\n\n\n<h2>Drei Helfer für den Arbeitsablauf</h2>\n\n\n\n<h3>Übersicht der Seitenstruktur</h3>\n\n\n\n<p>Manchmal braucht man nur eine einfache Landingpage, aber manchmal auch etwas komplexeres. Weil es immer mehr Blöcke gibt und die Möglichkeiten für komplexe Inhaltsstrukturen immer vielfältiger, werden neue Lösungen zur einfachen Navigation in der Block-Struktur benötigt.</p>\n\n\n\n<p>Eine einfache Verbesserung ist, die Listenansicht der Block-Struktur geöffnet zu lassen, bis sie explizit geschlossen wird. So kann sie parallel zur Arbeit im Inhalt genutzt werden, ohne sie immer wieder öffnen zu müssen.</p>\n\n\n\n<h3>Empfohlene Vorlagen für Blöcke</h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://de.wordpress.org/files/2021/07/about-pattern-suggestions.png\"><img loading=\"lazy\" width=\"1024\" height=\"555\" src=\"https://de.wordpress.org/files/2021/07/about-pattern-suggestions-1024x555.png\" alt=\"Screenshot des Interfaces zum Umwandeln des Social-Icons-Blocks in die Block-Vorlage, bei der die Icons dieselbe Hintergrundfarbe haben.\" class=\"wp-image-5107\" srcset=\"https://de.wordpress.org/files/2021/07/about-pattern-suggestions-1024x555.png 1024w, https://de.wordpress.org/files/2021/07/about-pattern-suggestions-300x163.png 300w, https://de.wordpress.org/files/2021/07/about-pattern-suggestions-768x416.png 768w, https://de.wordpress.org/files/2021/07/about-pattern-suggestions.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a><figcaption>Bestehende Blöcke können in Block-Vorlagen umgewandelt werden. (Grafik: WordPress-5.8-About-Seite)</figcaption></figure>\n\n\n\n<p>Beginnend mit WordPress 5.8 gibt es die Möglichkeit, basierend auf dem genutzten Block, Vorschläge für Block-Vorlagen zu machen und bereits eingefügte Blöcke in Vorlagen umzuwandeln. In 5.8 kann das mit dem Abfrage-Loop-Block und dem Social-Icons-Block ausprobiert werden.</p>\n\n\n\n<h3>Bilder einfärben</h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://de.wordpress.org/files/2021/07/about-duotone.png\"><img loading=\"lazy\" width=\"1024\" height=\"837\" src=\"https://de.wordpress.org/files/2021/07/about-duotone-1024x837.png\" alt=\"Darstellung zweier Varianten des Duotone-Filters auf einem Bild eines Fisches. Die linke Seite hat Schwarz und Blau als Effektfarben, rechts Blau und Rot.\" class=\"wp-image-5108\" srcset=\"https://de.wordpress.org/files/2021/07/about-duotone-1024x837.png 1024w, https://de.wordpress.org/files/2021/07/about-duotone-300x245.png 300w, https://de.wordpress.org/files/2021/07/about-duotone-768x628.png 768w, https://de.wordpress.org/files/2021/07/about-duotone.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a><figcaption>Der Duotone-Filter erlaubt interessante Effekte für Bild- und Cover-Blöcke. (Grafik: WordPress-5.8-About-Seite)</figcaption></figure>\n\n\n\n<p>Mit dem neuen Duotone-Filter können Bilder und der Cover-Block eingefärbt werden. Man kann sich den Effekt wie einen Schwarz-Weiß-Filter vorstellen, nur können die beiden Farben frei gewählt werden.</p>\n\n\n\n<h2>Interessantes für Entwicklerinnen und Entwickler</h2>\n\n\n\n<h3>theme.json</h3>\n\n\n\n<p>Die neu eingeführten Global-Styles- und Global-Settings-APIs ermöglichen die Konfiguration des Editors über die theme.json-Datei des aktiven Themes. Darüber können beispielsweise die verfügbaren Block-Optionen aktiviert oder deaktiviert sowie die verfügbaren Werte für Optionen festgelegt werden. Das ist sowohl global für alle Blöcke möglich, als auch nur für bestimmte einzelne Blöcke. Daneben können über die Datei bestimmte Standard-Styles wie Text- und Hintergrundfarbe festgelegt werden. Mehr Informationen gibt es in der <a href=\"https://make.wordpress.org/core/2021/06/25/introducing-theme-json-in-wordpress-5-8/\">theme.json-Dev-Note</a>.</p>\n\n\n\n<h3>Einstellung der IE11-Unterstützung</h3>\n\n\n\n<p>Der <a href=\"https://de.wordpress.org/2021/05/der-support-fuer-internet-explorer-11-wird-eingestellt/\">Internet Explorer 11 wird im Backend nicht länger aktiv unterstützt</a>. Wenn ihr diesen Browser noch verwendet, kann es zu Problemen bei der Verwaltung eurer Website kommen, die auch nicht mehr behoben werden. Ihr solltet in diesem Fall <a href=\"https://browsehappy.com/\">dringend auf einen modernen Browser wechseln</a>.</p>\n\n\n\n<h3>Unterstützung für WebP</h3>\n\n\n\n<p>WebP ist ein modernes Bildformat, das verlustbehaftete und verlustfreie Komprimierung für Bilder im Web anbietet. WebP-Bilder sind im Mittel um die 30 Prozent kleiner als ihre JPEG- oder PNG-Entsprechung, was zu schnelleren Websites und geringerer Auslastung der Bandbreite führt.</p>\n\n\n\n<h3>Hinzufügen zusätzlicher Block-Supports-Flags</h3>\n\n\n\n<p>In WordPress 5.6 und 5.7 wurden die ersten Block-Supports-Flags eingefügt, und WordPress 5.8 liefert wieder ein paar weitere, mit denen ihr eure Blöcke einfach um zusätzliche Optionen erweitern könnt. So wurde beispielsweise die experimentelle Möglichkeit hinzugefügt, den Duotone-Effekt zu unterstützen. Mehr Informationen gibt es in der <a href=\"https://make.wordpress.org/core/2021/06/25/block-supports-api-updates-for-wordpress-5-8/\">Block-Supports-Dev-Note</a>.</p>\n\n\n\n<h3>Lest den Field-Guide für mehr Informationen</h3>\n\n\n\n<p>Im <a href=\"https://make.wordpress.org/core/2021/07/03/wordpress-5-8-field-guide/\">WordPress-5.8-Field-Guide</a> gibt es Verweise auf alle Beiträge mit detaillierten Informationen zu größeren Änderungen, die Entwicklerinnen und Entwickler betreffen.</p>\n\n\n\n<h2>Das Team</h2>\n\n\n\n<p>Der WordPress-5.8-Release wurde von <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> geleitet und von diesem Release-Team unterstützt:</p>\n\n\n\n<ul><li><strong>Release-Co-Coordinator:</strong> Jeffrey Paul (<a href=\"https://profiles.wordpress.org/jeffpaul/\">@jeffpaul</a>)</li><li><strong>Release-Co-Coordinator:</strong> Jonathan Desrosiers (<a href=\"https://profiles.wordpress.org/desrosj/\">@desrosj</a>)</li><li><strong>Editor-Tech-Lead:</strong> Riad Benguella (<a href=\"https://profiles.wordpress.org/youknowriad/\">@youknowriad</a>)</li><li><strong>Marketing-and-Communications-Lead:</strong> Josepha Haden Chomphosy (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>)</li><li><strong>Documentation-Lead:</strong> Milana Cap (<a href=\"https://profiles.wordpress.org/milana_cap/\">@milana_cap</a>)</li><li><strong>Test-Lead:</strong> Piotrek Boniu (<a href=\"https://profiles.wordpress.org/boniu91/\">@boniu91</a>)</li><li><strong>Support-Lead: </strong>Mary Job (<a href=\"https://profiles.wordpress.org/mariaojob/\">@mariaojob</a>)</li></ul>\n\n\n\n<p>Der Release spiegelt die harte Arbeit von 530 Freiwilligen wieder. Die Arbeit fand in <a href=\"https://core.trac.wordpress.org/query?milestone=5.8&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">über 320 Trac-Tickets</a> und <a href=\"https://github.com/wordpress/gutenberg/compare/v10.0.0...v10.7.0\">mehr als 1.500 Pull-Requests auf GitHub</a> statt.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/5ubliminal/\">5ubliminal</a>, <a href=\"https://profiles.wordpress.org/ninetyninew/\">99w</a>, <a href=\"https://profiles.wordpress.org/9primus/\">9primus</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">aaronrobertshaw</a>, <a href=\"https://profiles.wordpress.org/abderrahman/\">abderrahman</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas/\">Abhijit Rakas</a>, <a href=\"https://profiles.wordpress.org/achbed/\">achbed</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a>, <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a>, <a href=\"https://profiles.wordpress.org/aleperez92/\">Alejandro Perez</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/firewatch/\">allilevine</a>, <a href=\"https://profiles.wordpress.org/amandariu/\">Amanda Riu</a>, <a href=\"https://profiles.wordpress.org/amarinediary/\">amarinediary</a>, <a href=\"https://profiles.wordpress.org/gadgetroid/\">Amogh Harish</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey &#8222;Rarst&#8220; Savchenko</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">André Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/andy/\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a>, <a href=\"https://profiles.wordpress.org/annalamprou/\">annalamprou</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/anotherdave/\">anotherdave</a>, <a href=\"https://profiles.wordpress.org/anotia/\">anotia</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/antonlukin/\">Anton Lukin</a>, <a href=\"https://profiles.wordpress.org/vanyukov/\">Anton Vanyukov</a>, <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a>, <a href=\"https://profiles.wordpress.org/apokalyptik/\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/arena/\">arena</a>, <a href=\"https://profiles.wordpress.org/lephleg/\">Argyris Margaritis</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ariskataoka/\">ariskataoka</a>, <a href=\"https://profiles.wordpress.org/arkrs/\">arkrs</a>, <a href=\"https://profiles.wordpress.org/aruphi/\">Armand</a>, <a href=\"https://profiles.wordpress.org/arnaudban/\">ArnaudBan</a>, <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a>, <a href=\"https://profiles.wordpress.org/arunsathiya/\">Arun a11n</a>, <a href=\"https://profiles.wordpress.org/aspexi/\">Aspexi</a>, <a href=\"https://profiles.wordpress.org/atjn/\">atjn</a>, <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a>, <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/barry/\">Barry</a>, <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/pixolin/\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/utz119/\">Benachi</a>, <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a>, <a href=\"https://profiles.wordpress.org/bernhard%20reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/bmcculley/\">bmcculley</a>, <a href=\"https://profiles.wordpress.org/boblinthorst/\">Bob Linthorst</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/bogdanpreda/\">Bogdan Preda</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bradt/\">Brad Touesnard</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brechtvds/\">Brecht</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/brettshumaker/\">Brett Shumaker</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/cameronjonesweb/\">Cameron Jones</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/carlalexander/\">Carl Alexander</a>, <a href=\"https://profiles.wordpress.org/carlomanf/\">carlomanf</a>, <a href=\"https://profiles.wordpress.org/carlosgprim/\">carlosgprim</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/caseymilne/\">Casey Milne</a>, <a href=\"https://profiles.wordpress.org/cenay/\">Cenay Nailor</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">Ceyhun Ozugur</a>, <a href=\"https://profiles.wordpress.org/nhuja/\">Chandra M</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a>, <a href=\"https://profiles.wordpress.org/ryno267/\">Chuck Reynolds</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a>, <a href=\"https://profiles.wordpress.org/design_dolphin/\">CodePoet</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a>, <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Engle Robertson</a>, <a href=\"https://profiles.wordpress.org/crazycoders/\">crazycoders</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">critterverse</a>, <a href=\"https://profiles.wordpress.org/czapla/\">czapla</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">Dávid Szabó</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/damonganto/\">damonganto</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/diddledan/\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/vetyst/\">Danny</a>, <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/dartiss/\">David Artiss</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davidkryzaniak/\">David Kryzaniak</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/devle/\">devfle</a>, <a href=\"https://profiles.wordpress.org/devrekli/\">devrekli</a>, <a href=\"https://profiles.wordpress.org/dhruvkb/\">dhruvkb</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>, <a href=\"https://profiles.wordpress.org/dingdang/\">dingdang</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/djbu/\">djbu</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/donnapep/\">Donna Peplinskie</a>, <a href=\"https://profiles.wordpress.org/dougwollison/\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/dpik/\">dpik</a>, <a href=\"https://profiles.wordpress.org/dragongate/\">dragongate</a>, <a href=\"https://profiles.wordpress.org/drebbitsweb/\">Dreb Bits</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/eatsleepcode/\">eatsleepcode</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/itsjusteileen/\">Eileen Violini</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/aliveic/\">Emil E</a>, <a href=\"https://profiles.wordpress.org/emarticor/\">Emilio Martinez</a>, <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a>, <a href=\"https://profiles.wordpress.org/empatogen/\">empatogen</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/fabianpimminger/\">Fabian Pimminger</a>, <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/felixbaumgaertner/\">felixbaumgaertner</a>, <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/fijisunshine/\">fijisunshine</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann/\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/bueltge/\">Frank Bueltge</a>, <a href=\"https://profiles.wordpress.org/frosso1/\">frosso1 (a11n)</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/gab81/\">gab81</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekpress/\">GeekPress</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/geoffrey1963/\">Geoffrey</a>, <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/gregorlove/\">gRegor Morrill</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/hannahmalcolm/\">Hannah Malcolm</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">happiryu</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">hedgefield</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/hermpheus/\">Herm Martini</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/herrvigg/\">herrvigg</a>, <a href=\"https://profiles.wordpress.org/htmgarcia/\">htmgarcia</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/icopydoc/\">icopydoc</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/dragunoff/\">Ivaylo Draganov</a>, <a href=\"https://profiles.wordpress.org/wphound/\">Ivete Tecedor</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jacklenox/\">Jack Lenox</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jamesbonham/\">James Bonham</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/pondermatic/\">James Richards</a>, <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a>, <a href=\"https://profiles.wordpress.org/jamil95/\">jamil95</a>, <a href=\"https://profiles.wordpress.org/janak007/\">janak Kaneriya</a>, <a href=\"https://profiles.wordpress.org/janwoostendorp/\">janw.oostendorp</a>, <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a>, <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jeffikus/\">Jeffrey Pearce</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeremy80/\">jeremy80</a>, <a href=\"https://profiles.wordpress.org/jeroenreumkens/\">JeroenReumkens</a>, <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a>, <a href=\"https://profiles.wordpress.org/jillebehm/\">jillebehm</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/sephsekla/\">Joe Bailey-Roberts</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/jonkastonka/\">Johan Jonk Stenström</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/bhwebworks/\">John Sundberg</a>, <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/koke/\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/joseeyoast/\">Josee Wouters</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/dkampdesign/\">JoshuaDoshua</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/k3nsai/\">k3nsai</a>, <a href=\"https://profiles.wordpress.org/kaavyaiyer/\">kaavyaiyer</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">kafleg</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/vyskoczilova/\">Karolina Vyskocilova</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kittmedia/\">KittMedia</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/klevyke/\">klevyke</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/vdwijngaert/\">Koen Van den Wijngaert</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/devnel/\">Kyle Nel</a>, <a href=\"https://profiles.wordpress.org/lakrisgubben/\">lakrisgubben</a>, <a href=\"https://profiles.wordpress.org/notlaura/\">Lara Schenck</a>, <a href=\"https://profiles.wordpress.org/lmurillom/\">Larissa Murillo</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/lewiscowles/\">LewisCowles</a>, <a href=\"https://profiles.wordpress.org/lifeforceinst/\">lifeforceinst</a>, <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a>, <a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a>, <a href=\"https://profiles.wordpress.org/displaynone/\">Luis Sacristán</a>, <a href=\"https://profiles.wordpress.org/infolu/\">Luiz Araújo</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/m0ze/\">m0ze</a>, <a href=\"https://profiles.wordpress.org/maedahbatool/\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>, <a href=\"https://profiles.wordpress.org/travel_girl/\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/m-e-h/\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/mariaojob/\">Mary Job</a>, <a href=\"https://profiles.wordpress.org/marylauc/\">marylauc</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/mblach/\">mblach</a>, <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/meloniq/\">meloniq</a>, <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/mbabker/\">Michael Babker</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mikehansenme/\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley</a>, <a href=\"https://profiles.wordpress.org/mike_cowobo/\">Mike Martel</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">Mikhail Kobzarev</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/mkdgs/\">mkdgs</a>, <a href=\"https://profiles.wordpress.org/mmuyskens/\">mmuyskens</a>, <a href=\"https://profiles.wordpress.org/mmxxi/\">mmxxi</a>, <a href=\"https://profiles.wordpress.org/daddou/\">Mohamed El Amine DADDOU</a>, <a href=\"https://profiles.wordpress.org/mohamedfaragallah/\">Mohammed Faragallah</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/m_uysl/\">Mustafa Uysal</a>, <a href=\"https://profiles.wordpress.org/mweichert/\">mweichert</a>, <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/naoki0h/\">Naoki Ohashi</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nayanchamp7/\">Nazrul Islam Nayan</a>, <a href=\"https://profiles.wordpress.org/dway/\">nderambure</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/nicegamer7/\">nicegamer7</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/ninanmnm/\">ninanmnm</a>, <a href=\"https://profiles.wordpress.org/pianist787/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/nvartolomei/\">nvartolomei</a>, <a href=\"https://profiles.wordpress.org/oguzkocer/\">oguzkocer</a>, <a href=\"https://profiles.wordpress.org/olafklejnstrupjensen/\">olafklejnstrupjensen</a>, <a href=\"https://profiles.wordpress.org/olgabulat/\">Olga Bulat</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/otshelnik-fm/\">Otshelnik-Fm</a>, <a href=\"https://profiles.wordpress.org/oxyrealm/\">oxyrealm</a>, <a href=\"https://profiles.wordpress.org/ozh/\">Ozh</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/paaggeli/\">Panagiotis Angelidis</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/fantasy1125/\">Pascal Knecht</a>, <a href=\"https://profiles.wordpress.org/patkemper/\">Pat</a>, <a href=\"https://profiles.wordpress.org/patricklindsay/\">patricklindsay</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulstonier/\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/psrpinto/\">Paulo Pinto</a>, <a href=\"https://profiles.wordpress.org/pavelvisualcomposer/\">Pavel I</a>, <a href=\"https://profiles.wordpress.org/mrpauloen/\">Paweł</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/phena109/\">phena109</a>, <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a>, <a href=\"https://profiles.wordpress.org/strategio/\">Pierre SYLVESTRE</a>, <a href=\"https://profiles.wordpress.org/wppinar/\">Pinar</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/mordauk/\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/ptahdunbar/\">Pirate Dunbar</a>, <a href=\"https://profiles.wordpress.org/promz/\">Pramod Jodhani</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/pwallner/\">pwallner</a>, <a href=\"https://profiles.wordpress.org/pyronaur/\">pyronaur</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rafhun/\">rafhun</a>, <a href=\"https://profiles.wordpress.org/rkradadiya/\">Rajesh Radadiya</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/jontyravi/\">Ravi Vaghela</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/rellect/\">Refael Iliaguyev</a>, <a href=\"https://profiles.wordpress.org/renehermi/\">Rene Hermenau</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/reynhartono/\">reynhartono</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/rima1889/\">Rima Prajapati</a>, <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat</a>, <a href=\"https://profiles.wordpress.org/rnaby/\">Rnaby</a>, <a href=\"https://profiles.wordpress.org/robdxw/\">robdxw</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/rogertheriault/\">Roger Theriault</a>, <a href=\"https://profiles.wordpress.org/rogerlos/\">rogerlos</a>, <a href=\"https://profiles.wordpress.org/roo2/\">roo2</a>, <a href=\"https://profiles.wordpress.org/lev0/\">Roy</a>, <a href=\"https://profiles.wordpress.org/geekstreetwp/\">Russell Aaron</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/soean/\">Sören Wrede</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Saša</a>, <a href=\"https://profiles.wordpress.org/sabrinazeidan/\">Sabrina Zeidan</a>, <a href=\"https://profiles.wordpress.org/sahilmepani/\">Sahil Mepani</a>, <a href=\"https://profiles.wordpress.org/solarissmoke/\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sandipmondal/\">Sandip Mondal</a>, <a href=\"https://profiles.wordpress.org/sannevndrmeulen/\">Sanne van der Meulen</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/sasagar/\">SASAPIYO</a>, <a href=\"https://profiles.wordpress.org/satrancali/\">satrancali</a>, <a href=\"https://profiles.wordpress.org/savicmarko1985/\">savicmarko1985</a>, <a href=\"https://profiles.wordpress.org/gmagicscott/\">Scott Lesovic</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/scottconnerly/\">scottconnerly</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/sean212/\">Sean Fisher</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sebbb/\">sebbb</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">sergiomdgomes</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/silb3r/\">silb3r</a>, <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/sirstuey/\">SirStuey</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/spikeuk1/\">spikeuk1</a>, <a href=\"https://profiles.wordpress.org/spytzo/\">spytzo</a>, <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a>, <a href=\"https://profiles.wordpress.org/khromov/\">Stanislav Khromov</a>, <a href=\"https://profiles.wordpress.org/deustron/\">Stefan Hüsges</a>, <a href=\"https://profiles.wordpress.org/stefanjoebstl/\">stefanjoebstl</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell/\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sumaiyasiddika/\">Sumaiya Siddika</a>, <a href=\"https://profiles.wordpress.org/sumanm/\">Suman</a>, <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/5um17/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/sushmak/\">sushmak</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/tamlyn/\">tamlyn</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Tetsuaki Hamano</a>, <a href=\"https://profiles.wordpress.org/themes-1/\">them.es</a>, <a href=\"https://profiles.wordpress.org/kraftner/\">Thomas Kräftner</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/thomas-vitale/\">Thomas Vitale</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timotijhof/\">TimoTijhof</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tmdk/\">tmdk</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemerö</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/trejder/\">trejder</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a>, <a href=\"https://profiles.wordpress.org/vipulc2/\">Vipul Chandel</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/wangql/\">wangql</a>, <a href=\"https://profiles.wordpress.org/webdragon/\">WebDragon</a>, <a href=\"https://profiles.wordpress.org/wendyjchen/\">Wendy Chen</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/xavivars/\">Xavi Ivars</a>, <a href=\"https://profiles.wordpress.org/tikifez/\">Xristopher Anderton</a>, <a href=\"https://profiles.wordpress.org/y_kolev/\">Y_Kolev</a>, <a href=\"https://profiles.wordpress.org/yansern/\">Yan Sern</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yuliyan/\">yuliyan</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, <a href=\"https://profiles.wordpress.org/zackkrida/\">Zack Krida</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, <a href=\"https://profiles.wordpress.org/zkancs/\">zkancs</a> und <a href=\"https://profiles.wordpress.org/sunxiyuan/\">孙锡源</a>.</p>\n\n\n\n<p>Zusätzlich zu diesen Contributors vielen Dank den Freiwilligen in den <a href=\"https://wordpress.org/support/\">Support-Foren</a>, die Fragen von Leuten aus aller Welt beantworten, egal ob sie WordPress zum ersten Mal benutzen oder seit dem ersten Release 2003 dabei sind. Diese Releases sind wegen ihrer Anstrengung so erfolgreich wie sie sind.</p>\n\n\n\n<p>Und ebenfalls vielen Dank allen freiwilligen Übersetzerinnen und Übersetzern, die auf <a href=\"https://translate.wordpress.org/\">translate.WordPress.org</a> dabei mithelfen WordPress in über 200 Sprachen verfügbar zu machen. 80 Sprachen waren zum finalen WordPress-5.8-Release zu 80 Prozent oder mehr übersetzt, und weitere Sprachen sind auf dem Weg dahin.&nbsp;</p>\n\n\n\n<p>Wenn ihr zu WordPress beitragen möchtet, könnt ihr auf <a href=\"https://make.wordpress.org/\">Make-WordPress</a> mehr dazu erfahren.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:60:\"\n            \n              \n              \n              \n              \n                              \n              \n              \n\n                                    \n                                                                              \n                                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 5.8 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://de.wordpress.org/2021/07/wordpress-5-8-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Jul 2021 08:22:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Entwicklung\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=5094\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"Die Veröffentlichung der finalen Version WordPress 5.8 rückt näher. Nächste Woche am 20. Juli 2021 ist es dann voraussichtlich so weit. Doch vorab gibt es seit heute (14. Juli) eine weitere Entwicklungsversion: WordPress 5.8 RC 3. Zum Testen installiere WordPress 5.8 RC 3 in einer abgesicherten Testumgebung, entweder mit dem Zip-Archiv oder über das Plugin [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Angelika Reisiger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1207:\"<p>Die Veröffentlichung der finalen Version WordPress 5.8 rückt näher. Nächste Woche am 20. Juli 2021 ist es dann voraussichtlich so weit. Doch vorab gibt es seit heute (14. Juli) eine weitere Entwicklungsversion: WordPress 5.8 RC 3.</p>\n<p>Zum Testen installiere WordPress 5.8 RC 3 in einer abgesicherten Testumgebung, entweder mit dem <a href=\"https://wordpress.org/wordpress-5.8-RC3.zip\">Zip-Archiv</a> oder über das Plugin <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>. Eine dritte Möglichkeit ist die Verwendung von WP-CLI: <code>wp core update --version=5.8-RC3</code>.</p>\n<h2>Weitere Informationen</h2>\n<ul>\n<li><a href=\"https://de.wordpress.org/2021/06/wordpress-5-8-release-candidate/#development\">Falls du ein Theme oder Plugin entwickelt hast</a></li>\n<li><a href=\"https://de.wordpress.org/2021/06/wordpress-5-8-release-candidate/#contribute\">Wie du helfen kannst</a></li>\n</ul>\n<p>Details zu den Änderungen findest du in den Blog-Beiträgen zu <a href=\"https://de.wordpress.org/2021/06/wordpress-5-8-beta-1/\">WordPress 5.8 Beta 1</a> sowie <a href=\"https://de.wordpress.org/2021/06/wordpress-5-8-release-candidate/\">WordPress 5.8 RC 1</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:60:\"\n              \n              \n              \n              \n              \n                              \n              \n              \n\n                                    \n                                                                              \n                                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 5.8 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://de.wordpress.org/2021/07/wordpress-5-8-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Jul 2021 08:42:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Entwicklung\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://de.wordpress.org/?p=5083\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:388:\"Der zweite Release Candidate (RC) für WordPress 5.8 wurde am 6. Juli 2021 veröffentlicht. Das geplante Veröffentlichungsdatum der finalen Version ist unverändert der 20. Juli. Du hast also noch knapp 2 Wochen Zeit, um deine installierten Plugins oder dein Theme mit der kommenden Version zu testen. Dafür installiere WordPress 5.8 RC 2 in einer abgesicherten Testumgebung, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Angelika Reisiger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1336:\"<p>Der zweite Release Candidate (RC) für WordPress 5.8 wurde am 6. Juli 2021 veröffentlicht. Das geplante Veröffentlichungsdatum der finalen Version ist unverändert der <strong>20. Juli</strong>. Du hast also noch knapp 2 Wochen Zeit, um deine installierten Plugins oder dein Theme mit der kommenden Version zu testen.</p>\n<p>Dafür installiere WordPress 5.8 RC 2 in einer abgesicherten Testumgebung, entweder mit dem <a href=\"https://wordpress.org/wordpress-5.8-RC2.zip\">Zip-Archiv</a> oder über das Plugin <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>. Eine dritte Möglichkeit ist die Verwendung von WP-CLI: <code>wp core update --version=5.8-RC2</code>.</p>\n<h2>Weitere Informationen</h2>\n<ul>\n<li><a href=\"https://de.wordpress.org/2021/06/wordpress-5-8-release-candidate/#development\">Falls du ein Theme oder Plugin entwickelt hast</a></li>\n<li><a href=\"https://de.wordpress.org/2021/06/wordpress-5-8-release-candidate/#contribute\">Wie du helfen kannst</a> (Fehler melden und übersetzen)</li>\n</ul>\n<p>Details zu den Änderungen und Neuerungen findest du in den Blog-Beiträgen zu <a href=\"https://de.wordpress.org/2021/06/wordpress-5-8-beta-1/\">WordPress 5.8 Beta 1</a> sowie <a href=\"https://de.wordpress.org/2021/06/wordpress-5-8-release-candidate/\">WordPress 5.8 RC 1</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:47:\"https://de.wordpress.org/category/release/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n        hourly  \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n      1       \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 24 Feb 2022 16:05:04 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 24 Feb 2022 08:31:10 GMT\";s:12:\"x-robots-tag\";s:14:\"noindex,follow\";s:4:\"link\";s:61:\"<https://de.wordpress.org/category/release/>; rel=\"canonical\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20211220193300\";}','no'),(16616,'_transient_timeout_feed_mod_f014c832422b67a4cec692b17aa40756','1645761904','no'),(16617,'_transient_feed_mod_f014c832422b67a4cec692b17aa40756','1645718704','no'),(16618,'_transient_timeout_feed_bf9be1b90efddca1b5bab056c013d127','1645761904','no'),(16619,'_transient_feed_bf9be1b90efddca1b5bab056c013d127','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:2:\"\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:4:\"0.92\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:37:\"\n    \n      \n      \n      \n      \n      \n\n    \n\n    \n      \n      \n      \n      \n      \n      \n      \n      \n      \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Deutschsprachiger Channel – WordPress Deutsch Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://de.planetwp.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"Der Planet listet Inhalte ausgewählter Blogs auf, die regelmäßig Beiträge zu WordPress publizieren.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Mo, 21 Feb 2022 07:58:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"docs\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://backend.userland.com/rss092\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"de-DE\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:13:\"\n         \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WordPress News #326 / 300. WP Letter, Adblocker, Script-Loading und WordPress 6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://feed.wpletter.de/link/14399/15093545/326\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n         \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"Lokale Google Fonts als WordPress-Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://www.perun.net/2022/02/16/lokale-google-fonts-als-wordpress-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n                \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WordPress News #325 / Sicherheitslücke in Plugin, Tracking in Browsern\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://feed.wpletter.de/link/14399/15079983/325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n           \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Google-Fonts lokal in einer WordPress-Installation laden\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://www.perun.net/2022/02/08/google-fonts-lokal-in-einer-wordpress-installation-laden/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n                \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WordPress News #324 / Gutenberg-Performance, Super-List-Block, CMS-Churn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://feed.wpletter.de/link/14399/15063729/324\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n          \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WordPress 5.9 verunsichert User beim Login\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://www.perun.net/2022/02/01/wordpress-5-9-verunsichert-user-beim-login/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n            \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 5.9 – ein Überblick\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://www.perun.net/2022/01/13/wordpress-5-9-ein-ueberblick/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n            \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Häufige WordPress-Fehler und wie man sie behebt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://www.perun.net/2022/01/10/haeufige-wordpress-fehler-und-wie-man-sie-behebt/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n                \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WordPress News #323 / Performance in WP 5.9, Omikron und WordCamps, 14 Jahre WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://feed.wpletter.de/link/14399/14997788/323\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n            \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WordPress News #322 / Der Hosting-Adventskalender und WordPress in 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://feed.wpletter.de/link/14399/14985501/322\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:8;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:7:{s:4:\"date\";s:29:\"Thu, 24 Feb 2022 16:05:05 GMT\";s:6:\"server\";s:6:\"Apache\";s:4:\"link\";s:60:\"<https://de.planetwp.org/wp-json/>; rel=\"https://api.w.org/\"\";s:7:\"upgrade\";s:6:\"h2,h2c\";s:13:\"last-modified\";s:29:\"Mon, 21 Feb 2022 07:58:00 GMT\";s:4:\"etag\";s:34:\"\"814f1542dba177d633869fbc07c5b6ef\"\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";}}s:5:\"build\";s:14:\"20211220193300\";}','no'),(16620,'_transient_timeout_feed_mod_bf9be1b90efddca1b5bab056c013d127','1645761904','no'),(16621,'_transient_feed_mod_bf9be1b90efddca1b5bab056c013d127','1645718704','no'),(16622,'_transient_timeout_feed_e0061ca2fa5b884e483872aa34d3e7eb','1645761904','no');
+INSERT INTO `wp_options` VALUES (16623,'_transient_feed_e0061ca2fa5b884e483872aa34d3e7eb','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n       \n      \n      \n      \n      \n      \n      \n      \n      \n      \n              \n              \n              \n              \n              \n              \n              \n              \n              \n      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"UpdraftPlus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://updraftplus.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordPress\'s leading backup plugin - backup, restore and clone WordPress sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Feb 2022 13:57:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=5.8.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:97:\"\n              \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"How to revamp and redesign your WordPress site guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://updraftplus.com/how-to-revamp-and-redesign-your-wordpress-site-guide/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://updraftplus.com/how-to-revamp-and-redesign-your-wordpress-site-guide/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Feb 2022 13:57:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:9:{i:0;a:5:{s:4:\"data\";s:20:\"Other WordPress news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"How to\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:12:\"instrcutions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"redesign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:6:\"revamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:4:\"site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:6:\"update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:8;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1362762\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:759:\"<p>It might surprise you to learn that WordPress powers nearly 40% of all the websites on the internet. It’s an outrageously high figure, considering that more than a billion websites currently exist. In this blog we are going to look &#8230; <a href=\"https://updraftplus.com/how-to-revamp-and-redesign-your-wordpress-site-guide/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/how-to-revamp-and-redesign-your-wordpress-site-guide/\">How to revamp and redesign your WordPress site guide</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"John Allen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:19084:\"<p><span style=\"font-weight: 400;\">It might surprise you to learn that WordPress powers nearly </span><a href=\"https://w3techs.com/technologies/details/cm-wordpress\"><span style=\"font-weight: 400;\">40%</span></a><span style=\"font-weight: 400;\"> of all the websites on the internet. It’s an outrageously high figure, considering that more than a billion websites currently exist. In this blog we are going to look at a recommended &#8220;how to redesign WordPress site guide&#8221;.</span></p>\n<h1><a href=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-32.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1362781\" src=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-32.png\" alt=\"\" width=\"512\" height=\"450\" srcset=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-32.png 512w, https://updraftplus.com/wp-content/uploads/2022/02/unnamed-32-480x422.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 512px, 100vw\" /></a></h1>\n<p><a href=\"https://devrix.com/wordpress-statistics-2020/\">Image Source</a></p>\n<p><span style=\"font-weight: 400;\">WordPress is loved for its ease of use, the customizability it offers and the low costs associated with this particular CMS platform. While there are many advantages for the user, there are also some issues that need to be considered too.</span></p>\n<p><span style=\"font-weight: 400;\">Due to the low barrier of entry with WordPress, it’s quite common to see simply-designed websites that are basic in their design and function. For individuals, start-ups and small businesses, this might be fine to begin with. However the likelihood is that, sooner or later, a revamp is going to become necessary.</span></p>\n<p><span style=\"font-weight: 400;\">Any business that wants to take advantage of </span><a href=\"https://www.ve.com/blog/ecommerce-sales-channels\"><span style=\"font-weight: 400;\">ecommerce sales channels</span></a><span style=\"font-weight: 400;\"> will surely recognize that the importance of a website’s design cannot be ignored. In terms of your digital real estate, your website is of primary importance. Rather than sticking with your original and rushed site, site owners are better off pressing ahead with a redesign that is sure to impress. </span></p>\n<h2><span style=\"font-weight: 400;\">What Is a website redesign?</span></h2>\n<p><span style=\"font-weight: 400;\">It might sound obvious, but the truth is that many people don’t fully understand exactly what a website redesign is or what it entails. There’s a perception that website redesigns are wholly cosmetic and simply change the appearance of the front page with a new logo and colour scheme, but of course that’s not the case at all.</span></p>\n<p><span style=\"font-weight: 400;\">A website redesign is a process where you update, refashion, repair, or restructure a website. You do this with the purpose of building greater traffic, more sustained engagement and more substantial revenue. </span></p>\n<p><span style=\"font-weight: 400;\">The scope of a redesign can change considerably from one website to the next. Whenever starting any kind of work or making changes on your WordPress site, it is essential that you create a backup using </span><a href=\"https://updraftplus.com/\"><span style=\"font-weight: 400;\">UpdraftPlus</span></a><span style=\"font-weight: 400;\"> to safeguards every page of the website. There will be some website redesigns that will only change backend upgrades or technical repairs. After all, you might have already nailed the aesthetic for your brand. </span></p>\n<p><span style=\"font-weight: 400;\">The direction of your website revamp can also be determined by the type of business you’re running &#8211; at least in part. For example, the challenges for creating and designing an effective website for a </span><a href=\"https://8x8.com/s/ccaas\"><span style=\"font-weight: 400;\">CCaaS solution</span></a><span style=\"font-weight: 400;\"> provider will obviously vary from a clothes retailer. </span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-33.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1362780\" src=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-33.png\" alt=\"\" width=\"512\" height=\"341\" srcset=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-33.png 512w, https://updraftplus.com/wp-content/uploads/2022/02/unnamed-33-480x320.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 512px, 100vw\" /></a></p>\n<p><a href=\"https://unsplash.com/photos/zs98a0DtKL4\"><span style=\"font-weight: 400;\">Image Source</span></a></p>\n<h3><span style=\"font-weight: 400;\">Why is a website redesign necessary?</span></h3>\n<p><span style=\"font-weight: 400;\">It’s possible that the WordPress website you built is one that you really like, but have found that it is not performing to expectations. This might not be because the previous design process was a failure. Instead, it’s likely to be a simple matter of trends.</span></p>\n<p><span style=\"font-weight: 400;\">There’s also the state of your business to consider. The direction of your organization might have changed, either in terms of branding or sales strategy. These changes can result in a need for website redesigns.</span></p>\n<p><span style=\"font-weight: 400;\">A comprehensive redesign can raise the utility of your website to better focus on your sales strategy and customers. It can provide a better on-site experience, leading to more opportunities for your business, greater revenue and more profit.</span></p>\n<h2><span style=\"font-weight: 400;\">Preparing for your WordPress redesign</span></h2>\n<p><span style=\"font-weight: 400;\">While it might be tempting to simply throw yourself into a redesign project, certain steps need to be taken prior to any upgrading. Measured steps are your best friend here. </span></p>\n<p><span style=\"font-weight: 400;\">Here’s how you get started:</span></p>\n<h3><span style=\"font-weight: 400;\">1. Understand the redesign’s purpose</span></h3>\n<p><span style=\"font-weight: 400;\">If you’re going to complete an effective WordPress redesign, you need to understand why you’re carrying out the process in the first place. </span></p>\n<p><span style=\"font-weight: 400;\">Often, website redesigns are completed because the current setup can look dated and stale. Your site may have the right functionality, but could be in desperate need of a new aesthetic. You do not have to create a whole new site and start again from square one if your site is already achieving results, but just needs an update. </span></p>\n<p><span style=\"font-weight: 400;\">Understanding your motivation behind a revamp means that you’re going to be far better placed to create a roadmap.</span></p>\n<h3><span style=\"font-weight: 400;\">2. Collect vital data</span></h3>\n<p><span style=\"font-weight: 400;\">A website redesign should never be a matter of guesswork. In the digital age we have access to a mountain of data &#8211; it’s time that you used it.</span></p>\n<p><span style=\"font-weight: 400;\">With website analytic software &#8211; like Google Analytics &#8211; you can garner all sorts of valuable information. You can unlock insights regarding the types of people visiting your website, as well as their behavior while they’re on your site. </span></p>\n<p><span style=\"font-weight: 400;\">The more information you can gather, the better. It’s also worth considering user questionnaires, surveys and feedback forms.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-34.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1362779\" src=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-34.png\" alt=\"\" width=\"512\" height=\"358\" srcset=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-34.png 512w, https://updraftplus.com/wp-content/uploads/2022/02/unnamed-34-480x336.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 512px, 100vw\" /></a></p>\n<p><a href=\"https://unsplash.com/photos/sSPzmL7fpWc\"><span style=\"font-weight: 400;\">Image Source</span></a></p>\n<h3><span style=\"font-weight: 400;\">3. Complete a website audit</span></h3>\n<p><span style=\"font-weight: 400;\">It can sometimes be challenging to see our own WordPress sites with clarity. To bring about effective change however, it is a process you have to complete.</span></p>\n<p><span style=\"font-weight: 400;\">A website audit is your next step.</span></p>\n<p><span style=\"font-weight: 400;\">Take a long, impartial and hard look at your website in the context of current web design trends. Go through the process of completing the actions on your website that ideally you want your users to be following in order to make a purchase/sign up etc. Is the process clear? Are there any tasks which may be a struggle? Take note in order to fix these issues when carrying out your redesign.</span></p>\n<p><span style=\"font-weight: 400;\">Visit your competitor’s websites and see how they have set up their designs and how they funnel potential customers into making a purchase. This is an excellent way to get some inspiration and take advantage of all the hard work and research others have already done. You’ll also need to undertake a review of all the plugins that you’re using for your website. WordPress is an impressive CMS platform, but having too many unused plugins on your site can cause it to load slower than it would otherwise.</span></p>\n<h3><span style=\"font-weight: 400;\">4. Create a website redesign roadmap</span></h3>\n<p><span style=\"font-weight: 400;\">Now that you’re armed with all the information needed to create your wonderful new WordPress site, it’s time to get started with a concrete plan.</span></p>\n<p><span style=\"font-weight: 400;\">Begin by creating a website redesign roadmap that gives you a clear plan of action. </span></p>\n<p><span style=\"font-weight: 400;\">This will ensure you have a total understanding of the scope of the project, and the time needed to get the job done. You’ll also need to consider the key performance indicators (KPIs) that will help you understand the effectiveness of the redesign once you complete it.</span></p>\n<h2><span style=\"font-weight: 400;\">Performing Your WordPress website redesign</span></h2>\n<p><span style=\"font-weight: 400;\">With all the information required to optimize and update your site, you are ready to press on with the redesign. But before you do, there are some important tasks you have to complete first. </span></p>\n<h3><span style=\"font-weight: 400;\">Back-up Your site</span></h3>\n<p><span style=\"font-weight: 400;\">If you are making any changes to your site &#8211; changes as small as installing, updating or deleting a plugin, then you should always take a backup first. </span><a href=\"https://updraftplus.com/\"><span style=\"font-weight: 400;\">UpdraftPlus</span></a><span style=\"font-weight: 400;\"> is the world’s leading and most popular WordPress backup plugin. Download and install the plugin today for total peace of mind. Even the most minor of changes can affect your site in ways that could make it unusable. </span></p>\n<p><span style=\"font-weight: 400;\">With UpdraftPlus installed, if anything goes awry while you’re in the midst of making changes, you have a fall-back option to restore your site to its original state. </span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-35.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1362778\" src=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-35.png\" alt=\"\" width=\"512\" height=\"324\" srcset=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-35.png 512w, https://updraftplus.com/wp-content/uploads/2022/02/unnamed-35-480x304.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 512px, 100vw\" /></a></p>\n<p><a href=\"https://www.oberlo.com/blog/branding-statistics\"><span style=\"font-weight: 400;\">Image Source</span></a></p>\n<h3><span style=\"font-weight: 400;\">Create a style guide</span></h3>\n<p><span style=\"font-weight: 400;\">In web design, a style guide acts as a compilation of the code standards of a particular site. These choices impact the site’s visual style &#8211; including patterns, fonts, headers and links. </span><span style=\"font-weight: 400;\">For those who already have a style guide, this is also a good opportunity to update it. Playing with colors, fonts and design assets to craft an impressive aesthetic is always the goal.</span></p>\n<h3><span style=\"font-weight: 400;\">Create Your wireframes</span></h3>\n<p><span style=\"font-weight: 400;\">A wireframe is an illustration of a web page’s interface. It denotes the structure, allocation of space, implemented functions and the intended behaviors of users. </span><span style=\"font-weight: 400;\">In conjunction with the data gathered earlier, wireframes can help give your site redesign direction and focus. With wireframing carried out, it’s far likelier that your website will offer seamless navigation. </span></p>\n<h3><span style=\"font-weight: 400;\">Cut unwanted elements</span></h3>\n<p><span style=\"font-weight: 400;\">This is a chance to get ruthless with the parts of your website you no longer deem necessary. </span><span style=\"font-weight: 400;\">Many WordPress websites get cluttered without you even realizing what’s happening. A redesign is a great chance to re-evaluate what you might or might not need. </span><span style=\"font-weight: 400;\">You should also prioritize getting rid of other unwanted content, like spam comments. The more clean and user-friendly your website, the better the user experience. </span></p>\n<h3><span style=\"font-weight: 400;\">Upload a Favicon</span></h3>\n<p><span style=\"font-weight: 400;\">This isn’t a term that everyone is familiar with, but favicons are something you should probably know about. </span><span style=\"font-weight: 400;\">A favicon (sometimes known as a favorites icon or a bookmark icon) is the small image that users will see when they bookmark your website. When your site is added to a users list of bookmarks, the favicon will allow them to quickly identify you.</span></p>\n<p><span style=\"font-weight: 400;\">Every small step you take to create a more enjoyable user experience will be appreciated. </span></p>\n<h3><span style=\"font-weight: 400;\">Introduce a new TLD</span></h3>\n<p><span style=\"font-weight: 400;\">The most effective websites are memorable &#8211; they stand out and stick in the memory. It might surprise you how a small change &#8211; like a new top-level domain (TLD) &#8211; can make such a large difference. </span><span style=\"font-weight: 400;\">Many Saas and </span><a href=\"https://8x8.com/what-is-cpaas\"><span style=\"font-weight: 400;\">CPaaS providers</span></a><span style=\"font-weight: 400;\"> are choosing to register with new TLDs in an effort to set themselves apart, as in a crowded and competitive market space, every edge counts. </span><span style=\"font-weight: 400;\">You might consider an </span><a href=\"https://www.onlydomains.com/domains/British-Indian-Ocean-Territory/.io\"><span style=\"font-weight: 400;\">io registrar</span></a><span style=\"font-weight: 400;\"> for your WordPress website for example. This TLD has a great visual, has tech associations (input/output), and has a pronunciation that rolls off the tongue. </span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-36.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1362777\" src=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-36.png\" alt=\"\" width=\"512\" height=\"341\" srcset=\"https://updraftplus.com/wp-content/uploads/2022/02/unnamed-36.png 512w, https://updraftplus.com/wp-content/uploads/2022/02/unnamed-36-480x320.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 512px, 100vw\" /></a></p>\n<p><a href=\"https://unsplash.com/photos/v9FQR4tbIq8\"><span style=\"font-weight: 400;\">Image Source</span></a></p>\n<h3><span style=\"font-weight: 400;\">Create your prototypes</span></h3>\n<p><span style=\"font-weight: 400;\">Next you will want to create prototypes. </span><span style=\"font-weight: 400;\">This is the point at which you’ll really be able to tell how effective your website is going to be as you will get a good feel for the interface and the aesthetic. However, completing your prototypes is only half the battle. </span><span style=\"font-weight: 400;\">It’s also necessary to complete extensive quality assurance checks. These evaluations will ensure that no unwanted hiccups surface once your WordPress site is back up and running. </span></p>\n<h3><span style=\"font-weight: 400;\">Roll out your redesigned site</span></h3>\n<p><span style=\"font-weight: 400;\">With the new design complete and the prototypes approved, the moment to go live has arrived. </span><span style=\"font-weight: 400;\">If you have used a </span><a href=\"https://updraftplus.com/how-to-create-a-staging-site-clone-for-wordpress-with-updraftclone/\"><span style=\"font-weight: 400;\">staging site</span></a><span style=\"font-weight: 400;\"> to redesign your site, then you will now have to transfer the new site over to the live site. You’ll have to monitor your website’s performance metrics and keep a close eye on those key performance indicators for a period after the redesign’s launch. </span></p>\n<p><span style=\"font-weight: 400;\">Again, gathering data using analytics software and user surveys is an excellent way to determine the success of your WordPress redesign and if there are any issues that need to be fixed. </span></p>\n<h2><span style=\"font-weight: 400;\">Revamping WordPress websites made easy</span></h2>\n<p><span style=\"font-weight: 400;\">A lot of time, effort and work goes into a website. There are a huge number of elements to take care of and factors to consider. Even with a user-friendly CMS platform like WordPress, things can still get complicated. </span><span style=\"font-weight: 400;\">As a result, many people will put off carrying out or even thinking about a redesign, as long as the site currently works. </span><span style=\"font-weight: 400;\">With the help of this essential guide on how to complete a WordPress website redesign, it doesn’t have to be painful. Follow the tips listed above, back-up your site using </span><a href=\"https://updraftplus.com/\"><span style=\"font-weight: 400;\">UpdraftPlus</span></a><span style=\"font-weight: 400;\">, and you can’t go wrong!</span></p>\n<h4><b><a href=\"https://www.linkedin.com/in/johnlallen/\">John Allen</a> &#8211; Director, SEO, <a href=\"https://8x8.com/what-is-sip-trunking\">8&#215;8</a></b></h4>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/how-to-revamp-and-redesign-your-wordpress-site-guide/\">How to revamp and redesign your WordPress site guide</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://updraftplus.com/how-to-revamp-and-redesign-your-wordpress-site-guide/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:79:\"\n              \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"UpdraftPlus security release – 1.22.3 / 2.22.3 – please upgrade\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://updraftplus.com/updraftplus-security-release-1-22-3-2-22-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://updraftplus.com/updraftplus-security-release-1-22-3-2-22-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Feb 2022 11:43:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:28:\"UpdraftPlus development news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1361578\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:767:\"<p>Our new UpdraftPlus release, 1.22.3 (free version) / 2.22.3 (paid versions) is a security release. The short version is: you should update. To get the details, read on! On the evening of February 15th, we received a security defect report &#8230; <a href=\"https://updraftplus.com/updraftplus-security-release-1-22-3-2-22-3/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-security-release-1-22-3-2-22-3/\">UpdraftPlus security release &#8211; 1.22.3 / 2.22.3 &#8211; please upgrade</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"udadmin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4188:\"<p>Our new UpdraftPlus release, 1.22.3 (free version) / 2.22.3 (paid versions) is a security release. The short version is: you should update. To get the details, read on!</p>\n<p>On the evening of February 15th, we received a security defect report from security researcher Marc-Alexandre Montpas of Automattic, who during an audit of UpdraftPlus found a previously unknown defect in current versions of UpdraftPlus, which has had <a href=\"https://www.cve.org/ResourcesSupport/FAQs\">a CVE identifier reserved</a> of CVE-2022-23303.</p>\n<p>This defect allows any logged-in user on a WordPress installation with UpdraftPlus active to exercise the privilege of downloading an existing backup, a privilege which should have been restricted to administrative users only. This was possible because of a missing permissions check on code related to checking current backup status. This allowed the obtaining of an internal identifier which was otherwise unknown, and could then be used to pass a check upon permission to download.</p>\n<p>This means that if your WordPress site allows untrusted users to have a WordPress login, and if you have any existing backup, then you are potentially vulnerable to a technically skilled user working out how to download the existing backup. Affected sites are at risk of data loss / data theft via the attacker accessing a copy of your site&#8217;s backup, if your site contains anything non-public. I say &#8220;technically skilled&#8221;, because at that point, no public proof of how to leverage this exploit has been made. At this point in time, it relies upon a hacker reverse-engineering the changes in the latest UpdraftPlus release to work it out. However, you should certainly not rely upon this taking long, but should update immediately. If you are the only user on your WordPress site, or if all your users are trusted, then you are not vulnerable, but we still recommend updating in any case.</p>\n<p>Users who are using <a href=\"http://updraftplus.com/shop/updraftplus-premium/\">UpdraftPlus Premium&#8217;s</a> feature for encrypting your database backup are protected against data loss/theft from this problem, assuming that you have kept your encryption password secret. (There is no known vulnerability allowing the attacker to also access this). In such cases, only any confidential information in the backup of your files is at risk (and then usually only your media/upload files, since plugins and themes are usually only public code that contains nothing sensitive, being downloadable from their original supplier/author by any member of the public). Note also that the WordPress database, following modern security standards, hashes stored passwords. This means that your WordPress login password is protected even from someone who has obtained even an unencrypted copy of it.</p>\n<p>This information is now being released approximately a day after updated, secured versions of UpdraftPlus became available. During that time, the majority of sites have been updated.</p>\n<p>Again, we urge all users to update if they have not done so already. We at UpdraftPlus sincerely apologise for any and all inconvenience that has been caused, and wish to thank Marc for working together with us. From the moment we received the report, it was &#8220;all hands on deck&#8221;. An update was pushed to Premium users within the hour. We have lost a good amount of sleep, because your sites and their backups matter to us, and we will continue working hard to make sure that continues to be the case.</p>\n<p>(Addendum: versions 1.22.4 / 2.22.4 have subsequently been released, which deals with a conflict with a bug in a popular third-party plugin, via adding a work-around (we have also reported the issue to the plugin author)).</p>\n<p>David Anderson (lead developer)</p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-security-release-1-22-3-2-22-3/\">UpdraftPlus security release &#8211; 1.22.3 / 2.22.3 &#8211; please upgrade</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://updraftplus.com/updraftplus-security-release-1-22-3-2-22-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:100:\"\n            \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WP-Optimize vs W3 Total Cache (W3TC): Which is the best WordPress optimization plugin?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://updraftplus.com/wp-optimize-vs-w3-total-cache-w3tc-which-is-the-best-wordpress-optimization-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://updraftplus.com/wp-optimize-vs-w3-total-cache-w3tc-which-is-the-best-wordpress-optimization-plugin/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Feb 2022 16:40:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:10:{i:0;a:5:{s:4:\"data\";s:11:\"WP Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"Best\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Caching\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:12:\"optimization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:4:\"W3TC\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:17:\"which is the best\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:11:\"WP-Optimise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:8;a:5:{s:4:\"data\";s:11:\"WP-Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:9;a:5:{s:4:\"data\";s:3:\"wpo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1356252\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:854:\"<p>When there are two equally great products gaining popularity at a fairly equal pace in the same market, only small but important detail can set them apart.    Think of two high end hairdressers that both offer the same services and &#8230; <a href=\"https://updraftplus.com/wp-optimize-vs-w3-total-cache-w3tc-which-is-the-best-wordpress-optimization-plugin/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wp-optimize-vs-w3-total-cache-w3tc-which-is-the-best-wordpress-optimization-plugin/\">WP-Optimize vs W3 Total Cache (W3TC): Which is the best WordPress optimization plugin?</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Melvin Braide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11086:\"<p><iframe loading=\"lazy\" title=\"WP-Optimize vs. W3TC: Which is the best WordPress optimization plugin?\" width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/VqIU5IfZnqU?feature=oembed\"  allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<p><span style=\"font-weight: 400;\">When there are two equally great products gaining popularity at a fairly equal pace in the same market, only small but important detail can set them apart.   </span></p>\n<p><span style=\"font-weight: 400;\">Think of two high end hairdressers that both offer the same services and quality hair cuts. The first hairdresser will answer the phone and process your booking within 30 seconds, while the second hairdresser leaves you on hold for 20 minutes as they are too understaffed to take the call. Which hairdresser would you most likely end up going to? In a world where your time is limited and everything demands efficiency, your answer would most likely swing towards the former. </span></p>\n<p><span style=\"font-weight: 400;\">This is the same with websites. People are more likely to visit and continue to use your website if they are sure it’s fast. The loading speed will largely determine if they will stay or return. For every 100 people that visit your WordPress website, around 50 of them will abort if it takes more than 3 seconds to load. </span></p>\n<p><span style=\"font-weight: 400;\">In this article we will discuss two of the most popular speed boosting WordPress plugins &#8211; WP-Optimize and W3TC. While both of these plugins can increase your website speed, the small, but important details will dictate which plugin you end up using.</span></p>\n<h2><b>What can performance-boosting plugins do for your WordPress website?</b></h2>\n<p><span style=\"font-weight: 400;\">At some point, everything needs a boost to improve performance. Race cars require a measured dose of nitrous oxide for that extra final kick and humans consume energy drinks to get some more work done. A website is no different. A WordPress site needs a performance-boosting plugin such as WP-Optimize or W3TC, to significantly improve its performance. </span></p>\n<h2><b>WP-Optimize</b></h2>\n<p><span style=\"font-weight: 400;\">WP-Optimize is a market leading all-in-one plugin. It caches your WordPress website, cleans your database and compresses your images. With over a million active installations and tens of thousands of 5-star ratings from all over the world, WP-Optimize ranks at the very top of the list of the most trusted, used and sought-after performance-boosting plugins. </span></p>\n<p><span style=\"font-weight: 400;\">Does it meet your needs?</span></p>\n<p><span style=\"font-weight: 400;\">The following are just some of its functions to help you decide:</span></p>\n<h3><b>Optimizes your site&#8217;s database</b></h3>\n<p><span style=\"font-weight: 400;\">Redundant files, such as unusable comments, unnecessary drafts, transients and revisions to mention only a few, will only slow down your WordPress site. You need a suitable plugin that will seamlessly get rid of these redundant files from your site while still leaving your site intact and running smoothly. WP-Optimize is your best option for achieving this.  </span></p>\n<p><span style=\"font-weight: 400;\">With the additional benefit of the integrated </span><a href=\"https://updraftplus.com\"><span style=\"font-weight: 400;\">UpdraftPlus Backup</span></a><span style=\"font-weight: 400;\"> plugin that comes with WP-Optimize, you won&#8217;t need to install a third-party backup plugin to secure your site.  </span></p>\n<h3><b>Compress your images</b></h3>\n<p><span style=\"font-weight: 400;\">WP-Optimize compresses your site&#8217;s image files to your precise desired size without any dent in the resulting quality. While other plugins may use </span><i><span style=\"font-weight: 400;\">Imagify </span></i><span style=\"font-weight: 400;\">for this purpose, the feature comes built-in for WP-Optimize. </span></p>\n<p><span style=\"font-weight: 400;\">With WP-Optimize, users get to determine the degree to which they are compressed. The </span><a href=\"https://getwpo.com/how-to-use-wp-optimize-image-compression/\"><span style=\"font-weight: 400;\">image optimization feature</span></a><span style=\"font-weight: 400;\"> in WP-Optimize is a cutting edge and leading image optimization platform. One of the easiest and quickest ways you can improve the speed is by optimizing your images. This process, which is commonly known as ‘smush’ or ‘smushing’ allows users to optimize, compress and resize all the large original images and convert them to smaller file sizes that are easier and quicker to load, without sacrificing any loss in image quality.</span></p>\n<h3><b>WP-Optimize Premium lazy loading</b></h3>\n<p><span style=\"font-weight: 400;\">The Premium version of WP-Optimize includes a feature called lazy loading. . Lazy Load helps your website to delay the initialization of some of these components until they are needed as not all components are required to load every time your website is viewed. This feature can help improve performance and maximize the resources of the system. </span></p>\n<h3><b>Page caching</b></h3>\n<p><span style=\"font-weight: 400;\">By caching your site’s pages with WP-Optimize, your site is able to generate a separate set of files for mobile or desktop users, as well display personal page preferences for users that are logged-in. By using this feature, it can further add to the speed and help boost the overall performance of your site. </span></p>\n<h3><b>Free/Premium versions</b></h3>\n<p><span style=\"font-weight: 400;\">The WP-Optimize plugin has both a free and a premium version for download. The core features of WP-Optimize are free and can be downloaded </span><span style=\"font-weight: 400;\">here</span><span style=\"font-weight: 400;\">. Although the premium version, which is available </span><a href=\"https://getwpo.com/buy/\"><span style=\"font-weight: 400;\">here</span></a><span style=\"font-weight: 400;\">, comes with additional features that can help improve the speed and performance of your site further.  </span></p>\n<h2><b>W3 Total Cache (W3TC)</b></h2>\n<p><span style=\"font-weight: 400;\">Like WP-Optimize, the W3TC plugin also has more than one million active installations. It comes in just behind WP-Optimize in both popularity and has a user review score of 4.5 stars. </span></p>\n<p><span style=\"font-weight: 400;\">The following are some of its features: </span></p>\n<h3><b>Minifying</b></h3>\n<p><span style=\"font-weight: 400;\">While this often causes some problems for WordPress sites (in which case you have to perform a restore), it can be useful, especially if you are combining JS and CSS files.</span></p>\n<h3><b>Page cache</b></h3>\n<p><span style=\"font-weight: 400;\">Although not as effective as WP-Optimize, W3TC also offers page caching when you enable it on your site. Others caching options include Opcode cache, Database cache, Object cache and Browser cache. </span></p>\n<h3><b>Import &amp; export</b></h3>\n<p><span style=\"font-weight: 400;\">Both the free and the premium versions of W3 Total Cache feature import and export options. This option allows you to export your primary settings to your computer and then upload them to other WordPress sites. This can be a very useful feature for businesses with multiple websites. </span></p>\n<h3><b>Robust feature set</b></h3>\n<p><span style=\"font-weight: 400;\">While W3TC has an extensive set of features, this can lead to some confusion for less experienced WordPress users as the menus and multiple options can often be unclear and difficult to understand. </span></p>\n<h2><b>WP-Optimize vs W3TC</b></h2>\n<table>\n<tbody>\n<tr>\n<td><b>Features</b></td>\n<td><b>WP-Optimize</b></td>\n<td><b>W3TC</b></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Database optimization</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Page Cache</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Image compression</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Mobile-specific cache</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">CSS and JS minification</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">GZIP compression</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Simple setup</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Preload cache </span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Free version</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Built-in backup</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n</tbody>\n</table>\n<h2><b>Conclusion</b></h2>\n<p><span style=\"font-weight: 400;\">After reading this blog, some things should be clear. They include:  </span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">It is important that your WordPress website has a performance-boosting plugin to give visitors the best experience. </span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">WP-Optimize and W3TC are both top examples of performance-boosting plugins that are 2 of the most highly rated and downloaded available.  </span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Of the two plugins discussed in this article, comparing both their free and premium versions, WP-Optimize comes out as the clear leading in this comparison </span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">You know what your WordPress site needs now. Good luck. Download and install WP-Optimize today!</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wp-optimize-vs-w3-total-cache-w3tc-which-is-the-best-wordpress-optimization-plugin/\">WP-Optimize vs W3 Total Cache (W3TC): Which is the best WordPress optimization plugin?</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://updraftplus.com/wp-optimize-vs-w3-total-cache-w3tc-which-is-the-best-wordpress-optimization-plugin/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:97:\"\n          \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"9 tips and tactics for building a solid WordPress site SEO strategy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://updraftplus.com/9-tips-and-tactics-for-building-a-solid-wordpress-site-seo-strategy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://updraftplus.com/9-tips-and-tactics-for-building-a-solid-wordpress-site-seo-strategy/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Feb 2022 13:25:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:9:{i:0;a:5:{s:4:\"data\";s:20:\"Other WordPress news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:15:\"Tips and tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"first page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:6:\"Google\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:6:\"How to\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:7:\"ranking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:3:\"SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:15:\"tips and tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:8;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1349458\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:817:\"<p>Search engine optimization or “SEO” stands at the forefront of all digital marketing activities. To put it simply, SEO is the process of getting websites to rank higher on a Google search result. While there are other search engines available &#8230; <a href=\"https://updraftplus.com/9-tips-and-tactics-for-building-a-solid-wordpress-site-seo-strategy/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/9-tips-and-tactics-for-building-a-solid-wordpress-site-seo-strategy/\">9 tips and tactics for building a solid WordPress site SEO strategy</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Severine Hierso\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15886:\"<p><span style=\"font-weight: 400;\">Search engine optimization or “SEO” stands at the forefront of all digital marketing activities. To put it simply, SEO is the process of getting websites to rank higher on a Google search result. While there are other search engines available of course, we will specifically be looking at Google as Google owns over</span><a href=\"https://www.statista.com/statistics/216573/worldwide-market-share-of-search-engines/\"> <span style=\"font-weight: 400;\">87% of the overall global search market</span></a><span style=\"font-weight: 400;\">. </span></p>\n<p><span style=\"font-weight: 400;\">As a business owner, your goal is to reach the widest pool of customers possible, and then pursue the leads that will hopefully convert to sales. The higher your ranking on a search results page, the better your visibility and chances of reaching these customers. SEO is the means to do just this. It is a complex process that comprises many elements, like SEO copywriting, keyword research, intuitive web </span><a href=\"https://inkbotdesign.com/\"><span style=\"font-weight: 400;\">design</span></a><span style=\"font-weight: 400;\"> and seamless website navigation.</span></p>\n<p><span style=\"font-weight: 400;\">If you’re looking to boost your website’s SERP ranking, here are nine tips and tactics for building a solid website SEO strategy:</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2022/02/New-Project-2022-02-04T115055.479.jpg\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1349510\" src=\"https://updraftplus.com/wp-content/uploads/2022/02/New-Project-2022-02-04T115055.479.jpg\" alt=\"\" width=\"550\" height=\"279\" srcset=\"https://updraftplus.com/wp-content/uploads/2022/02/New-Project-2022-02-04T115055.479.jpg 550w, https://updraftplus.com/wp-content/uploads/2022/02/New-Project-2022-02-04T115055.479-480x243.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 550px, 100vw\" /></a></p>\n<p><a href=\"https://www.monsterinsights.com/seo-statistics/\"><span style=\"font-weight: 400;\">Image Source</span></a></p>\n<h2><span style=\"font-weight: 400;\">1.</span> <span style=\"font-weight: 400;\">Ensure your website is mobile responsive</span></h2>\n<p><span style=\"font-weight: 400;\">54.8% of the world’s web traffic came from mobile devices in 2021. This is why your WordPress site must be optimised for viewing on smartphones and tablets. A website that is not mobile responsive will require tedious screen pinching and zooming.</span></p>\n<p><span style=\"font-weight: 400;\">This does not provide a good user experience and poses a very real risk of users leaving your site.</span></p>\n<p><span style=\"font-weight: 400;\">A mobile responsive website changes the look and layout of a site based on the device it is viewed on. The typical design elements considered while optimising a WordPress site for mobile responsiveness are:</span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Creating ample space for tap targets</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Eliminating horizontal scrolling</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Utilising text that doesn’t require zooming</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">Better user experience boosts user engagement &#8211; making mobile optimization one of the key steps in an SEO strategy.</span></p>\n<h2><span style=\"font-weight: 400;\">2.</span> <span style=\"font-weight: 400;\">Create a plan for acquiring backlinks</span></h2>\n<p><span style=\"font-weight: 400;\">Backlinks are external websites that link to yours through either blog posts or articles. A backlink is like a vote of confidence for your website and boosts your domain authority. Backlinks are also a great way for a wider pool of prospects to discover your website and click through to it.</span></p>\n<p><span style=\"font-weight: 400;\">How do you earn backlinks?</span></p>\n<p><span style=\"font-weight: 400;\">The most obvious (but difficult) way is to create great quality content that effectively answers search queries. This improves the chances of it being referenced by industry peers. This method is broadly known as link building. For example, is your business in financial services? Then why not write a guest post on</span><a href=\"https://www.pwc.com/us/en/services/alliances/automation-anywhere.html\"> <span style=\"font-weight: 400;\">robotic process automation</span></a><span style=\"font-weight: 400;\"> for a fintech blog.</span></p>\n<p><span style=\"font-weight: 400;\">Many companies reach out to peers to trade links. However, backlinks can also be earned through other activities such as:</span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Guest blogging</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Sharing videos and infographics</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Client testimonials</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Answering questions on open forums like Quora</span></li>\n</ul>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2022/02/Cost-of-SEO-768x678-1.jpg\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1349511\" src=\"https://updraftplus.com/wp-content/uploads/2022/02/Cost-of-SEO-768x678-1.jpg\" alt=\"\" width=\"768\" height=\"678\" srcset=\"https://updraftplus.com/wp-content/uploads/2022/02/Cost-of-SEO-768x678-1.jpg 768w, https://updraftplus.com/wp-content/uploads/2022/02/Cost-of-SEO-768x678-1-480x424.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 768px, 100vw\" /></a></p>\n<p><a href=\"https://financesonline.com/seo-statistics/\"><span style=\"font-weight: 400;\">Image Source</span></a><span style=\"font-weight: 400;\"> </span></p>\n<h2><span style=\"font-weight: 400;\">3.</span> <span style=\"font-weight: 400;\">Boost your site speed</span></h2>\n<p><span style=\"font-weight: 400;\">47% of consumers expect a webpage to load in two seconds and 40% abandon a site that takes more than three seconds to load. So if you’re looking to do business online, your best bet is to get your website up to speed (literally).</span></p>\n<p><span style=\"font-weight: 400;\">This isn’t just one of those customer retention myths. Since 2010, Google has included site speed as a ranking factor in its algorithms.</span></p>\n<p><span style=\"font-weight: 400;\">The first thing you need to do to boost your site speed is to check your present speed. There are several free tools for this including Google PageSpeed Insights and GTMetrix. There is no single optimum speed for websites and scores should broadly be used as guidelines and not fixed standards.</span></p>\n<p><span style=\"font-weight: 400;\">Some of the most common ways of improving your site speed are:</span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Optimising images</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Removing unnecessary</span><a href=\"https://updraftplus.com/comparing-the-best-optimization-plugins-for-wordpress/\"> <span style=\"font-weight: 400;\">plugins</span></a></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Cutting down page size </span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">To help optimise your site, we recommend installing the WP-Optimize WordPress plugin. </span><a href=\"https://getwpo.com/buy/\"><span style=\"font-weight: 400;\">WP-Optimize</span></a><span style=\"font-weight: 400;\"> Cache is a revolutionary, all-in-one WordPress performance plugin that caches your site, cleans your database and compresses your images.</span></p>\n<h2><span style=\"font-weight: 400;\">4.</span> <span style=\"font-weight: 400;\">Produce valuable content</span></h2>\n<p><span style=\"font-weight: 400;\">Content creation is a vital aspect of SEO. The golden rule for web content writing is that it must answer a question knowledgeably. It is important to remember that your audience is a group of real-life people who are looking for something specific. </span></p>\n<p><span style=\"font-weight: 400;\">For example, if you’re in the business of providing online courses for </span><a href=\"https://www.infobase.com/blog/featured/9-lifesaving-remote-learning-tips-for-students/\"><span style=\"font-weight: 400;\">remote learning</span></a><span style=\"font-weight: 400;\"> and a consumer has clicked through to your site after searching for “best remote learning courses”, they should get information related to remote learning.</span></p>\n<p><span style=\"font-weight: 400;\">Whilst it’s important to optimise your content with targeted keywords after thorough</span><a href=\"https://accelerateagency.ai/keyword-research\"> <span style=\"font-weight: 400;\">SEO keyword research</span></a><span style=\"font-weight: 400;\">, stuffing your page with them will not improve your SEO score. It can actually turn off your users and get you downgraded by Google’s bots &#8211; as they can choose to penalize you for having unrelated content and remove your site from their index.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2022/02/web-traffic-by-device-stats-1.jpg\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1349512\" src=\"https://updraftplus.com/wp-content/uploads/2022/02/web-traffic-by-device-stats-1.jpg\" alt=\"\" width=\"900\" height=\"526\" srcset=\"https://updraftplus.com/wp-content/uploads/2022/02/web-traffic-by-device-stats-1.jpg 900w, https://updraftplus.com/wp-content/uploads/2022/02/web-traffic-by-device-stats-1-480x281.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 900px, 100vw\" /></a></p>\n<p><a href=\"https://www.marketingexpertus.co.uk/blog/ppc-and-seo-statistics/\"><span style=\"font-weight: 400;\">Image Source</span></a></p>\n<h2><span style=\"font-weight: 400;\">5.</span> <span style=\"font-weight: 400;\">Use keywords in the right places</span></h2>\n<p><span style=\"font-weight: 400;\">Targeted keywords are what drive SEO and it’s vital to have a thorough understanding of keyword research in your website’s SEO strategy. To start, identify ten words that are related to your product or service and then research those using tools like SEMRush and Ahrefs. Find out the search volume for these words and seek out a few variations.</span></p>\n<p><span style=\"font-weight: 400;\">Essentially you need to identify the main short-tail keywords and find some long-tail variations to boost the overall search volume for your product or service. For example, if you’re trying to improve your ranking for “</span><a href=\"https://updraftplus.com/\"><span style=\"font-weight: 400;\">best WordPress backup plugin</span></a><span style=\"font-weight: 400;\">”, you can identify a few related keywords such as “highest rated WordPress backup plugin”.</span></p>\n<h2><span style=\"font-weight: 400;\">6.</span> <span style=\"font-weight: 400;\">Write content for featured snippets</span></h2>\n<p><span style=\"font-weight: 400;\">A featured snippet is a great way of getting your website higher in the search rankings. A snippet is the answer box that appears at the top of the page for any search query. You can improve your chances of appearing as that snippet by making some design and formatting edits such as:</span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Bullet points</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Infographics</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Answering specific query-based searches</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">Snippets are a great way to build awareness in your </span><a href=\"https://www.crowdspring.com/blog/brand-strategy/\"><span style=\"font-weight: 400;\">brand strategy</span></a><span style=\"font-weight: 400;\"> and position yourself as a domain expert. For example, if someone is searching for the “</span><a href=\"https://en-gb.wordpress.org/plugins/wp-optimize/\"><span style=\"font-weight: 400;\">best caching plugin for WordPress</span></a><span style=\"font-weight: 400;\">”, then a dedicated answer to the query could get you that coveted snippet. </span></p>\n<p><span style=\"font-weight: 400;\">This is something for which you need keyword research. Identify keywords with high search volumes and then create content that aligns with those searches.</span></p>\n<h2><span style=\"font-weight: 400;\">7.</span> <span style=\"font-weight: 400;\">Write clean, clear clode</span></h2>\n<p><span style=\"font-weight: 400;\">When adding any custom code to your WordPress site, it should be written following CSS and HTML best practises. A clear code helps Google identify and index the data of your website. The faster Google can crawl and index your website, the better your search rankings. The more pages on your site that are correctly indexed, the better the chances are of them being discovered.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2022/02/New-Project-2022-02-04T115554.727.jpg\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1349513\" src=\"https://updraftplus.com/wp-content/uploads/2022/02/New-Project-2022-02-04T115554.727.jpg\" alt=\"\" width=\"636\" height=\"363\" srcset=\"https://updraftplus.com/wp-content/uploads/2022/02/New-Project-2022-02-04T115554.727.jpg 636w, https://updraftplus.com/wp-content/uploads/2022/02/New-Project-2022-02-04T115554.727-480x274.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 636px, 100vw\" /></a></p>\n<p><a href=\"https://www.safaridigital.com.au/blog/seo-statistics-2019/\"><span style=\"font-weight: 400;\">Image Source</span></a></p>\n<h2><span style=\"font-weight: 400;\">8.</span> <span style=\"font-weight: 400;\">Use local SEO to target local customers</span></h2>\n<p><span style=\"font-weight: 400;\">Local SEO is becoming increasingly important for businesses. The mantra for local SEO is NAP; short for Name, Address, Phone number. Make sure this information is consistent across all your marketing collaterals and your WordPress site. This helps Google identify you when a customer in your area searches for a product or service that you offer. Don’t forget to boost local SEO by also creating a free Google “My Business” account.</span></p>\n<h2><span style=\"font-weight: 400;\">9.</span> <span style=\"font-weight: 400;\">Optimise social media</span></h2>\n<p><span style=\"font-weight: 400;\">The global active social media population stood at a whopping</span><a href=\"https://www.statista.com/topics/1164/social-networks/\"><span style=\"font-weight: 400;\"> 4.2 billion in 2021</span></a><span style=\"font-weight: 400;\">. With such a massive pool of consumers to engage with, businesses all over the world are optimising their social media marketing.</span><a href=\"https://updraftplus.com/increase-traffic-and-sales-wordpress/\"> <span style=\"font-weight: 400;\">Ecommerce traffic and sales</span></a><span style=\"font-weight: 400;\"> benefit greatly from optimising social media for business.  </span></p>\n<p><span style=\"font-weight: 400;\">SEO is crucial for businesses to be found online and with the right SEO strategy, you can drive robust organic growth for your business. </span></p>\n<p><b>Severine Hierso</b></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/9-tips-and-tactics-for-building-a-solid-wordpress-site-seo-strategy/\">9 tips and tactics for building a solid WordPress site SEO strategy</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://updraftplus.com/9-tips-and-tactics-for-building-a-solid-wordpress-site-seo-strategy/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:97:\"\n           \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WP-Optimize vs. WP Super Cache: Which is the better WordPress optimization plugin?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://updraftplus.com/wp-optimize-vs-wp-super-cache-which-is-the-better-wordpress-optimization-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://updraftplus.com/wp-optimize-vs-wp-super-cache-which-is-the-better-wordpress-optimization-plugin/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Feb 2022 15:35:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:9:{i:0;a:5:{s:4:\"data\";s:11:\"WP Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"best plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"optimise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:12:\"optimization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:15:\"which is better\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:14:\"wp super cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:8;a:5:{s:4:\"data\";s:11:\"WP-Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1347633\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:833:\"<p>Imagine you have the choice between two 5-star restaurants that serve equally great food, but one of them takes your order, serves you drinks and gets your meal out to you in ten minutes, while the other restaurant takes 60 &#8230; <a href=\"https://updraftplus.com/wp-optimize-vs-wp-super-cache-which-is-the-better-wordpress-optimization-plugin/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wp-optimize-vs-wp-super-cache-which-is-the-better-wordpress-optimization-plugin/\">WP-Optimize vs. WP Super Cache: Which is the better WordPress optimization plugin?</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Melvin Braide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10325:\"<p><iframe loading=\"lazy\" title=\"WP-Optimize vs WP Super Cache\" width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/IQKyXezUIYw?feature=oembed\"  allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<p><span style=\"font-weight: 400;\">Imagine you have the choice between two 5-star restaurants that serve equally great food, but one of them takes your order, serves you drinks and gets your meal out to you in ten minutes, while the other restaurant takes 60 minutes to even seat you at your table. Which one would you rather visit? In today’s modern world, where we are all trying to be more efficient with our time; you would almost certainly choose to eat at the first restaurant.</span></p>\n<p><span style=\"font-weight: 400;\">With so many distractions and options for people’s attention in today’s world, a smart business will adapt accordingly by not only giving the customers compelling, high-quality products, but designing the products to help them save time. This important fact should inform how you design your WordPress website. </span></p>\n<p><span style=\"font-weight: 400;\">Once a user has visited your site for the first time, it is important to keep them coming back time and time again. Around 50 % of website visitors will simply abort loading your website if it takes more than three seconds to open. As such, it is vital that you make a good first impression with your website performance. </span></p>\n<p><span style=\"font-weight: 400;\">While there are over a dozen performance-boosting plugins you can use for your WordPress site, we will be comparing two of the top choices &#8211; WP-Optimize and WP Super Cache.</span></p>\n<h2><b>Does your WordPress website need a performance-boosting plugin?</b></h2>\n<p><span style=\"font-weight: 400;\">If you were an Olympic athlete, you would make sure you had the best running shoes available. The same is applicable for your website. All WordPress sites need performance-boosting plugins to help them to load as fast as possible and produce peak performance. </span></p>\n<p><span style=\"font-weight: 400;\">Do you want your website to perform at the highest possible level? If your answer is yes, then your WordPress website will require a good performance-boosting plugin. </span></p>\n<h2><b>WP-Optimize</b></h2>\n<p><span style=\"font-weight: 400;\">Whenever WP-Optimize is mentioned, it’s three key aspects usually come to mind &#8211; cache, clean, and compress. As one the the leader all-in-one WordPress performance-boosting plugins, WP-Optimize helps to efficiently cache your website, clean it&#8217;s database, and compress the images. </span></p>\n<p><span style=\"font-weight: 400;\">WP-Optimize currently has more than one million active installations, with users from all over the world. It’s impressive reputation, coupled with its all-in-one nature makes it the obvious choice for any WordPress site owner. </span></p>\n<p><span style=\"font-weight: 400;\">The following are the primary functions of WP-Optimize. .  </span></p>\n<h3><b>Database cleaning </b></h3>\n<p><span style=\"font-weight: 400;\">Nothing slows down your website like redundant files. These can include transients, unnecessary drafts, unpalatable comments, and revision files. Your website needs an effective plugin that will automatically remove this unneeded content without tampering with the integrity of your website. WP-Optimize is about the only plugin that removes trackbacks and pingbacks. </span></p>\n<h3><b>Image compression</b></h3>\n<p><span style=\"font-weight: 400;\">Beyond just compressing the images on your site, you get to determine the degree to which they are compressed. The image optimization feature in WP-Optimize is a cutting edge and leading image optimization platform that works well and it’s easily the best in the WordPress market. One of the best ways you can improve the speed of your site via WP-Optimize is by optimizing your images. This process, which is commonly known as ‘smush’ or ‘smushing’ allows users to optimize, compress and resize all the images on a website, potentially saving many MB per image and improving loading speeds. This feature is available on both the free and premium versions of WP-Optimize.</span></p>\n<h3><b>Lazy Loading</b></h3>\n<p><span style=\"font-weight: 400;\">Simply put, lazy load describes the process where a website delays the initialization of components until such a time where they are necessary. This is done to boost the performance of the website and efficiently utilize the system resources. WP-Optimize Premium features this lazy load option and it’s arguably the best one available in the WordPress market. </span></p>\n<h3><b>Page caching</b></h3>\n<p><span style=\"font-weight: 400;\">This feature allows your website to produce a separate batch of files for mobile and generate a separate cache for logged in visitors. Using page caching, WP-Optimize improves the speed and overall performance of the website. </span></p>\n<h3><b>WP Super Cache</b></h3>\n<p><span style=\"font-weight: 400;\">Created by Automattic, WP Super Cache is used primarily to cache a WordPress website. It does this by generating static HTML files that your server displays to people visiting your website. Many developers consider this to be a faster option than processing WordPress PHP scripts. </span></p>\n<p><span style=\"font-weight: 400;\">The following are some features for this plugin: </span></p>\n<h3><b>Suited for CDN (Content Delivery Network)</b></h3>\n<p><span style=\"font-weight: 400;\">WP Super Cache works perfectly with CDN Networks. CDN allows your WordPress website to be stored on multiple servers all over the world so it can be downloaded from cache by visitors. In turn, this makes your website super fast, even if visitors are far from the origin server. </span></p>\n<h3><b>Pricing</b></h3>\n<p><span style=\"font-weight: 400;\">WP Super Cache only has a free version and can be downloaded from their WP.Org. All its features, as you have seen, are somewhat limited as they are only available on a free version. There is no option for users to upgrade when more features and tools are required.</span></p>\n<p><span style=\"font-weight: 400;\">WP-Optimize has both a free and a premium version. Usually, the free version is sufficient for the basic performance improvement you&#8217;d need for your website. You can download the free version easily by visiting their website (link). The premium version is for businesses looking for something extra and it comes in three packages: </span></p>\n<h2><b>WP-Optimize and WP Super Cache compared</b></h2>\n<table>\n<tbody>\n<tr>\n<td><b>Features</b></td>\n<td><b>WP-Optimize</b></td>\n<td><b>WP Super Cache</b></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Database optimization</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Page Cache</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Image compression</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Mobile specific cache</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span><span style=\"font-weight: 400;\"> </span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">CSS and JS minification</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">GZIP compression</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Simple setup</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Preload cache </span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Free version</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Built-in backup</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n</tbody>\n</table>\n<h2><b><br />\nWP-Optimize and WP Super Cache: Which is the better plugin?</b></h2>\n<p><span style=\"font-weight: 400;\">From everything that has been discussed so far in this article and due to all the extra features and tools available to users, WP-Optimize is the superior of the two plugins. </span></p>\n<h2><b>Conclusion</b></h2>\n<p><span style=\"font-weight: 400;\">There are many takeaways to be found in the above analysis, but here are the top three: </span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">WP-Optimize and WP Super Cache both offer free versions of their plugin and both top rated performance-boosting plugins. </span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Of the two plugins, WP-Optimize offers more features and more tools, giving a bigger boost to the optimization of your WordPress site. </span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">While some may argue that a direct comparison is unfair as WP Super Cache doesn&#8217;t have a premium version, It should be noted that for this analysis, the free version of WP-Optimize and WP Super Cache were compared &#8211; With WP-Optimize coming out as clearly the better and more complete plugin. </span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wp-optimize-vs-wp-super-cache-which-is-the-better-wordpress-optimization-plugin/\">WP-Optimize vs. WP Super Cache: Which is the better WordPress optimization plugin?</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://updraftplus.com/wp-optimize-vs-wp-super-cache-which-is-the-better-wordpress-optimization-plugin/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:94:\"\n             \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WP-Optimize vs. Autoptimize: Which is the best WordPress optimization plugin?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://updraftplus.com/wp-optimize-vs-autoptimize-which-is-the-best-wordpress-optimization-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://updraftplus.com/wp-optimize-vs-autoptimize-which-is-the-best-wordpress-optimization-plugin/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jan 2022 14:43:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:8:{i:0;a:5:{s:4:\"data\";s:11:\"WP Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"best plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:12:\"optimization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:17:\"which is the best\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:11:\"WP-Optimise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:11:\"WP-Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1336125\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:821:\"<p>Every day, it seems there is more and more competition for people&#8217;s time. Be it the internet, movies, TV, video games or streaming, these days, in order for your site to be successful and gain traction, you not only need &#8230; <a href=\"https://updraftplus.com/wp-optimize-vs-autoptimize-which-is-the-best-wordpress-optimization-plugin/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wp-optimize-vs-autoptimize-which-is-the-best-wordpress-optimization-plugin/\">WP-Optimize vs. Autoptimize: Which is the best WordPress optimization plugin?</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:39893:\"<p><iframe loading=\"lazy\" title=\"WPO vs Autoptimize: Which is the best WordPress optimization plugin?\" width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/QJX4aK8fXqs?feature=oembed\"  allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Every day, it seems there is more and more competition for people&#8217;s time. Be it the internet, movies, TV, video games or streaming, these days, in order for your site to be successful and gain traction, you not only need to have an interesting and engaging website, but you also need to make sure it is fully optimized and loads quickly. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Of course, as anyone that has set up and run a website will know, getting visitors to visit your website is one thing, but getting them to stay for an extended period is quite another. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">You may get visitors to your websites for any number of reasons, but they will only stay and return again in the future if it is efficient and professional. The most simple and obvious example of this is how long it takes for your site to fully load. New research by Google has found that </span><a style=\"text-decoration: none;\" href=\"https://www.marketingdive.com/news/google-53-of-mobile-users-abandon-sites-that-take-over-3-seconds-to-load/426070/#:~:text=New%20research%20by%20Google%20has,seconds%20on%20a%204G%20connection.\"><span style=\"font-size: 11pt; font-family: Arial; color: #1155cc; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">53% of mobile website</span></a><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> visitors will leave if a webpage doesn’t load within three seconds. Page speed is a </span><a style=\"text-decoration: none;\" href=\"https://cognitiveseo.com/blog/22865/page-speed-seo/#:~:text=The%20simple%20answer%20is%20that,At%20Google%2C%20users%20come%20first.\"><span style=\"font-size: 11pt; font-family: Arial; color: #1155cc; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">direct ranking factor</span></a><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">, a fact known even better since Google’s Algorithm Speed Update. However, speed can also affect rankings indirectly, by increasing the bounce rate and reducing dwell time. Typically, the greater the speed of your website, the better your ranking will be. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Having established the importance of page speed in trying to get your WordPress site fully optimized and on the first page of Google, which website performance-boosting plugin should you use? WP-Optimize and Autoptimize are two of the most popular plugins available for WordPress. In this blog we will look at both of them, evaluate performance and which one you should install</span></p>\n<h2 dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 6pt;\"><span style=\"font-size: 16pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Website performance-boosting plugins</span></h2>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Your website should be performing to optimal speed if it hopes to attract visitors that will stay, interact and return in the future. Although you may have a great product and a modern and stylish design, it is not enough to just expect these factors to bring your success on their own. To help, you need to install performance-boosting plugins to ‘speed’ things along.. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Your website has a reserved storage space called a ‘</span><a style=\"text-decoration: none;\" href=\"https://www.wpbeginner.com/beginners-guide/how-to-clear-your-cache-in-wordpress/#:~:text=What%20is%20Caching%20in%20WordPress,and%20the%20overall%20user%20experience.\"><span style=\"font-size: 11pt; font-family: Arial; color: #1155cc; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">cache system</span></a><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">’, and it&#8217;s specifically cut out for storing temporary data. Caching solutions will store static versions of your website in a cache. This allows WordPress to skip running heavier PHP scripts every time your site loads. This caching process helps to improve WordPress speed and performance and the overall user experience. This cache collects images, text, and other data when a visitor comes to your page for the first time. The essence of this is to give your site enough room to load faster and generally perfume more efficiently. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">But for your cache system to perform well, it has to have a decent CPU and RAM. But however great they are, they will soon run out with increasing traffic, leaving the site to render slowly. This is where performance-boosting plugins, such as WP-Optimize and Autoptimize help. They work round the clock to improve the efficiency and overall performance of your site. </span><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: #ffff00; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> </span></p>\n<h3 dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 4pt;\"><span style=\"font-size: 13.999999999999998pt; font-family: Arial; color: #434343; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">WP-Optimize</span></h3>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">As the leading all-in-one plugin, WP-Optimize cleans your site&#8217;s database, compresses the images and caches the website. At the time of writing, WP-Optimize has more than a million active installations and a 5-star rating from hundreds of thousands of users on </span><a style=\"text-decoration: none;\" href=\"https://en-gb.wordpress.org/plugins/wp-optimize/\"><span style=\"font-size: 11pt; font-family: Arial; color: #1155cc; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">WP.org</span></a><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">. WP-Optimize has become the plugin of choice for anyone that is looking to keep their WordPress site fast and efficient. </span></p>\n<h3 dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 4pt;\"><span style=\"font-size: 13.999999999999998pt; font-family: Arial; color: #434343; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Autoptimize</span></h3>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Autoptimize is another popular plugin for optimizing your WordPress website. Like WP-Optimize it works by aggregation and caching scripts and styles. Autoptimize will input CSS into the page head by default, as well as inline critical CSS. It will then defer the already aggregated full CSS, move the scripts to the footer and minify HTML. </span></p>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">It features Google Fonts and image optimization, including Lazy Load with support for Web and AVIF formats. Autoptimize can be a good plugin to install if you want to improve your website&#8217;s performance. Like WP-Optimize, </span><a style=\"text-decoration: none;\" href=\"https://en-gb.wordpress.org/plugins/autoptimize/\"><span style=\"font-size: 11pt; font-family: Arial; color: #1155cc; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">Autoptimize</span></a><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> also has more than 1 million active Installations but has a lower 4.5 star rating. </span></p>\n<h2 dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 6pt;\"><span style=\"font-size: 16pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Comparison of WP-Optimize and Autoptimize (tabulated) </span></h2>\n<div dir=\"ltr\" style=\"margin-left: 0pt;\" align=\"left\">\n<table style=\"border: none; border-collapse: collapse;\">\n<colgroup>\n<col width=\"112\" />\n<col width=\"234\" />\n<col width=\"278\" /></colgroup>\n<tbody>\n<tr style=\"height: 0pt;\">\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Features</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">WP-Optimize</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Autoptimize</span></p>\n</td>\n</tr>\n<tr style=\"height: 0pt;\">\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Free version</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #274e13; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n</tr>\n<tr style=\"height: 0pt;\">\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Database Optimization</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #660000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">No</span></p>\n</td>\n</tr>\n<tr style=\"height: 0pt;\">\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Browser Caching</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #660000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">No</span></p>\n</td>\n</tr>\n<tr style=\"height: 0pt;\">\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Page Caching</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #660000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">No</span></p>\n</td>\n</tr>\n<tr style=\"height: 0pt;\">\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Gzip compression</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n</tr>\n<tr style=\"height: 0pt;\">\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Lazy Load</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n</tr>\n<tr style=\"height: 0pt;\">\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Image Compression </span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #274e13; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n</tr>\n<tr style=\"height: 0pt;\">\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Cache Preloading </span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n</tr>\n<tr style=\"height: 0pt;\">\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">HTML/CSS/JS minification</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n</tr>\n<tr style=\"height: 0pt;\">\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Backup</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #38761d; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Yes</span></p>\n</td>\n<td style=\"vertical-align: top; padding: 5pt 5pt 5pt 5pt; overflow: hidden; overflow-wrap: break-word; border: solid #000000 1pt;\">\n<p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #980000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">No</span></p>\n</td>\n</tr>\n</tbody>\n</table>\n</div>\n<p><b id=\"docs-internal-guid-8620b7df-7fff-e83f-8773-6b1f8fb76e7d\" style=\"font-weight: normal;\"> </b></p>\n<h2 dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 6pt;\"><span style=\"font-size: 16pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">WP-Optimize and Autoptimize: Which is a better optimization plugin?</span></h2>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">With both plugins having over a million active installs and a high star rating, the dilemma for every website owner is which plugin is more suitable for speeding up a website’s load time and improving the overall performance. As can be seen in the above chart, WP-Optimize has more features and tools and is clearly the better performance-boosting plugin.</span></p>\n<h3 dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 4pt;\"><span style=\"font-size: 13.999999999999998pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">WP-Optimize offers more value </span></h3>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">One thing WP-Optimize and Autoptimize have in common is that they both offer a free version of their popular plugin and optimizations functions. But both plugins are not created equal. Feedback from users who have used and compared the two plugins have shown that WP-Optimize is the superior of the two, both in features and in functions. </span></p>\n<h3 dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 4pt;\"><span style=\"font-size: 13.999999999999998pt; font-family: Arial; color: #434343; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">WP-Optimize has a backup feature</span></h3>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">WP-Optimize plugin comes combined with the </span><a style=\"text-decoration: none;\" href=\"https://updraftplus.com/\"><span style=\"font-size: 11pt; font-family: Arial; color: #1155cc; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">UpdraftPlus</span></a><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> backup service; the most trusted and biggest backup backup plugin in the world. By using WP-Optimize and UpdraftPlus, you can be rest assured that essential files, such as original high-resolution images on your WordPress site, are kept safe. The backup and restore functions for UpdraftPlus are so seamlessly built-in that they can be operated by just the press of one button &#8211; restoring your site or files to their previous state. Autoptimize lacks this feature and does not offer any kind of backup or restore service. So if you make a mistake while optimizing your site with Autoptimize, then you will be stuck with the changes you have made.</span></p>\n<h3 dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 4pt;\"><span style=\"font-size: 13.999999999999998pt; font-family: Arial; color: #434343; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Image compression feature: Which is best?</span></h3>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Like WP-Optimize, Autoptimize has an image compression feature built into the plugin. But it is recommended that you disable the feature on Autoptimize, as it does not appear to function optimally. Even Autoptimize advise that users use a third-party plugin like </span><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: italic; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Imagify </span><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">to compress your images. The</span><a style=\"text-decoration: none;\" href=\"https://getwpo.com/how-to-use-wp-optimize-image-compression/\"><span style=\"font-size: 11pt; font-family: Arial; color: #1155cc; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: underline; -webkit-text-decoration-skip: none; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\"> image optimization feature</span></a><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> in WP-Optimize is a cutting edge and leading image optimization platform that works well and it’s easily the best in the WordPress market. One of the best ways you can improve the speed of your site via WP-Optimize is by optimizing your images. This process, which is commonly known as ‘smush’ or ‘smushing’ allows users to optimize, compress and resize all the images on a website, potentially saving many MB per image and improving loading speeds. This feature is available on both the free and premium versions of WP-Optimize.</span></p>\n<h3 dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 4pt;\"><span style=\"font-size: 13.999999999999998pt; font-family: Arial; color: #434343; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">WP-Optimize is easy to use</span></h3>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">After installation, both WP-Optimize and Autoptimize still require some fairly simple and straightforward ticks within the plugin options to fully set them up. However, WP-Optimize is much more straightforward and easier to set up for both WordPress novices and experts. Users may find that Autoptimize is a bit more complex and that you may need some technical know-how to make the kind of changes that are more easily identifiable in WP-Optimize.</span></p>\n<h3 dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 4pt;\"><span style=\"font-size: 13.999999999999998pt; font-family: Arial; color: #434343; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Autoptimize has minify-related issues</span></h3>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Many users have sent and reported feedback in which they complained about running into problems when they set Autoptimize to minify CSS and JS. The recommended solution is to exclude CSS and JS files when trying to minify files. This is obviously not ideal and limits the kind of optimization that a user can perform on their site. WP-Optimize does not have this problem. Users can minify CSS and JS on WP-Optimize to their heart&#8217;s content! This is just another example of why WP-Optimize is superior. </span></p>\n<h2 dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 6pt;\"><span style=\"font-size: 16pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: bold; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">Conclusion</span></h2>\n<p dir=\"ltr\" style=\"line-height: 1.3800000000000001; margin-top: 10pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">If you have read the above blog, then you will have already figured out for yourself exactly which plugin is the best and why. If you want to improve any aspect of your site and improve its speed and performance, then WP-Optimize is the easy favorite for all the reasons listed in this article. </span></p>\n<div><span style=\"font-size: 11pt; font-family: Arial; color: #000000; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"> </span></div>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wp-optimize-vs-autoptimize-which-is-the-best-wordpress-optimization-plugin/\">WP-Optimize vs. Autoptimize: Which is the best WordPress optimization plugin?</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://updraftplus.com/wp-optimize-vs-autoptimize-which-is-the-best-wordpress-optimization-plugin/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:97:\"\n            \n              \n                                      \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n                                      \n                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WP-Optimize vs. WP Rocket: Which is the best WordPress optimization and caching plugin?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://updraftplus.com/wp-optimize-vs-wp-rocket-which-is-the-best-wordpress-optimization-and-caching-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://updraftplus.com/wp-optimize-vs-wp-rocket-which-is-the-best-wordpress-optimization-and-caching-plugin/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Jan 2022 15:32:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:9:{i:0;a:5:{s:4:\"data\";s:11:\"WP Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Caching\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:12:\"optimisation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:12:\"optimization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:6:\"plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:17:\"which is the best\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:11:\"WP-Optimise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:8;a:5:{s:4:\"data\";s:11:\"WP-Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1329310\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:859:\"<p>More than 40% of your website visitors will close your site and leave if it takes over three seconds for your website to fully load. This phenomenon becomes more relevant as technology continues to advance with other devices vying for &#8230; <a href=\"https://updraftplus.com/wp-optimize-vs-wp-rocket-which-is-the-best-wordpress-optimization-and-caching-plugin/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wp-optimize-vs-wp-rocket-which-is-the-best-wordpress-optimization-and-caching-plugin/\">WP-Optimize vs. WP Rocket: Which is the best WordPress optimization and caching plugin?</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11136:\"<p><iframe loading=\"lazy\" title=\"WP-Optimize vs WP Rocket\" width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/R0iRTlJA_Z0?feature=oembed\"  allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<p><span style=\"font-weight: 400;\">More than 40% of your website visitors will close your site and leave if it takes over three seconds for your website to fully load. This phenomenon becomes more relevant as technology continues to advance with other devices vying for your attention, causing the global attention span to decrease. By now it should come as no surprise that site speed is crucial to the success and usability of your site and influences your website’s search engine rankings. Knowing this, if you run a WordPress based site, a common dilemma at this point will be ‘what website performance boosting and optimization plugin should I use?’ To answer that, we will compare and contrast two of the most popular optimization plugins: WP-Optimize and WP Rocket.  </span></p>\n<h2><b>What&#8217;s an optimization plugin?</b></h2>\n<p><span style=\"font-weight: 400;\">Every website has a dedicated storage space reserved for keeping temporary data to ensure your WordPress website loads faster and generally performs more efficiently. This storage space is called a ‘cache’. When your website is opened for the first time it collects files, images, text and other necessary information about your device. It&#8217;s this data from the first visit that ensures your website loads faster on subsequent visits. </span></p>\n<p><span style=\"font-weight: 400;\">Your cache system will require decent levels of RAM and CPU to properly carry out this function. But no matter how good they both are, increasing traffic will soon consume it, causing the page to render slower. This is where performance-boosting plugins come in. They are able to cache your WordPress site, clean your database and compress your images. This helps to increase the overall performance and efficiency of your WordPress site.</span></p>\n<h3><b>WP-Optimize</b></h3>\n<p><span style=\"font-weight: 400;\"><a href=\"http://getwpo.com\">WP-Optimize</a> is an all-in-one optimization plugin that cleans your database, compresses images and caches your website. Put all of these functions together and you get what the name implies, a well-optimized WordPress website, performing seamlessly and efficiently. </span></p>\n<p><span style=\"font-weight: 400;\">WP-Optimize currently has over a million active installations. If you are serious about keeping your WordPress website in the best shape and providing a high-end user experience, you have to install WP-Optimize for your website.  </span></p>\n<h3><b>WP Rocket</b></h3>\n<p><span style=\"font-weight: 400;\"><a href=\"https://wp-rocket.me/\">WP Rocket</a> is another optimization plugin that allows you to speed up your website in a few steps. It ranks among the most functional WordPress website performance plugins in the world. Like most optimization plugins (including WP-Optimize), WP Rocket can help to cut down your load time and boost your Google PageSpeed and Core Web Vitals scores. </span></p>\n<h2><b>Comparison of WP-Optimize and WP Rocket features</b></h2>\n<table>\n<tbody>\n<tr>\n<td><b>Features</b></td>\n<td><b>WP-Optimize</b></td>\n<td><b>WP Rocket</b></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Free version</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Database Optimization</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Browser Caching</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Page Caching</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Gzip compression</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Lazy Load</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Image Compression </span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Cache Preloading </span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">HTML/CSS/JS minification</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Mobile Specific Cache</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n</tbody>\n</table>\n<h2><b>Why is WP-Optimize a better caching plugin than WP Rocket?</b></h2>\n<h3><b>WP-Optimize has a free version</b></h3>\n<p><span style=\"font-weight: 400;\">You can install <a href=\"https://wordpress.org/plugins/wp-compress-image-optimizer/\">WP-Optimize</a> on your WordPress website and start using it for free without any hidden charges. You get instant access to several features including database optimization, caching and image compression. WP Rocket does not offer a free version and as such, all of its features come at a premium. Buying a premium product without being able to test out it’s features and functionality can be an expensive and risky endeavor. With WP-Optimize, you can test out many of the major features and get a better feel for how the plugin can improve your site, without having to spend your hard earned money first. </span></p>\n<h3><b>WP-Optimize is a better Premium option</b></h3>\n<p><span style=\"font-weight: 400;\">While prices are subject to change over time, the general pricing levels of these two plugins show a significant difference of price and number of websites the plugin can be used on. While WP-Optimize not only offers a free version of it’s plugin, it also has a premium version that gives access to additional features, including logging, lazy load, multisite support and top-notch optimization scheduling. </span></p>\n<p><span style=\"font-weight: 400;\">The premium version of WP-Optimize is more affordable than WP Rocket and will let you install it on more websites compared to WP Rocket.  </span></p>\n<p><b>WP-Optimize</b></p>\n<table>\n<tbody>\n<tr>\n<td><b><i>Name of plan</i></b></td>\n<td><b><i>Cost</i></b></td>\n<td><b><i>Number of websites </i></b></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Starter </span></td>\n<td><span style=\"font-weight: 400;\">$39</span></td>\n<td><span style=\"font-weight: 400;\">2</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Business</span></td>\n<td><span style=\"font-weight: 400;\">$69</span></td>\n<td><span style=\"font-weight: 400;\">5</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Unlimited </span></td>\n<td><span style=\"font-weight: 400;\">$179</span></td>\n<td><span style=\"font-weight: 400;\">Unlimited </span></td>\n</tr>\n</tbody>\n</table>\n<p><b>WP Rocket</b></p>\n<table>\n<tbody>\n<tr>\n<td><b><i>Name of plan</i></b></td>\n<td><b><i>Cost</i></b></td>\n<td><b><i>Number of websites </i></b></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Single</span></td>\n<td><span style=\"font-weight: 400;\">$49</span></td>\n<td><span style=\"font-weight: 400;\">1</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Plus</span></td>\n<td><span style=\"font-weight: 400;\">$99</span></td>\n<td><span style=\"font-weight: 400;\">3</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Infinite</span></td>\n<td><span style=\"font-weight: 400;\">$249</span></td>\n<td><span style=\"font-weight: 400;\">Unlimited </span></td>\n</tr>\n</tbody>\n</table>\n<h3><b>WP-Optimize comes with an image compression feature</b></h3>\n<p><span style=\"font-weight: 400;\">In the bid to increase website speed and facilitate large file savings, WP-Optimize offers both <a href=\"https://getwpo.com/lossy-vs-lossless-image-compression-a-guide-to-the-trade-off-between-image-size-and-quality/\">Lossy and Lossless</a> image optimization. Large, uncompressed images can be one of the leading factors on why a site could take so long to load. As an additional feature, you can also backup your original high-resolution image files, in case you need them in the future. WP Rocket does not come with a built-in image compression feature. You would have to install </span><i><span style=\"font-weight: 400;\">Imagify, </span></i><span style=\"font-weight: 400;\">a third-party plugin, to compress your images. </span></p>\n<h3><b>WP-Optimize is integrated with UpdraftPlus backup</b></h3>\n<p><span style=\"font-weight: 400;\">WP-Optimize uses <a href=\"http://updraftplus.com\">UpdraftPlus</a> to back up your site. UpdraftPlus is the world’s leading backup plugin and is an essential plugin to install in order to safeguard your files. The integration is so seamless that the backup and restore functions are automatic and super-convenient. WP Rocket does not have this option, which is an especially necessary and crucial feature when making any changes to your site.</span></p>\n<h3><b>WP-Optimize is more effective for page caching</b></h3>\n<p><span style=\"font-weight: 400;\"><a href=\"https://getwpo.com/wordpress-caching-guide-how-does-it-improve-your-site-speed/\">Page caching</a> gives your WordPress website the capacity to generate more than just a set of files for separate visits from different devices &#8211; This feature allows for an overall better website performance, and while both WP-Optimize and WP Rocket offer this feature, WP-Optimize is more effective in delivering noticeable results. </span></p>\n<h2><b>Conclusion</b></h2>\n<p><span style=\"font-weight: 400;\">As you have learned from this blog, both plugins will do a good job in optimizing your website. However WP-Optimize is the more effective option and can deliver better results. The addition of a free version of the WP-Optimize plugin also allows the user to experience and test out the basic features within the plugin, without having to make an expensive purchase. If you are looking to speed up your site, reduce image size and find the best caching option available, WP-Optimize is the plugin for you. Download and install it today!</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wp-optimize-vs-wp-rocket-which-is-the-best-wordpress-optimization-and-caching-plugin/\">WP-Optimize vs. WP Rocket: Which is the best WordPress optimization and caching plugin?</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://updraftplus.com/wp-optimize-vs-wp-rocket-which-is-the-best-wordpress-optimization-and-caching-plugin/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:75:\"\n          \n              \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WP-Optimize vs. WP Fastest Cache: Which is the best WordPress cache plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://updraftplus.com/wp-optimize-vs-wp-fastest-cache/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Dec 2021 15:11:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:11:\"WP Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"Best\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"Caching\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:6:\"plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:13:\"which is best\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1309149\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:755:\"<p>WordPress is the largest website-hosting platform in the world. With that comes a lot of eyes and expectations. For your WordPress website to function optimally with little or no issues, you will need to install appropriate plugins. Some examples of &#8230; <a href=\"https://updraftplus.com/wp-optimize-vs-wp-fastest-cache/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wp-optimize-vs-wp-fastest-cache/\">WP-Optimize vs. WP Fastest Cache: Which is the best WordPress cache plugin</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Melvin Braide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8749:\"<p><iframe loading=\"lazy\" title=\"WP-Optimize vs WP Fastest Cache - Which is the best WordPress cache plugin\" width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/2mK__z84HwA?feature=oembed\"  allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<p><span style=\"font-weight: 400;\">WordPress is the largest website-hosting platform in the world. With that comes a lot of eyes and expectations. For your WordPress website to function optimally with little or no issues, you will need to install appropriate plugins. Some examples of essential plugins include a backup plugin, security plugin, and cache plugin. It is highly recommended that you install a cache plugin, as this plugin is essential to the overall speed and functionality of the website. </span></p>\n<p><span style=\"font-weight: 400;\">For old and new WordPress users who want to speed up their WordPress site, two popular cache plugins are often at the top of any list; <a href=\"http://getwpo.com\">WP-Optimize</a> and <a href=\"https://en-gb.wordpress.org/plugins/wp-fastest-cache/\">WP Fastest Cache</a>. But which one is the more effective cache plugin? </span><span style=\"font-weight: 400;\">As you will read in this blog, both WP-Optimize and WP Fastest Cache are great plugins that are used and recommended by people all over the world. But as you would expect, not all cache plugins are created equal. </span><span style=\"font-weight: 400;\">While there are premium version of both plugins available with lots of additional extra features and tools, this blog will compare the features available via the free versions. </span></p>\n<h2><span style=\"font-weight: 400;\">What is a cache system?</span></h2>\n<p><span style=\"font-weight: 400;\">Essentially, a cache system is the rendered WordPress page that requires PHP and MySQL. The system will also need good RAM and CPU settings. However good the RAM and CPU may be, you could find that as your visitor numbers increase, users will need and consume larger and larger amounts. As a consequence of this, your pages/site will begin to render more slowly. This can be bad news for your site as Google ranks the speed of your site as one of the primary factors in its search ranking algorithm. </span></p>\n<p><span style=\"font-weight: 400;\">As such it is highly recommended that you use a cache plugin to help improve the load time of your page &#8211; which can help improve your Google SEO ranking as a result. </span></p>\n<h2><span style=\"font-weight: 400;\">WP-Optimize</span></h2>\n<p><span style=\"font-weight: 400;\">WP-Optimize is simply outstanding in how it works. The plugin is an all-in-one platform that cam perform the following tasks quickly and easily:</span></p>\n<ul>\n<li>Database cleaning</li>\n<li>Site caching</li>\n<li>CSS and JS minification</li>\n<li>Image compression</li>\n</ul>\n<p><span style=\"font-weight: 400;\">Having racked up more than one million active installations, WP-Optimize is a powerful, successful and popular plugin you should install to keep your website in the best possible shape. </span></p>\n<h2><span style=\"font-weight: 400;\">WP Fastest Cache</span></h2>\n<p><span style=\"font-weight: 400;\">WP Fastest Cache is also a highly popular WordPress caching plugin that is mostly known for its simplicity. Although it also has a free version available for download, the major features most users may require &#8211; such as Mobile Cache, Widget Cache, Minify HTML Plus, Minify CSS Plus, Minify JS, Combine JS Plus, Defer Javascript, Optimize Images, Convert WebP, Database Cleanup, Google Fonts Async, and Lazy Load <strong>are only available in the premium version</strong>. </span></p>\n<p><span style=\"font-weight: 400;\">The free version is fine to use if you just want to make some quick gains in the loading times for your WordPress site. However, as someone that wants to fully optimize your site, ‘fine’ isn’t the greatest accolade when other plugins can do so much more.</span></p>\n<h2><b>WP-Optimize and WP Fastest Cache: Feature comparison</b></h2>\n<table>\n<tbody>\n<tr>\n<td><b>Features</b></td>\n<td><b>WP-Optimize</b></td>\n<td><b>WP Fastest Cache</b></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Free version</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Database Optimization</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Browser Caching</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Page Caching</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Gzip compression</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Lazy Load</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Image Compression </span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Cache Preloading </span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">HTML/CSS/JS minification</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Mobile Specific Cache</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n<tr>\n<td><span style=\"font-weight: 400;\">Script optimization</span></td>\n<td><span style=\"font-weight: 400;\">Yes</span></td>\n<td><span style=\"font-weight: 400;\">No</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<h2><span style=\"font-weight: 400;\">Why is WP-Optimize a better overall caching plugin than WP Fastest Cache?</span></h2>\n<h3><span style=\"font-weight: 400;\">It offers more features</span></h3>\n<p><span style=\"font-weight: 400;\">WP-Optimize offers more features for free. Everything from the compression of large images, to database cleaning, to site caching, is accessible on your WordPress site once you install WP-Optimize. WP Fastest Cache only provides a very limited list of features and provides the more useful and important features via it’s premium plugin. </span></p>\n<h3><span style=\"font-weight: 400;\">WP-Optimize comes with a database optimization feature</span></h3>\n<p><span style=\"font-weight: 400;\">Redundant website content, including trash comments and discarded drafts are wiped clean to help keep things faster and more smoothly. WP Fastest Cache does not offer this feature via it’s free version.  </span></p>\n<h3><span style=\"font-weight: 400;\">WP-Optimize compresses large websites images</span></h3>\n<p><span style=\"font-weight: 400;\">With the free version of the WP-Optimize plugin, you can determine the final sizes and format of your images. All you have to do is set it to your preferred settings. WP Fastest Cache only has this feature available in its premium version. </span></p>\n<h3><span style=\"font-weight: 400;\">WP Optimize has a great customer support</span></h3>\n<p><span style=\"font-weight: 400;\">With more than one million global users and thousands of 5-star ratings, WP-Optimize is committed to bringing you the best user experience possible.</span></p>\n<h2><span style=\"font-weight: 400;\">Conclusion </span></h2>\n<p><span style=\"font-weight: 400;\">We encourage users to use both WP-Optimize and WP Fastest cache and evaluate the relative performance of both. While both plugins are extremely popular and both have their supporters and detractors, WP-Optimize offers a far wider range of important features that combined can help make your site run faster. This in turn can help improve your SEO score, which can lead to a higher Google ranking, more success and more interactions with your visitors. </span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wp-optimize-vs-wp-fastest-cache/\">WP-Optimize vs. WP Fastest Cache: Which is the best WordPress cache plugin</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:60:\"\n            \n              \n              \n              \n              \n                              \n              \n              \n\n                                    \n                                                                              \n                                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"8 ways to boost your WordPress website conversion rates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://updraftplus.com/8-ways-to-boost-your-wordpress-website-conversion-rates/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Dec 2021 14:09:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:20:\"Other WordPress news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:15:\"Tips and tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1303339\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:774:\"<p>Your site might have lots of traffic, but if your website conversion rates are down, your bottom line will take a huge hit. It’s absolutely crucial to optimize your web design and site functionality to increase your conversion rates. All &#8230; <a href=\"https://updraftplus.com/8-ways-to-boost-your-wordpress-website-conversion-rates/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/8-ways-to-boost-your-wordpress-website-conversion-rates/\">8 ways to boost your WordPress website conversion rates</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Patty Yan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:17276:\"<p><span style=\"font-weight: 400;\">Your site might have lots of traffic, but if your website conversion rates are down, your bottom line will take a huge hit. It’s absolutely crucial to optimize your web design and site functionality to increase your conversion rates. All your efforts to drive traffic, like SEO or digital marketing will be futile, if that traffic will bounce away uninterested.</span></p>\n<p><span style=\"font-weight: 400;\">Website conversions are a direct indicator of sales volume. A conversion can be a click on a ‘Call to Action’ button, adding a product to a shopping cart, filling a lead generation form, or simply providing an email address to sign up for a newsletter. The ultimate conversion will always be buying a product, but you can have multiple conversions along the </span><a href=\"https://getstencil.com/blog/how-to-build-a-social-media-marketing-funnel-to-boost-conversions/\"><span style=\"font-weight: 400;\">marketing funnel.</span></a></p>\n<h2><span style=\"font-weight: 400;\">What is your website conversion rate? </span></h2>\n<p><span style=\"font-weight: 400;\">Conversion rate is the percentage of your web visitors that complete your desired goal. It’s a direct function of the usability and branding of your website. </span></p>\n<p><span style=\"font-weight: 400;\">There are of course a host of tactics you can employ to </span><a href=\"https://prisync.com/blog/how-to-leverage-location-data-to-improve-conversion-rates/\"><span style=\"font-weight: 400;\">improve conversion rate</span></a><span style=\"font-weight: 400;\"> and SEO ranking &#8211; such as continuously improving and updating your site with new content, products, deals, videos, blogs etc. A stagnant website will miss out on many opportunities to increase revenue and fall down the SEO ranking order.</span></p>\n<p><span style=\"font-weight: 400;\">CRO &#8211; or conversion rate optimization, uses the traffic you already have to drive conversions, instead of increasing traffic to your website. This is the best way to get the most bang for your marketing buck and once you have a higher-converting website, you can start investing in driving traffic again.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/12/unnamed-2.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1303340\" src=\"https://updraftplus.com/wp-content/uploads/2021/12/unnamed-2.png\" alt=\"\" width=\"512\" height=\"320\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/12/unnamed-2.png 512w, https://updraftplus.com/wp-content/uploads/2021/12/unnamed-2-480x300.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 512px, 100vw\" /></a></p>\n<p><a href=\"https://pixabay.com/illustrations/conversion-funnel-sales-process-5444126/\"><span style=\"font-weight: 400;\">Image Source</span></a></p>\n<p><span style=\"font-weight: 400;\">Here are eight practical and proven ways to improve website conversion rates:</span></p>\n<h2><span style=\"font-weight: 400;\">1.</span><span style=\"font-weight: 400;\">   </span><span style=\"font-weight: 400;\">Use pictures</span><span style=\"font-weight: 400;\"><br />\n</span></h2>\n<p><a href=\"https://updraftplus.com/speed-up-your-wordpress-site-using-image-optimization/\"><span style=\"font-weight: 400;\">Image optimization</span></a><span style=\"font-weight: 400;\"> can help instantly communicate your value proposition better than most copy. Rarely does anyone have time to read your product descriptions in full, but if you’re lucky enough to find a picture that tells all, you can change their mind and convince a potential customer to buy your product from a host of rivals. </span></p>\n<p><span style=\"font-weight: 400;\">If you have an online video conferencing service for example, you can show a potential customer how they would look during a web meeting. Such an image will help engage the visitor further and allow you to guide them down the sales funnel with further engagement.</span></p>\n<p><span style=\"font-weight: 400;\">Here are some tips for choosing images:</span></p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Choose images of people using your products and not just an image of your products.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Don’t use stock photos, use Google advanced image search. Or better still create your own photos.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Edit your photos to get the best optimization and loading speed</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Test images for landing pages</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Choose responsive images that attract attention</span></li>\n</ol>\n<h2><span style=\"font-weight: 400;\">2.</span><span style=\"font-weight: 400;\">   </span><span style=\"font-weight: 400;\">Include reviews, links and ratings</span><span style=\"font-weight: 400;\"><br />\n</span></h2>\n<p><span style=\"font-weight: 400;\">Customer testimonials, star ratings and reviews all play an important role in influencing buying decisions. This is due to the phenomenon of social proof, whereby consumers believe more in a product if others are also buying, using and enjoying it. </span></p>\n<p><span style=\"font-weight: 400;\">Leveraging social proof can be one of your biggest assets to increase trust in your brand and ultimately </span><a href=\"https://updraftplus.com/increase-traffic-and-sales-wordpress/\"><span style=\"font-weight: 400;\">increase ecommerce traffic and sales.</span></a></p>\n<p><span style=\"font-weight: 400;\">Ensuring your brand story has social proof to support it is essential to building credibility. Incorporating social proof into your web design is a fail-safe marketing strategy. </span></p>\n<p><span style=\"font-weight: 400;\">Add customer testimonials next to your product descriptions to show potential customers that your product has been used and highly rated by others. Customers tend to be sceptical by nature, adding the element of social proof increases their confidence and can help convince them that your brand is worth investing in. Social proof on your landing pages can also be a big source of conversions and can enhance engagement on your website.</span></p>\n<h2><span style=\"font-weight: 400;\">3.</span><span style=\"font-weight: 400;\">   </span><span style=\"font-weight: 400;\">Make conversions smaller commitments</span></h2>\n<p><span style=\"font-weight: 400;\">It’s a busy world and if you have a higher bounce rate, it could be because the actions needed to convert are too time consuming. </span></p>\n<p><span style=\"font-weight: 400;\">Understand that time is money and people have short attention spans. People are commitment averse; they would rather put 10 items in their shopping cart than immediately buy one.</span></p>\n<p><span style=\"font-weight: 400;\">Ask your customers for smaller commitments, especially if you have a service company or sell expensive products that require special consideration. Changing your CTA buttons to softer alternatives to immediate purchases can work wonders. </span></p>\n<p><span style=\"font-weight: 400;\">For instance, changing a “Buy now” button to “Book a free consultation” is much friendlier for the commitment-phobic because it reassures the user that a conversation is the next step, not an ultimate purchase.</span></p>\n<p><span style=\"font-weight: 400;\">A recent test found that simply changing a main call to action to “Contact seller” from “Buy now” increased conversion rates by</span><a href=\"https://www.goodui.org/evidence/test004\"> <span style=\"font-weight: 400;\">73%</span></a><span style=\"font-weight: 400;\">.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/12/unnamed-2.jpg\"><img loading=\"lazy\" class=\"alignnone wp-image-1303341\" src=\"https://updraftplus.com/wp-content/uploads/2021/12/unnamed-2.jpg\" alt=\"\" width=\"548\" height=\"256\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/12/unnamed-2.jpg 548w, https://updraftplus.com/wp-content/uploads/2021/12/unnamed-2-480x224.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 548px, 100vw\" /></a></p>\n<p><a href=\"https://www.goodui.org/evidence/test004\"><span style=\"font-weight: 400;\">Image source</span></a></p>\n<h2><span style=\"font-weight: 400;\">4.</span><span style=\"font-weight: 400;\">   </span><span style=\"font-weight: 400;\">Optimize UX design and copy</span></h2>\n<p><span style=\"font-weight: 400;\">UX design or the user experience of your web design is perhaps the biggest decider of where a user will land. Make sure your website can be navigated smoothly and seamlessly. A </span><a href=\"https://ancorathemes.com/2021/03/24/8-principles-of-visual-hierarchy-in-great-ux-design/\"><span style=\"font-weight: 400;\">great UX design</span></a><span style=\"font-weight: 400;\"> is essential to increase website conversion rates.</span></p>\n<p><span style=\"font-weight: 400;\">The copy of your website goes hand in hand with your UX. Use active language and provide clickable options so users can go where they want without too much work. Expose primary navigation items at all times, so people can move through the website at will.</span></p>\n<h2><span style=\"font-weight: 400;\">5.</span><span style=\"font-weight: 400;\">   </span><span style=\"font-weight: 400;\">Reduce fields in contact forms</span></h2>\n<p><span style=\"font-weight: 400;\">One of the primary ways to gain leads is to have people sign up via contact forms. Filling out these forms though can be a hassle. If your form has too many fields, people might skip signing up altogether. Remove as many barriers as possible.</span></p>\n<p><span style=\"font-weight: 400;\">Let a potential customer know the benefits of filling out a form. Set out expectations so you don’t fall short. Make sure your contact forms are conversational and friendly. Forms with too many fields are intimidating and people are often wary about giving out too much personal information.</span></p>\n<p><span style=\"font-weight: 400;\">Stick to fields that are necessary for conversion and do away with all the fluff that makes form filling a hassle. You should hopefully then find that your contact form submissions will increase.</span></p>\n<h2><span style=\"font-weight: 400;\">6.</span><span style=\"font-weight: 400;\">   </span><span style=\"font-weight: 400;\">Optimize customer support</span></h2>\n<p><span style=\"font-weight: 400;\">Customers are more likely to buy when their concerns are addressed during their initial “buying” period, which is usually under a minute. You should have a support team available to handle queries via live chat and other channels, and have an automated system like </span><a href=\"https://www.ringcentral.co.uk/gb/en/blog/definitions/automatic-call-distribution-acd/\"><span style=\"font-weight: 400;\">automatic call distribution </span></a><span style=\"font-weight: 400;\">that can send the queries and questions to the relevant departments in the case of any phone calls.</span></p>\n<p><span style=\"font-weight: 400;\">Interactive voice response (IVR) is another tech example to consider to support any phone-based customer support. IVR is a form of speech recognition technology that allows customers to interact with an organization’s contact center with the minimum of fuss.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2021/12/unnamed-3.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-1303342\" src=\"https://updraftplus.com/wp-content/uploads/2021/12/unnamed-3.png\" alt=\"\" width=\"512\" height=\"512\" srcset=\"https://updraftplus.com/wp-content/uploads/2021/12/unnamed-3.png 512w, https://updraftplus.com/wp-content/uploads/2021/12/unnamed-3-480x480.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 512px, 100vw\" /></a></p>\n<p><a href=\"https://pixabay.com/vectors/chat-live-logo-icon-symbol-media-6536649/\"><span style=\"font-weight: 400;\">Image Source</span></a></p>\n<h2><span style=\"font-weight: 400;\">7.</span><span style=\"font-weight: 400;\">   </span><span style=\"font-weight: 400;\">Optimize for mobile</span></h2>\n<p><span style=\"font-weight: 400;\">Given the amount of traffic that is now sourced from mobile phones, it is important that you have a dedicated mobile format for your website. Failure to do this could result in a huge chunk of your potential customers being lost. </span></p>\n<p><span style=\"font-weight: 400;\">It is important that your mobile website is responsive and optimized for mobile use, which means button sizes and font sizes should be designed to work on mobile devices. Remember to be creative with mobile marketing &#8211; if done right and integrated with social media apps, it can help improve your conversion rate. </span><span style=\"font-weight: 400;\"><br />\n</span><span style=\"font-weight: 400;\"><br />\n</span><span style=\"font-weight: 400;\">Make sure to also optimize any newsletters, e-mails and anything that goes through an </span><a href=\"https://www.duocircle.com\"><span style=\"font-weight: 400;\">SMTP</span></a><span style=\"font-weight: 400;\"> for mobile, as they can result in new leads if formatted correctly. </span></p>\n<h2><span style=\"font-weight: 400;\">8.</span><span style=\"font-weight: 400;\">   </span><span style=\"font-weight: 400;\">Strengthen your ‘call to action’ point</span></h2>\n<p><span style=\"font-weight: 400;\">The following guidelines can help create call to actions (CTAs) that will increase website conversion rates, as the right CTA can be all that’s needed to set you apart:           </span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Have a clear and bright CTA on the landing page. </span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Keep your CTA simple and use active language to communicate value and urgency.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Personalize your CTAs &#8211; Personalized CTAs perform </span><a href=\"https://blog.hubspot.com/marketing/personalized-calls-to-action-convert-better-data\"><span style=\"font-weight: 400;\">202%</span></a><span style=\"font-weight: 400;\"> better than basic CTAs.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Don’t use multiple CTAs on each page.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Attract attention to CTAs by using pop ups. But remember not to be intrusive or disruptive to the customer experience.</span></li>\n</ul>\n<h2><span style=\"font-weight: 400;\">Test before you launch</span></h2>\n<p><span style=\"font-weight: 400;\">The eight examples listed above can all help </span><a href=\"https://updraftplus.com/discover-the-most-effective-ways-to-boost-your-wordpress-site-performance/\"><span style=\"font-weight: 400;\">boost your site performance</span></a><span style=\"font-weight: 400;\">, but all updates and changes to your site need to be tested after implementation. </span></p>\n<p><span style=\"font-weight: 400;\">Perform A/B testing on every change you make. Web design requires you to be on your toes and make changes every so often to optimize the content, while resolving any ‘pain points’ customers may be experiencing.</span></p>\n<p><span style=\"font-weight: 400;\">When embarking on your continuous conversion rate optimization (CRO) journey, using </span><a href=\"https://www.automationanywhere.com/rpa/process-discovery\"><span style=\"font-weight: 400;\">process discovery</span></a><span style=\"font-weight: 400;\"> could also be invaluable. It can help you discover processes you may be able to automate in the future to improve the user experience of your website to reduce bounce rates, gain more leads and enhance conversion rates.</span></p>\n<p><span style=\"font-weight: 400;\">Once you have reached the point where your website resonates with your target audience, you can use a </span><a href=\"https://accelerateagency.ai/saas-retargeting-strategy\"><span style=\"font-weight: 400;\">SaaS retargeting strategy</span></a><span style=\"font-weight: 400;\"> to directly tackle those that do not convert. This method targets that part of your traffic that bounced and shows them ads to help drive them back to your website and hopefully convert. </span></p>\n<p><span style=\"font-weight: 400;\">If you follow all the advice above, test as you go and investigate how tech can assist you along the way, your conversion rates should improve accordingly. </span></p>\n<p><b>Patty Yan</b></p>\n<p><span style=\"font-weight: 400;\">Patty is the EMEA Product Marketing Manager for </span><span style=\"font-weight: 400;\">RingCentral</span><span style=\"font-weight: 400;\"> Office</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/8-ways-to-boost-your-wordpress-website-conversion-rates/\">8 ways to boost your WordPress website conversion rates</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:75:\"\n                \n              \n              \n              \n              \n                              \n              \n              \n              \n              \n              \n              \n              \n\n                                    \n                                                                              \n                                      \n              \n              \n                      \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"UpdraftPlus vs. WP DB Backup: Which is the best WordPress backup plugin?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://updraftplus.com/updraftplus-vs-wp-db-backup-which-is-the-best-wordpress-backup-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Dec 2021 11:24:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:20:\"Other WordPress news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Backup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"Best\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"ranking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"UpdraftPlus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:12:\"wp db backup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1300029\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:813:\"<p>We cannot overemphasize the need to backup your WordPress website. Many people have learnt the hard way how easy it is to delete essential information on their website or the entire site by clicking one button. That doesn’t have to &#8230; <a href=\"https://updraftplus.com/updraftplus-vs-wp-db-backup-which-is-the-best-wordpress-backup-plugin/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-vs-wp-db-backup-which-is-the-best-wordpress-backup-plugin/\">UpdraftPlus vs. WP DB Backup: Which is the best WordPress backup plugin?</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Melvin Braide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7385:\"<p><iframe loading=\"lazy\" title=\"UDP vs WP DB Backup: Which is the best WordPress backup plugin?\" width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/xqrX8Tttf-k?feature=oembed\"  allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<p><span style=\"font-weight: 400;\">We cannot overemphasize the need to backup your WordPress website. Many people have learnt the hard way how easy it is to delete essential information on their website or the entire site by clicking one button. That doesn’t have to be you. </span><span style=\"font-weight: 400;\">In this blog post, we will compare two WordPress backup plugins: UpdraftPlus and WP DB, as well as show you why the former is superior and ranks the best in the world. But first, what are UpdraftPlus and WP DB Backup?</span></p>\n<h2><b>UpdraftPlus</b></h2>\n<p><span style=\"font-weight: 400;\">With more than three million current active users, <a href=\"http://updraftplus.com\">UpdraftPlus</a> is the most popular and highest-ranking WordPress backup plugin. To put it simply, UpdraftPlus is the best backup plugin in the world. </span></p>\n<p><span style=\"font-weight: 400;\">The plugin doesn’t just simplify users’ databases and files backup process, it also makes the restoration as seamless as possible. With a single click of a button, everything you need to back up and restore your WordPress site is safely stowed away on the cloud. </span></p>\n<p><span style=\"font-weight: 400;\">What’s more, with UpdraftPlus your backup can be uploaded into multiple cloud services including Dropbox, Google Drive, and Amazon S3 (or compatible).</span></p>\n<p><span style=\"font-weight: 400;\">Installing and using Updraftplus is essentially saying goodbye to the consequences of crashed servers, hacking attempts and common user glitches on your WordPress site. </span></p>\n<h2><b>WP DB Backup</b></h2>\n<p><span style=\"font-weight: 400;\">Also known as WordPress database, <a href=\"https://wordpress.org/plugins/wp-database-backup/\">WP DB Backup</a> backs-up your WordPress site database only. More basic information, such as passwords and usernames are also retained. It also stores your themes, configuration preferences, pages, posts and accompanying comments. </span></p>\n<p><span style=\"font-weight: 400;\">While it may not be nearly as versatile as UpdraftPlus, it can serve you well in some situations, especially if your website security needs are minimal.  </span></p>\n<h2><b>Similarities between UpdraftPlus and WP DB Backup</b></h2>\n<p><span style=\"font-weight: 400;\">Before we get into the details on how UpdraftPlus is superior to WP DB Backup (and every other backup plugin for that matter), it’s worth noting that they share some similarities &#8211; albeit slight. They are as follows: </span></p>\n<h3><b>Automatic backups</b></h3>\n<p><span style=\"font-weight: 400;\">Both UpdraftPlus and WP DB Backup share a feature that allows the user to backup their WordPress site automatically, as well as restore it &#8211; should they ever need to. To take advantage of this, you will have to schedule the backups to run on their own. </span></p>\n<p><span style=\"font-weight: 400;\">This is one way to ensure that all recent changes are saved regularly. That is to say, backups will be automatic on your website at regular intervals. It should be noted however, that UpdraftPlus packs more automatic backup features than WP DB Backup. </span></p>\n<h3><b>Easy configuration</b></h3>\n<p><span style=\"font-weight: 400;\">Both plugins are very easy to configure and use, although UpdraftPlus is noticeably easier to install, configure and navigate. First time users and experts alike will have very little or no drawback with using both backup plugins. </span></p>\n<h2><b>Why you should use the UpdraftPlus backup plugin</b></h2>\n<p><span style=\"font-weight: 400;\">UpdraftPlus and WP DB Backup are used daily by businesses and individuals all over the world. Regardless of this, it is clear that they are not in the same league. UpdraftPlus is simply the best backup plugin available. </span></p>\n<p><span style=\"font-weight: 400;\">Here’s why: </span></p>\n<h3><b>It’s rated number 1 in the world</b></h3>\n<p><span style=\"font-weight: 400;\">One way to pick a functional backup plugin for your WordPress website is to check how they are rated on WordPress.org. You do the same for any type of plugin, whether it’s </span><a href=\"https://getwpo.com/buy/\"><span style=\"font-weight: 400;\">image optimization or caching</span></a><span style=\"font-weight: 400;\">. This allows users to get a good impression on the quality of a particular plugin.</span></p>\n<p><span style=\"font-weight: 400;\">With more than 3 million active users, UpdraftPlus has a 5-star rating by 5,570 reviewers and currently ranks number 1 in the world. WP DB Backup on the other hand, doesn’t come anywhere close. </span></p>\n<h3><b>UpdraftPlus features incremental backups</b></h3>\n<p><span style=\"font-weight: 400;\">Trying to backup your whole site in one go can weigh down on your server and slow down your website’s process. By using the incremental backup option, the UpdraftPlus backup plugin is able to split your site into only the latest updates/changes, so you do not have to keep uploading the whole site and putting a large work-load on the server. WP DB Backup doesn’t employ this incremental backup option, which makes it considerably less efficient. </span></p>\n<h3><b>UpdraftPlus has more cloud storage options</b></h3>\n<p><span style=\"font-weight: 400;\">Like WP DB Backup, UpdraftPlus features multiple cloud storage options. However, while WP DB Backup supports only email, Dropbox, Google Drive, and Amazon S3 &#8211; UpdraftPlus supports more options including email, Dropbox, Google Drive, Amazon S3 (or compatible), UpdraftVault, Rackspace Cloud, FTP, DreamObjects, Microsoft OneDrive, Microsoft Azure, Google Cloud Storage, Backblaze B2, SFTP, SCP, WebDAV, and Openstack Swift. </span></p>\n<h3><b>UpdraftPlus backups both databases and files</b></h3>\n<p><span style=\"font-weight: 400;\">While the WP DB Backup plugin only backups databases, UpdraftPlus backups both databases and core files, as well as the non-WordPress files of your site. While the WP DB Backup only restores the databases, UpdraftPlus can restore the entire site &#8211; containing both databases and files. This just goes to show that UpdraftPlus is a better backup plugin for anyone that is serious about backing up their site. </span></p>\n<h2><b>Conclusion</b></h2>\n<p><span style=\"font-weight: 400;\">Although WP DP Backup is a good option &#8211; UpdraftPlus is without a doubt the better WordPress backup plugin. It comes fully packed with every backup feature you could need. There may be many to pick from out there, but if you want the best backup plugin for your WordPress website, <a href=\"http://updraftplus.com\">UpdraftPlus</a> is your best bet. </span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-vs-wp-db-backup-which-is-the-best-wordpress-backup-plugin/\">UpdraftPlus vs. WP DB Backup: Which is the best WordPress backup plugin?</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n      hourly  \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n      1       \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";s:4:\"href\";s:39:\"http://feeds.feedburner.com/UpdraftPlus\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"rel\";s:3:\"hub\";s:4:\"href\";s:32:\"http://pubsubhubbub.appspot.com/\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:4:\"info\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"uri\";s:11:\"updraftplus\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"etag\";s:27:\"s3oeVIQIrkZA/WoYNSE6KQ0xYy4\";s:13:\"last-modified\";s:29:\"Thu, 24 Feb 2022 15:41:20 GMT\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"date\";s:29:\"Thu, 24 Feb 2022 16:05:05 GMT\";s:7:\"expires\";s:29:\"Thu, 24 Feb 2022 16:05:05 GMT\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:6:\"server\";s:3:\"GSE\";s:7:\"alt-svc\";s:162:\"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"\";}}s:5:\"build\";s:14:\"20211220193300\";}','no'),(16624,'_transient_timeout_feed_mod_e0061ca2fa5b884e483872aa34d3e7eb','1645761904','no'),(16625,'_transient_feed_mod_e0061ca2fa5b884e483872aa34d3e7eb','1645718704','no'),(16626,'_transient_timeout_updraftplus_dashboard_news','1645761904','no'),(16627,'_transient_updraftplus_dashboard_news','<div class=\"rss-widget\"><ul><li class=\"updraftplus_dashboard_news_item\"><a href=\"https://unternehmen.wir-noi.org/wp-admin/\" class=\"dashicons dashicons-no-alt\" title=\"Alle UpdraftPlus-Neuigkeiten verwerfen\" onClick=\"updraftplus_dismiss_dashboard_news(); return false;\" style=\"float: right; box-shadow: none; margin-left: 5px;\"></a><a class=\'rsswidget\' href=\'https://updraftplus.com/how-to-revamp-and-redesign-your-wordpress-site-guide/\'>UpdraftPlus: How to revamp and redesign your WordPress site guide</a></li><li class=\"updraftplus_dashboard_news_item\"><a href=\"https://unternehmen.wir-noi.org/wp-admin/\" class=\"dashicons dashicons-no-alt\" title=\"Alle UpdraftPlus-Neuigkeiten verwerfen\" onClick=\"updraftplus_dismiss_dashboard_news(); return false;\" style=\"float: right; box-shadow: none; margin-left: 5px;\"></a><a class=\'rsswidget\' href=\'https://updraftplus.com/updraftplus-security-release-1-22-3-2-22-3/\'>UpdraftPlus: UpdraftPlus security release – 1.22.3 / 2.22.3 – please upgrade</a></li></ul></div>','no'),(16628,'_transient_timeout_dash_v2_898c881de4a92ca37616885905bba3b7','1645761904','no'),(16629,'_transient_dash_v2_898c881de4a92ca37616885905bba3b7','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://de.wordpress.org/2022/02/wordpress-5-9-1-wartungs-release/\'>WordPress 5.9.1 Wartungs-Release</a></li><li><a class=\'rsswidget\' href=\'https://de.wordpress.org/2022/01/wordpress-5-9/\'>WordPress 5.9 »Joséphine«</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://feed.wpletter.de/link/14399/15093545/326\'>WordPress News #326 / 300. WP Letter, Adblocker, Script-Loading und WordPress 6.0</a></li><li><a class=\'rsswidget\' href=\'https://www.perun.net/2022/02/16/lokale-google-fonts-als-wordpress-plugin/\'>Lokale Google Fonts als WordPress-Plugin</a></li><li><a class=\'rsswidget\' href=\'https://feed.wpletter.de/link/14399/15079983/325\'>WordPress News #325 / Sicherheitslücke in Plugin, Tracking in Browsern</a></li></ul></div>','no'),(16785,'_site_transient_timeout_php_check_d564ef3bc004ad591bb7443752129422','1646333230','no'),(16786,'_site_transient_php_check_d564ef3bc004ad591bb7443752129422','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(17092,'_transient_timeout_forge12_upgrade_f12-cf7-doubleoptin','1645786708','no'),(17093,'_transient_forge12_upgrade_f12-cf7-doubleoptin','O:8:\"stdClass\":11:{s:4:\"name\";s:40:\"Forge12 Double Opt-in for Contact Form 7\";s:7:\"version\";s:5:\"1.6.7\";s:12:\"download_url\";s:62:\"https://api.forge12.com/v1/updates/f12-cf7-doubleoptin-167.zip\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"last_updated\";s:19:\"2022-02-18 09:25:00\";s:6:\"author\";s:24:\"Forge12 Interactive GmbH\";s:14:\"author_profile\";s:23:\"https://www.forge12.com\";s:8:\"sections\";O:8:\"stdClass\":3:{s:11:\"description\";s:50:\"Enable Double OptIn for your Contact Form 7 Forms.\";s:12:\"installation\";s:136:\"<ul><li>Enable the Plugin</li><li>Add the license key</li><li>Add the double opt in to your prefered contact form 7 formulars.</li></ul>\";s:9:\"changelog\";s:0:\"\";}s:7:\"banners\";O:8:\"stdClass\":2:{s:3:\"low\";s:0:\"\";s:6:\"height\";s:0:\"\";}}','no'),(17094,'_transient_timeout_avada_premium_plugins_info','1645829908','no'),(17095,'_transient_avada_premium_plugins_info','a:14:{s:11:\"fusion-core\";a:18:{s:4:\"name\";s:11:\"Fusion Core\";s:11:\"plugin_name\";s:10:\"Avada Core\";s:4:\"slug\";s:11:\"fusion-core\";s:13:\"plugin_author\";s:11:\"ThemeFusion\";s:17:\"plugin_author_url\";s:23:\"http://theme-fusion.com\";s:5:\"image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-core-thumbnail.jpg\";s:9:\"image_url\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-core-thumbnail.jpg\";s:12:\"external_url\";s:30:\"https://avada.theme-fusion.com\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:5:\"5.6.1\";s:8:\"required\";b:1;s:4:\"icon\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:6:\"banner\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";s:11:\"tf_cs_image\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-core-companysite.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:5:\"5.6.1\";s:6:\"Author\";s:11:\"ThemeFusion\";s:9:\"AuthorURI\";s:23:\"http://theme-fusion.com\";}s:14:\"fusion-builder\";a:18:{s:4:\"name\";s:14:\"Fusion Builder\";s:11:\"plugin_name\";s:13:\"Avada Builder\";s:4:\"slug\";s:14:\"fusion-builder\";s:13:\"plugin_author\";s:11:\"ThemeFusion\";s:17:\"plugin_author_url\";s:24:\"https://theme-fusion.com\";s:5:\"image\";s:87:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-builder-thumbnail.jpg\";s:9:\"image_url\";s:87:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-builder-thumbnail.jpg\";s:12:\"external_url\";s:30:\"https://avada.theme-fusion.com\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:5:\"3.6.1\";s:8:\"required\";b:1;s:4:\"icon\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:6:\"banner\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";s:11:\"tf_cs_image\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-builder-companysite.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:5:\"3.6.1\";s:6:\"Author\";s:11:\"ThemeFusion\";s:9:\"AuthorURI\";s:24:\"https://theme-fusion.com\";}s:27:\"fusion-white-label-branding\";a:18:{s:4:\"name\";s:27:\"Fusion White Label Branding\";s:11:\"plugin_name\";s:21:\"Avada Custom Branding\";s:4:\"slug\";s:27:\"fusion-white-label-branding\";s:13:\"plugin_author\";s:11:\"ThemeFusion\";s:17:\"plugin_author_url\";s:24:\"https://theme-fusion.com\";s:5:\"image\";s:95:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/avada-custom-branding-thumbnail.jpg\";s:9:\"image_url\";s:95:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/avada-custom-branding-thumbnail.jpg\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:3:\"1.2\";s:8:\"required\";b:0;s:4:\"icon\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:96:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/avada-custombranding-companysite.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:3:\"1.2\";s:6:\"Author\";s:11:\"ThemeFusion\";s:9:\"AuthorURI\";s:24:\"https://theme-fusion.com\";}s:9:\"revslider\";a:18:{s:4:\"name\";s:17:\"Slider Revolution\";s:11:\"plugin_name\";s:17:\"Slider Revolution\";s:4:\"slug\";s:9:\"revslider\";s:13:\"plugin_author\";s:10:\"ThemePunch\";s:17:\"plugin_author_url\";s:22:\"http://themepunch.com/\";s:5:\"image\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/slider_revolution-1.png\";s:9:\"image_url\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/slider_revolution-1.png\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:6:\"6.5.15\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/slider_revolution_cs.png\";s:11:\"has_package\";b:1;s:7:\"version\";s:6:\"6.5.15\";s:6:\"Author\";s:10:\"ThemePunch\";s:9:\"AuthorURI\";s:22:\"http://themepunch.com/\";}s:11:\"LayerSlider\";a:18:{s:4:\"name\";s:14:\"LayerSlider WP\";s:11:\"plugin_name\";s:14:\"LayerSlider WP\";s:4:\"slug\";s:11:\"LayerSlider\";s:13:\"plugin_author\";s:14:\"Kreatura Media\";s:17:\"plugin_author_url\";s:38:\"https://layerslider.kreaturamedia.com/\";s:5:\"image\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/layer_slider_plugin_thumb.png\";s:9:\"image_url\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/layer_slider_plugin_thumb.png\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:3:\"7.1\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/layerslider_company_site.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:3:\"7.1\";s:6:\"Author\";s:14:\"Kreatura Media\";s:9:\"AuthorURI\";s:38:\"https://layerslider.kreaturamedia.com/\";}s:26:\"advanced-custom-fields-pro\";a:18:{s:4:\"name\";s:26:\"Advanced Custom Fields PRO\";s:11:\"plugin_name\";s:26:\"Advanced Custom Fields PRO\";s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:13:\"plugin_author\";s:13:\"Elliot Condon\";s:17:\"plugin_author_url\";s:28:\"http://www.elliotcondon.com/\";s:5:\"image\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/acf_pro.png\";s:9:\"image_url\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/acf_pro.png\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:6:\"5.11.4\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/acf_pro_company_site.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:6:\"5.11.4\";s:6:\"Author\";s:13:\"Elliot Condon\";s:9:\"AuthorURI\";s:28:\"http://www.elliotcondon.com/\";}s:11:\"convertplug\";a:18:{s:4:\"name\";s:12:\"Convert Plus\";s:11:\"plugin_name\";s:12:\"Convert Plus\";s:4:\"slug\";s:11:\"convertplug\";s:13:\"plugin_author\";s:16:\"Brainstorm Force\";s:17:\"plugin_author_url\";s:31:\"https://www.brainstormforce.com\";s:5:\"image\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/convertplus_thumbnail.jpg\";s:9:\"image_url\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/convertplus_thumbnail.jpg\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:6:\"3.5.24\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:98:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/convertplus_thumbnail_company_site.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:6:\"3.5.24\";s:6:\"Author\";s:16:\"Brainstorm Force\";s:9:\"AuthorURI\";s:31:\"https://www.brainstormforce.com\";}s:12:\"filebird-pro\";a:18:{s:4:\"name\";s:8:\"FileBird\";s:11:\"plugin_name\";s:8:\"FileBird\";s:4:\"slug\";s:12:\"filebird-pro\";s:13:\"plugin_author\";s:10:\"Ninja Team\";s:17:\"plugin_author_url\";s:54:\"https://ninjateam.org/wordpress-media-library-folders/\";s:5:\"image\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966046-a7930180-2d8d-11eb-9695-a4e6bd9c870e.jpg\";s:9:\"image_url\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966046-a7930180-2d8d-11eb-9695-a4e6bd9c870e.jpg\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:7:\"4.9.9.1\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966169-d3ae8280-2d8d-11eb-895e-0191ae051d45.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:7:\"4.9.9.1\";s:6:\"Author\";s:10:\"Ninja Team\";s:9:\"AuthorURI\";s:54:\"https://ninjateam.org/wordpress-media-library-folders/\";}s:6:\"leadin\";a:15:{s:4:\"name\";s:7:\"HubSpot\";s:11:\"plugin_name\";s:7:\"HubSpot\";s:4:\"slug\";s:6:\"leadin\";s:13:\"plugin_author\";s:7:\"HubSpot\";s:17:\"plugin_author_url\";s:23:\"https://www.hubspot.com\";s:5:\"image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/hubspot_plugin_thumb.jpg\";s:9:\"image_url\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/hubspot_plugin_thumb.jpg\";s:12:\"external_url\";s:54:\"https://downloads.wordpress.org/plugin/woocommerce.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/hubspot_plugin_thumb.jpg\";s:11:\"has_package\";b:0;}s:11:\"woocommerce\";a:15:{s:4:\"name\";s:11:\"WooCommerce\";s:11:\"plugin_name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:13:\"plugin_author\";s:10:\"Automattic\";s:17:\"plugin_author_url\";s:23:\"https://woocommerce.com\";s:5:\"image\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/woocommerce_plugin_thumb.png\";s:9:\"image_url\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/woocommerce_plugin_thumb.png\";s:12:\"external_url\";s:54:\"https://downloads.wordpress.org/plugin/woocommerce.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/woocommerce_plugin_thumb.png\";s:11:\"has_package\";b:0;}s:19:\"the-events-calendar\";a:15:{s:4:\"name\";s:19:\"The Events Calendar\";s:11:\"plugin_name\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:13:\"plugin_author\";s:18:\"Modern Tribe, Inc.\";s:17:\"plugin_author_url\";s:18:\"http://m.tri.be/1x\";s:5:\"image\";s:92:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/events_calendar_plugin_thumb.png\";s:9:\"image_url\";s:92:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/events_calendar_plugin_thumb.png\";s:12:\"external_url\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.7.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";N;s:6:\"banner\";N;s:11:\"tf_cs_image\";N;s:11:\"has_package\";b:0;}s:13:\"wordpress-seo\";a:15:{s:4:\"name\";s:9:\"Yoast SEO\";s:11:\"plugin_name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:13:\"wordpress-seo\";s:13:\"plugin_author\";s:10:\"Team Yoast\";s:17:\"plugin_author_url\";s:18:\"https://yoast.com/\";s:5:\"image\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2018/03/yoast.png\";s:9:\"image_url\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2018/03/yoast.png\";s:12:\"external_url\";s:56:\"https://downloads.wordpress.org/plugin/wordpress-seo.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2018/03/yoast.png\";s:11:\"has_package\";b:0;}s:7:\"bbpress\";a:15:{s:4:\"name\";s:7:\"bbPress\";s:11:\"plugin_name\";s:7:\"bbPress\";s:4:\"slug\";s:7:\"bbpress\";s:13:\"plugin_author\";s:21:\"The bbPress Community\";s:17:\"plugin_author_url\";s:19:\"https://bbpress.org\";s:5:\"image\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/bbpress.png\";s:9:\"image_url\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/bbpress.png\";s:12:\"external_url\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.14.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";N;s:6:\"banner\";N;s:11:\"tf_cs_image\";N;s:11:\"has_package\";b:0;}s:3:\"pwa\";a:15:{s:4:\"name\";s:3:\"PWA\";s:11:\"plugin_name\";s:3:\"PWA\";s:4:\"slug\";s:3:\"pwa\";s:13:\"plugin_author\";s:23:\"PWA Plugin Contributors\";s:17:\"plugin_author_url\";s:49:\"https://github.com/xwp/pwa-wp/graphs/contributors\";s:5:\"image\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_880_660.jpg\";s:9:\"image_url\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_880_660.jpg\";s:12:\"external_url\";s:46:\"https://downloads.wordpress.org/plugin/pwa.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_256_256.jpg\";s:6:\"banner\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_1544_500.jpg\";s:11:\"tf_cs_image\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_840_438.jpg\";s:11:\"has_package\";b:0;}}','no'),(17096,'_site_transient_timeout_theme_roots','1645745308','no'),(17097,'_site_transient_theme_roots','a:4:{s:5:\"Avada\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(17098,'_transient_timeout_avada_dashboard_data','1645747109','no'),(17099,'_transient_avada_dashboard_data','a:5:{s:7:\"on_sale\";b:0;s:5:\"price\";s:3:\"$60\";s:9:\"video_url\";s:43:\"https://www.youtube.com/watch?v=zUBJDiwWOl8\";s:13:\"avada_version\";s:5:\"7.6.1\";s:13:\"bypass_active\";b:0;}','no'),(17100,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1645743510;s:8:\"response\";a:2:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.5.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";b:0;}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/updraftplus\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:6:\"1.22.5\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/updraftplus.1.22.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-256x256.jpg?rev=1686200\";s:2:\"1x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-128x128.jpg?rev=1686200\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/updraftplus/assets/banner-1544x500.png?rev=1686200\";s:2:\"1x\";s:66:\"https://ps.w.org/updraftplus/assets/banner-772x250.png?rev=1686200\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.2\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:42:\"contact-form-cfdb7/contact-form-cfdb-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/contact-form-cfdb7\";s:4:\"slug\";s:18:\"contact-form-cfdb7\";s:6:\"plugin\";s:42:\"contact-form-cfdb7/contact-form-cfdb-7.php\";s:11:\"new_version\";s:7:\"1.2.6.3\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/contact-form-cfdb7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-cfdb7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/contact-form-cfdb7/assets/icon-256x256.png?rev=1619878\";s:2:\"1x\";s:71:\"https://ps.w.org/contact-form-cfdb7/assets/icon-128x128.png?rev=1619878\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/contact-form-cfdb7/assets/banner-772x250.png?rev=1619902\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"3.3.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.3.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=2468655\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=2468655\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:33:\"fusion-builder/fusion-builder.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:33:\"fusion-builder/fusion-builder.php\";s:4:\"slug\";s:14:\"fusion-builder\";s:6:\"plugin\";s:33:\"fusion-builder/fusion-builder.php\";s:11:\"new_version\";s:5:\"3.6.1\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:2:\"2x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";s:7:\"default\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";}}s:27:\"fusion-core/fusion-core.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:27:\"fusion-core/fusion-core.php\";s:4:\"slug\";s:11:\"fusion-core\";s:6:\"plugin\";s:27:\"fusion-core/fusion-core.php\";s:11:\"new_version\";s:5:\"5.6.1\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:2:\"2x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";s:7:\"default\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";}}}s:7:\"checked\";a:8:{s:33:\"fusion-builder/fusion-builder.php\";s:5:\"3.6.1\";s:27:\"fusion-core/fusion-core.php\";s:5:\"5.6.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.5.5\";s:42:\"contact-form-cfdb7/contact-form-cfdb-7.php\";s:7:\"1.2.6.3\";s:44:\"f12-cf7-doubleoptin/CF7DoubleOptIn.class.php\";s:6:\"v1.6.7\";s:58:\"material-design-for-contact-form-7/cf7-material-design.php\";s:5:\"2.6.4\";s:27:\"updraftplus/updraftplus.php\";s:6:\"1.22.4\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"3.3.0\";}}','no'),(17113,'_transient_timeout_global_styles_Avada','1645748057','no'),(17114,'_transient_global_styles_Avada','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 12px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 24px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-size--normal: 16px;--wp--preset--font-size--xlarge: 32px;--wp--preset--font-size--huge: 48px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(17115,'_transient_timeout_global_styles_svg_filters_Avada','1645748057','no'),(17116,'_transient_global_styles_svg_filters_Avada','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no'),(17117,'_transient_timeout_fusion_dynamic_js_filenames','1645751597','no'),(17118,'_transient_fusion_dynamic_js_filenames','a:1:{s:34:\"1249de01a8481a7b9b7fe92366879c6323\";s:32:\"459962c7f13b3555701f98fcd5cf2f14\";}','no');
+/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_postmeta`
+--
+
+DROP TABLE IF EXISTS `wp_postmeta`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_postmeta` (
+  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  PRIMARY KEY (`meta_id`),
+  KEY `post_id` (`post_id`),
+  KEY `meta_key` (`meta_key`(191))
+) ENGINE=InnoDB AUTO_INCREMENT=272 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_postmeta`
+--
+
+LOCK TABLES `wp_postmeta` WRITE;
+/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
+INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(7,1,'_fusion','a:0:{}'),(14,8,'_edit_lock','1643962874:1'),(15,8,'_oembed_175d50ab36d19837fd2fab6d0974fb59','<iframe title=\"The Mountain\" src=\"https://player.vimeo.com/video/22439234?h=e08a7aa443&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),(16,8,'_oembed_time_175d50ab36d19837fd2fab6d0974fb59','1643962863'),(17,8,'_fusion','a:0:{}'),(19,12,'_edit_lock','1645284694:1'),(20,12,'_fusion','a:17:{s:7:\"bg_full\";s:2:\"no\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:7:\"default\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:14:\"displayed_menu\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:2:\"no\";s:17:\"content_bg_repeat\";s:7:\"default\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";s:14:\"sidebar_sticky\";s:7:\"default\";}'),(21,12,'_edit_last','1'),(22,12,'avada_post_views_count','5024'),(23,12,'avada_today_post_views_count','1'),(24,12,'avada_post_views_count_today_date','25-02-2022'),(25,12,'_wp_page_template','100-width.php'),(35,50,'_wp_trash_meta_status','publish'),(36,50,'_wp_trash_meta_time','1643971934'),(41,63,'_edit_lock','1644863545:1'),(42,63,'_fusion','a:17:{s:7:\"bg_full\";s:2:\"no\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:7:\"default\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:14:\"displayed_menu\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";s:14:\"sidebar_sticky\";s:7:\"default\";}'),(43,63,'_edit_last','1'),(44,66,'_menu_item_type','post_type'),(45,66,'_menu_item_menu_item_parent','0'),(46,66,'_menu_item_object_id','12'),(47,66,'_menu_item_object','page'),(48,66,'_menu_item_target',''),(49,66,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50,66,'_menu_item_xfn',''),(51,66,'_menu_item_url',''),(52,66,'_menu_item_content',''),(53,67,'_menu_item_type','post_type'),(54,67,'_menu_item_menu_item_parent','0'),(55,67,'_menu_item_object_id','63'),(56,67,'_menu_item_object','page'),(57,67,'_menu_item_target',''),(58,67,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(59,67,'_menu_item_xfn',''),(60,67,'_menu_item_url',''),(61,67,'_menu_item_content',''),(62,65,'_wp_trash_meta_status','publish'),(63,65,'_wp_trash_meta_time','1643980713'),(64,63,'avada_post_views_count','1097'),(65,63,'avada_today_post_views_count','77'),(66,63,'avada_post_views_count_today_date','24-02-2022'),(69,74,'_wp_attached_file','2022/02/Wir-Noi-Favicon.jpg'),(70,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:322;s:6:\"height\";i:322;s:4:\"file\";s:27:\"2022/02/Wir-Noi-Favicon.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Wir-Noi-Favicon-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Wir-Noi-Favicon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:27:\"Wir-Noi-Favicon-322x272.jpg\";s:5:\"width\";i:322;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:27:\"Wir-Noi-Favicon-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:25:\"Wir-Noi-Favicon-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:27:\"Wir-Noi-Favicon-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(71,3,'_fusion','a:17:{s:7:\"bg_full\";s:2:\"no\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:7:\"default\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:14:\"displayed_menu\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";s:14:\"sidebar_sticky\";s:7:\"default\";}'),(72,3,'_edit_lock','1645107097:4'),(73,2,'_fusion','a:0:{}'),(74,2,'_wp_trash_meta_status','publish'),(75,2,'_wp_trash_meta_time','1644029011'),(76,2,'_wp_desired_post_slug','beispiel-seite'),(77,76,'_edit_lock','1645107096:4'),(78,76,'_fusion','a:17:{s:7:\"bg_full\";s:2:\"no\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:7:\"default\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:14:\"displayed_menu\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";s:14:\"sidebar_sticky\";s:7:\"default\";}'),(79,76,'_edit_last','4'),(80,76,'avada_post_views_count','222'),(81,76,'avada_today_post_views_count','15'),(82,76,'avada_post_views_count_today_date','24-02-2022'),(91,106,'_form','[md-form]\n\n[fusion_builder_row][fusion_builder_column type=\"1_2\"]\n[md-text label=\"Vorname\"]\n[text* firstname]\n[/md-text]\n[/fusion_builder_column][fusion_builder_column type=\"1_2\"]\n[md-text label=\"Nachname\"]\n[text* lastname]\n[/md-text]\n[/fusion_builder_column][/fusion_builder_row]\n\n[fusion_builder_row][fusion_builder_column type=\"1_1\"]\n[md-text label=\"Name des Unternehmens\"]\n[text* companyname]\n[/md-text]\n[/fusion_builder_column][/fusion_builder_row]\n\n[fusion_builder_row][fusion_builder_column type=\"1_2\"]\n[md-text label=\"Adresse\"]\n[text* address]\n[/md-text]\n[/fusion_builder_column][fusion_builder_column type=\"1_8\"]\n[md-text label=\"PLZ\"]\n[text* postcode]\n[/md-text]\n[/fusion_builder_column][fusion_builder_column type=\"3_8\"]\n[md-text label=\"Ort\"]\n[text* city]\n[/md-text]\n[/fusion_builder_column][/fusion_builder_row]\n\n[fusion_builder_row][fusion_builder_column type=\"1_2\"]\n[md-text label=\"Deine E-Mail-Adresse\"]\n[email* emailaddress]\n[/md-text]\n[/fusion_builder_column][fusion_builder_column type=\"1_2\"]\n[md-text label=\"Telefon (mobil)\"]\n[tel* mobilenumber]\n[/md-text]\n[/fusion_builder_column][/fusion_builder_row]\n\n[fusion_builder_row][fusion_builder_column type=\"1_2\"]\n[md-text label=\"\nWebseite des Unternehmens (URL)\n\"]\n[url websitedomain]\n[/md-text]\n[/fusion_builder_column][fusion_builder_column type=\"1_2\"]\n[md-text label=\"Mitarbeiteranzahl\"]\n[number employees]\n[/md-text]\n[/fusion_builder_column][/fusion_builder_row]\n\n[md-checkbox label=\"Bereich\" display=\"inline\"]\n[checkbox branche use_label_element \"Industrie\" \"Handwerk\" \"Dienstleister\" \"Handel\" \"Gastgewerbe\" \"Baugewerbe\" \"Landwirtschaft\" \"Anderes\"]\n[/md-checkbox]\n\n[md-file label=\"Logo\"]\n[file filelogo limit:3MB filetypes:PNG|JPG]\n[/md-file]\n\n[md-checkbox label=\"Ich stimme der Datenschutzerkärung zu.\"]\n[checkbox* privacy use_label_element \"Ja\"]\n[/md-checkbox]\n\n[md-checkbox label=\"Ich bestätige, dass ich berechtigt bin das angegebene Unternehmen für unsere Initiative zu registrieren.\"]\n[checkbox* authorised use_label_element \"Ja\"]\n[/md-checkbox]\n\n[md-submit]\n[submit \"Senden\"]\n[/md-submit]\n\n[/md-form]'),(92,106,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:27:\"[_site_title] Registrierung\";s:6:\"sender\";s:49:\"[_site_title] <wordpress@unternehmen.wir-noi.org>\";s:9:\"recipient\";s:43:\"unternehmen@wir-noi.org, software@infeos.de\";s:4:\"body\";s:291:\"Vorname: [firstname]\nNachname: [lastname]\nFirmenname: [companyname]\nAnschrift: [address]\nPLZ Ort: [postcode] [city]\nBranche: [branche]\nAnz. Mitarbeiter: [employees]\nEMail: [emailaddress]\nMobilnummer: [mobilenumber]\nWebseite: [websitedomain]\n\nDatenschutz: [privacy]\nBerechtigung: [authorised]\";s:18:\"additional_headers\";s:24:\"Reply-To: [emailaddress]\";s:11:\"attachments\";s:10:\"[filelogo]\";s:8:\"use_html\";b:1;s:13:\"exclude_blank\";b:0;}'),(93,106,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(94,106,'_messages','a:22:{s:12:\"mail_sent_ok\";s:53:\"Vielen Dank für deine Nachricht. Sie wurde gesendet.\";s:12:\"mail_sent_ng\";s:103:\"Beim Versuch, deine Nachricht zu senden, ist ein Fehler aufgetreten. Bitte versuche es später nochmal.\";s:16:\"validation_error\";s:94:\"Ein oder mehrere Felder weisen einen Fehler auf. Bitte überprüfe das und versuche es erneut.\";s:4:\"spam\";s:103:\"Beim Versuch, deine Nachricht zu senden, ist ein Fehler aufgetreten. Bitte versuche es später nochmal.\";s:12:\"accept_terms\";s:93:\"Du musst die Bedingungen und Konditionen akzeptieren, bevor du deine Nachricht senden kannst.\";s:16:\"invalid_required\";s:25:\"Dies ist ein Pflichtfeld.\";s:16:\"invalid_too_long\";s:26:\"Deine Eingabe ist zu lang.\";s:17:\"invalid_too_short\";s:26:\"Deine Eingabe ist zu kurz.\";s:13:\"upload_failed\";s:64:\"Beim Hochladen der Datei ist ein unbekannter Fehler aufgetreten.\";s:24:\"upload_file_type_invalid\";s:54:\"Es ist nicht erlaubt, Dateien dieses Typs hochzuladen.\";s:21:\"upload_file_too_large\";s:25:\"Diese Datei ist zu groß.\";s:23:\"upload_failed_php_error\";s:52:\"Beim Hochladen der Datei ist ein Fehler aufgetreten.\";s:12:\"invalid_date\";s:31:\"Das Datumsformat ist ungültig.\";s:14:\"date_too_early\";s:53:\"Das Datum liegt vor dem frühesten zulässigen Datum.\";s:13:\"date_too_late\";s:54:\"Das Datum liegt nach dem spätesten zulässigen Datum.\";s:14:\"invalid_number\";s:31:\"Das Zahlenformat ist ungültig.\";s:16:\"number_too_small\";s:50:\"Die Zahl ist niedriger als das zulässige Minimum.\";s:16:\"number_too_large\";s:49:\"Die Zahl ist größer als das zulässige Maximum.\";s:23:\"quiz_answer_not_correct\";s:36:\"Die Antwort auf das Quiz ist falsch.\";s:13:\"invalid_email\";s:45:\"Die eingegebene E-Mail-Adresse ist ungültig.\";s:11:\"invalid_url\";s:22:\"Die URL ist ungültig.\";s:11:\"invalid_tel\";s:32:\"Die Telefonnummer ist ungültig.\";}'),(95,106,'_additional_settings',''),(96,106,'_locale','de_DE'),(97,106,'_fusion','a:0:{}'),(121,106,'f12-cf7-doubleoptin','a:8:{s:6:\"enable\";s:1:\"1\";s:6:\"sender\";s:19:\"[_site_admin_email]\";s:7:\"subject\";s:36:\"Bitte schließe die Registrierung ab\";s:4:\"body\";s:488:\"Guten Tag, \r\n\r\nvielen Dank dafür, dass du Dich als Mitglied bei WIR – NOI eintragen willst.\r\nUm Deine Anmeldung zu perfekt zu machen, musst den nachfolgenden Link bestätigen:\r\n<a href=\"[doubleoptinlink]\">Anmeldung bestätigen</a>\r\n \r\nSolltest Du diese Bestätigung nicht anklicken, so wird der Eintrag mit [emailaddress] nach 4 Tagen gelöscht. Wenn Du danach feststellst, dass du trotzdem teilnehmen willst, melde Dich einfach noch mal an.\r\n\r\nHerzliche Grüße,\r\nDein WIR NOI Team!\r\n\";s:9:\"recipient\";s:14:\"[emailaddress]\";s:4:\"page\";s:2:\"12\";s:10:\"conditions\";s:7:\"disable\";s:8:\"template\";s:5:\"blank\";}'),(141,12,'_fusion_google_fonts','a:1:{s:10:\"Montserrat\";a:1:{s:8:\"variants\";a:3:{i:0;s:3:\"400\";i:1;s:3:\"700\";i:2;s:0:\"\";}}}'),(142,12,'fusion_builder_status','active'),(143,205,'_menu_item_type','custom'),(144,205,'_menu_item_menu_item_parent','0'),(145,205,'_menu_item_object_id','205'),(146,205,'_menu_item_object','custom'),(147,205,'_menu_item_target',''),(148,205,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(149,205,'_menu_item_xfn',''),(150,205,'_menu_item_url','https://unternehmen.wir-noi.org/#FÜRMENSCHEN'),(152,205,'_menu_item_fusion_megamenu','a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";s:6:\"status\";s:3:\"off\";s:5:\"width\";s:3:\"off\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(153,66,'_wp_old_date','2022-02-04'),(154,66,'_menu_item_fusion_megamenu','a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";s:6:\"status\";s:8:\"disabled\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(155,67,'_wp_old_date','2022-02-04'),(156,67,'_menu_item_fusion_megamenu','a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";s:6:\"status\";s:8:\"disabled\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(157,207,'_menu_item_type','custom'),(158,207,'_menu_item_menu_item_parent','0'),(159,207,'_menu_item_object_id','207'),(160,207,'_menu_item_object','custom'),(161,207,'_menu_item_target',''),(162,207,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(163,207,'_menu_item_xfn',''),(164,207,'_menu_item_url','https://unternehmen.wir-noi.org/#ZIELE'),(166,207,'_menu_item_fusion_megamenu','a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";s:6:\"status\";s:3:\"off\";s:5:\"width\";s:3:\"off\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(167,63,'fusion_builder_status','active'),(168,63,'_wp_page_template','default'),(169,63,'_fusion_google_fonts','a:1:{s:10:\"Montserrat\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"400\";}}}'),(184,76,'_wp_page_template','default'),(185,76,'_fusion_google_fonts','a:1:{s:10:\"Montserrat\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"400\";}}}'),(186,76,'fusion_builder_status','active'),(187,3,'_edit_last','4'),(188,3,'_fusion_google_fonts','a:1:{s:10:\"Montserrat\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"400\";}}}'),(189,3,'fusion_builder_status','active'),(190,3,'avada_post_views_count','49'),(191,3,'avada_today_post_views_count','3'),(192,3,'avada_post_views_count_today_date','24-02-2022'),(207,299,'_wp_attached_file','2022/02/Hintergrund-Haende.png'),(208,299,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:1200;s:4:\"file\";s:30:\"2022/02/Hintergrund-Haende.png\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Hintergrund-Haende-1024x410.png\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-768x307.png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"Hintergrund-Haende-1536x614.png\";s:5:\"width\";i:1536;s:6:\"height\";i:614;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"Hintergrund-Haende-2048x819.png\";s:5:\"width\";i:2048;s:6:\"height\";i:819;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:28:\"Hintergrund-Haende-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:29:\"Hintergrund-Haende-200x80.png\";s:5:\"width\";i:200;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-400\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-400x160.png\";s:5:\"width\";i:400;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-600\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-600x240.png\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-800\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-800x320.png\";s:5:\"width\";i:800;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"fusion-1200\";a:4:{s:4:\"file\";s:31:\"Hintergrund-Haende-1200x480.png\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-940x400.png\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:30:\"Hintergrund-Haende-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(209,303,'_wp_attached_file','2022/02/Hintergrund-Haende-1200-Grau.png'),(210,303,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:480;s:4:\"file\";s:40:\"2022/02/Hintergrund-Haende-1200-Grau.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Grau-1024x410.png\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-768x307.png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:38:\"Hintergrund-Haende-1200-Grau-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:39:\"Hintergrund-Haende-1200-Grau-200x80.png\";s:5:\"width\";i:200;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-400\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-400x160.png\";s:5:\"width\";i:400;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-600\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-600x240.png\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-800\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-800x320.png\";s:5:\"width\";i:800;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-940x400.png\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Grau-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(211,304,'_wp_attached_file','2022/02/Hintergrund-Haende-1200-Weiss.png'),(212,304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:480;s:4:\"file\";s:41:\"2022/02/Hintergrund-Haende-1200-Weiss.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Hintergrund-Haende-1200-Weiss-1024x410.png\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-768x307.png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:39:\"Hintergrund-Haende-1200-Weiss-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-1200-Weiss-200x80.png\";s:5:\"width\";i:200;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-400\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-400x160.png\";s:5:\"width\";i:400;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-600\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-600x240.png\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-800\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-800x320.png\";s:5:\"width\";i:800;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-940x400.png\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-1200-Weiss-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213,305,'_wp_attached_file','2022/02/Hintergrund-Haende-3000-Grau.png'),(214,305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:1200;s:4:\"file\";s:40:\"2022/02/Hintergrund-Haende-3000-Grau.png\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-3000-Grau-1024x410.png\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-768x307.png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-3000-Grau-1536x614.png\";s:5:\"width\";i:1536;s:6:\"height\";i:614;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-3000-Grau-2048x819.png\";s:5:\"width\";i:2048;s:6:\"height\";i:819;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:38:\"Hintergrund-Haende-3000-Grau-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:39:\"Hintergrund-Haende-3000-Grau-200x80.png\";s:5:\"width\";i:200;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-400\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-400x160.png\";s:5:\"width\";i:400;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-600\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-600x240.png\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-800\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-800x320.png\";s:5:\"width\";i:800;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"fusion-1200\";a:4:{s:4:\"file\";s:41:\"Hintergrund-Haende-3000-Grau-1200x480.png\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-940x400.png\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:40:\"Hintergrund-Haende-3000-Grau-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(215,312,'_wp_attached_file','2022/02/WirNoi_Logo_DE.png'),(216,312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:385;s:6:\"height\";i:350;s:4:\"file\";s:26:\"2022/02/WirNoi_Logo_DE.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"WirNoi_Logo_DE-300x273.png\";s:5:\"width\";i:300;s:6:\"height\";i:273;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"WirNoi_Logo_DE-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:26:\"WirNoi_Logo_DE-385x272.png\";s:5:\"width\";i:385;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:26:\"WirNoi_Logo_DE-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:24:\"WirNoi_Logo_DE-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:26:\"WirNoi_Logo_DE-200x182.png\";s:5:\"width\";i:200;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:26:\"WirNoi_Logo_DE-385x272.png\";s:5:\"width\";i:385;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:26:\"WirNoi_Logo_DE-385x295.png\";s:5:\"width\";i:385;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:26:\"WirNoi_Logo_DE-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:26:\"WirNoi_Logo_DE-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(217,313,'_menu_item_type','custom'),(218,313,'_menu_item_menu_item_parent','0'),(219,313,'_menu_item_object_id','313'),(220,313,'_menu_item_object','custom'),(221,313,'_menu_item_target',''),(222,313,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(223,313,'_menu_item_xfn',''),(224,313,'_menu_item_url','https://imprese.wir-noi.org/'),(226,313,'_menu_item_fusion_megamenu','a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:13:\"off_canvas_id\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";}'),(227,66,'_wp_old_date','2022-02-09'),(228,205,'_wp_old_date','2022-02-09'),(229,207,'_wp_old_date','2022-02-09'),(230,67,'_wp_old_date','2022-02-09'),(231,316,'_wp_trash_meta_status','publish'),(232,316,'_wp_trash_meta_time','1645126682'),(235,317,'_edit_lock','1645213319:1'),(236,317,'_edit_last','1'),(237,318,'_wp_attached_file','2022/02/Bernhard-Oberrauch-edit.jpg'),(238,318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:35:\"2022/02/Bernhard-Oberrauch-edit.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Bernhard-Oberrauch-edit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Bernhard-Oberrauch-edit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:35:\"Bernhard-Oberrauch-edit-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:35:\"Bernhard-Oberrauch-edit-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:33:\"Bernhard-Oberrauch-edit-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:35:\"Bernhard-Oberrauch-edit-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:35:\"Bernhard-Oberrauch-edit-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:35:\"Bernhard-Oberrauch-edit-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:35:\"Bernhard-Oberrauch-edit-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:35:\"Bernhard-Oberrauch-edit-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(239,319,'_wp_attached_file','2022/02/Brimo-Zingerle-edit.jpg'),(240,319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2022/02/Brimo-Zingerle-edit.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Brimo-Zingerle-edit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Brimo-Zingerle-edit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:31:\"Brimo-Zingerle-edit-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:31:\"Brimo-Zingerle-edit-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:29:\"Brimo-Zingerle-edit-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:31:\"Brimo-Zingerle-edit-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:31:\"Brimo-Zingerle-edit-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:31:\"Brimo-Zingerle-edit-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:31:\"Brimo-Zingerle-edit-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:31:\"Brimo-Zingerle-edit-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(241,320,'_wp_attached_file','2022/02/future-edit.png'),(242,320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2022/02/future-edit.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"future-edit-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"future-edit-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:23:\"future-edit-300x272.png\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:23:\"future-edit-300x202.png\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"future-edit-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:23:\"future-edit-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"future-edit-300x272.png\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"future-edit-300x295.png\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"future-edit-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:23:\"future-edit-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(243,321,'_wp_attached_file','2022/02/gerwies-edit.jpg'),(244,321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2022/02/gerwies-edit.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"gerwies-edit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"gerwies-edit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:24:\"gerwies-edit-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:24:\"gerwies-edit-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:22:\"gerwies-edit-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:24:\"gerwies-edit-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:24:\"gerwies-edit-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:24:\"gerwies-edit-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:24:\"gerwies-edit-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:24:\"gerwies-edit-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(245,322,'_wp_attached_file','2022/02/infeos-edit.png'),(246,322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2022/02/infeos-edit.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"infeos-edit-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"infeos-edit-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:23:\"infeos-edit-300x272.png\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:23:\"infeos-edit-300x202.png\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"infeos-edit-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:23:\"infeos-edit-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"infeos-edit-300x272.png\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"infeos-edit-300x295.png\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"infeos-edit-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:23:\"infeos-edit-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(247,323,'_wp_attached_file','2022/02/rothoblaas-edit.jpg'),(248,323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2022/02/rothoblaas-edit.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"rothoblaas-edit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"rothoblaas-edit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:27:\"rothoblaas-edit-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:27:\"rothoblaas-edit-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:25:\"rothoblaas-edit-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:27:\"rothoblaas-edit-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:27:\"rothoblaas-edit-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:27:\"rothoblaas-edit-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:27:\"rothoblaas-edit-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:27:\"rothoblaas-edit-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(249,324,'_wp_attached_file','2022/02/Studio-Zingerle-edit.jpg'),(250,324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:32:\"2022/02/Studio-Zingerle-edit.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Studio-Zingerle-edit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Studio-Zingerle-edit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:32:\"Studio-Zingerle-edit-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:32:\"Studio-Zingerle-edit-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:30:\"Studio-Zingerle-edit-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:32:\"Studio-Zingerle-edit-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:32:\"Studio-Zingerle-edit-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:32:\"Studio-Zingerle-edit-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:32:\"Studio-Zingerle-edit-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:32:\"Studio-Zingerle-edit-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(251,317,'_wp_page_template','default'),(252,317,'_fusion','a:17:{s:7:\"bg_full\";s:2:\"no\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_bg_full\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:25:\"show_first_featured_image\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:7:\"default\";s:16:\"header_bg_repeat\";s:6:\"repeat\";s:14:\"displayed_menu\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";s:13:\"pages_sidebar\";s:15:\"default_sidebar\";s:15:\"pages_sidebar_2\";s:15:\"default_sidebar\";s:14:\"sidebar_sticky\";s:7:\"default\";}'),(253,317,'_fusion_google_fonts',''),(254,317,'fusion_builder_status','active'),(255,66,'_wp_old_date','2022-02-17'),(256,205,'_wp_old_date','2022-02-17'),(257,207,'_wp_old_date','2022-02-17'),(258,67,'_wp_old_date','2022-02-17'),(259,313,'_wp_old_date','2022-02-17'),(260,317,'avada_post_views_count','19'),(261,317,'avada_today_post_views_count','19'),(262,317,'avada_post_views_count_today_date','18-02-2022'),(267,341,'_wp_attached_file','2022/02/xenja_edit.jpg'),(268,341,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2022/02/xenja_edit.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"xenja_edit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"xenja_edit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"blog-large\";a:4:{s:4:\"file\";s:22:\"xenja_edit-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-medium\";a:4:{s:4:\"file\";s:22:\"xenja_edit-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"xenja_edit-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"fusion-200\";a:4:{s:4:\"file\";s:22:\"xenja_edit-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"xenja_edit-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"xenja_edit-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"xenja_edit-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-five\";a:4:{s:4:\"file\";s:22:\"xenja_edit-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(269,1,'avada_post_views_count','4'),(270,1,'avada_today_post_views_count','2'),(271,1,'avada_post_views_count_today_date','24-02-2022');
+/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_posts`
+--
+
+DROP TABLE IF EXISTS `wp_posts`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_posts` (
+  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
+  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
+  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
+  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `menu_order` int(11) NOT NULL DEFAULT 0,
+  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
+  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `comment_count` bigint(20) NOT NULL DEFAULT 0,
+  PRIMARY KEY (`ID`),
+  KEY `post_name` (`post_name`(191)),
+  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
+  KEY `post_parent` (`post_parent`),
+  KEY `post_author` (`post_author`)
+) ENGINE=InnoDB AUTO_INCREMENT=345 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_posts`
+--
+
+LOCK TABLES `wp_posts` WRITE;
+/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
+INSERT INTO `wp_posts` VALUES (1,1,'2022-02-03 11:30:09','2022-02-03 10:30:09','<!-- wp:paragraph -->\n<p>Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!</p>\n<!-- /wp:paragraph -->','Hallo Welt!','','publish','open','open','','hallo-welt','','','2022-02-03 11:30:09','2022-02-03 10:30:09','',0,'https://unternehmen.wir-noi.org/?p=1',0,'post','',1),(2,1,'2022-02-03 11:30:09','2022-02-03 10:30:09','<!-- wp:paragraph -->\n<p>Dies ist eine Beispiel-Seite. Sie unterscheidet sich von Beiträgen, da sie stets an derselben Stelle bleibt und (bei den meisten Themes) in der Website-Navigation angezeigt wird. Die meisten starten mit einem Impressum, der Datenschutzerklärung oder einer „Über&nbsp;uns“-Seite, um sich potenziellen Besuchern der Website vorzustellen. Dort könnte zum Beispiel stehen:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hallo! Tagsüber arbeite ich als Fahrradkurier, nachts bin ich ein aufstrebender Schauspieler und dies hier ist meine Website. Ich lebe in Berlin, habe einen großen Hund namens Jack, mag Pi&#241;a Coladas, jedoch weniger (ohne Schirm) im Regen stehen gelassen zu werden.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...oder so etwas wie das hier:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Das Unternehmen XYZ wurde 1971 gegründet und versorgt die Öffentlichkeit seither mit qualitativ hochwertigen Produkten. An seinem Standort in einer kleinen Großstadt beschäftigt der Betrieb über 2.000 Menschen und unterstützt die Stadtbewohner in vielfacher Hinsicht.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Als neuer WordPress-Benutzer solltest du <a href=\"https://unternehmen.wir-noi.org/wp-admin/\">dein Dashboard</a> aufrufen, um diese Seite zu löschen und neue Seiten und Beiträge für deine Website erstellen. Viel Spaß!</p>\n<!-- /wp:paragraph -->','Beispiel-Seite','','trash','closed','open','','beispiel-seite__trashed','','','2022-02-05 03:43:31','2022-02-05 02:43:31','',0,'https://unternehmen.wir-noi.org/?page_id=2',0,'page','',0),(3,1,'2022-02-03 11:30:09','2022-02-03 10:30:09','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_color=\"\" border_style=\"solid\" border_position=\"all\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" center_content=\"no\" last=\"true\" min_height=\"\" hover_type=\"none\" link=\"\" border_sizes_top=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_sizes_right=\"\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h1>Datenschutz­erklärung</h1>\r\n<h2>1. Datenschutz auf einen Blick</h2>\r\n<h3>Allgemeine Hinweise</h3>\r\nDie folgenden Hinweise geben einen einfachen Überblick darüber, was mit Ihren personenbezogenen Daten passiert, wenn Sie diese Website besuchen. Personenbezogene Daten sind alle Daten, mit denen Sie persönlich identifiziert werden können. Ausführliche Informationen zum Thema Datenschutz entnehmen Sie unserer unter diesem Text aufgeführten Datenschutzerklärung.\r\n<h3>Datenerfassung auf dieser Website</h3>\r\n<h4>Wer ist verantwortlich für die Datenerfassung auf dieser Website?</h4>\r\nDie Datenverarbeitung auf dieser Website erfolgt durch den Websitebetreiber. Dessen Kontaktdaten können Sie dem Abschnitt „Hinweis zur Verantwortlichen Stelle“ in dieser Datenschutzerklärung entnehmen.\r\n<h4>Wie erfassen wir Ihre Daten?</h4>\r\nIhre Daten werden zum einen dadurch erhoben, dass Sie uns diese mitteilen. Hierbei kann es sich z. B. um Daten handeln, die Sie in ein Kontaktformular eingeben.\r\n\r\nAndere Daten werden automatisch oder nach Ihrer Einwilligung beim Besuch der Website durch unsere IT-Systeme erfasst. Das sind vor allem technische Daten (z. B. Internetbrowser, Betriebssystem oder Uhrzeit des Seitenaufrufs). Die Erfassung dieser Daten erfolgt automatisch, sobald Sie diese Website betreten.\r\n<h4>Wofür nutzen wir Ihre Daten?</h4>\r\nEin Teil der Daten wird erhoben, um eine fehlerfreie Bereitstellung der Website zu gewährleisten. Andere Daten können zur Analyse Ihres Nutzerverhaltens verwendet werden.\r\n<h4>Welche Rechte haben Sie bezüglich Ihrer Daten?</h4>\r\nSie haben jederzeit das Recht, unentgeltlich Auskunft über Herkunft, Empfänger und Zweck Ihrer gespeicherten personenbezogenen Daten zu erhalten. Sie haben außerdem ein Recht, die Berichtigung oder Löschung dieser Daten zu verlangen. Wenn Sie eine Einwilligung zur Datenverarbeitung erteilt haben, können Sie diese Einwilligung jederzeit für die Zukunft widerrufen. Außerdem haben Sie das Recht, unter bestimmten Umständen die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Des Weiteren steht Ihnen ein Beschwerderecht bei der zuständigen Aufsichtsbehörde zu.\r\n\r\nHierzu sowie zu weiteren Fragen zum Thema Datenschutz können Sie sich jederzeit an uns wenden.\r\n<h2>2. Hosting</h2>\r\n<h3>Externes Hosting</h3>\r\nDiese Website wird bei einem externen Dienstleister gehostet (Hoster). Die personenbezogenen Daten, die auf dieser Website erfasst werden, werden auf den Servern des Hosters gespeichert. Hierbei kann es sich v. a. um IP-Adressen, Kontaktanfragen, Meta- und Kommunikationsdaten, Vertragsdaten, Kontaktdaten, Namen, Websitezugriffe und sonstige Daten, die über eine Website generiert werden, handeln.\r\n\r\nDer Einsatz des Hosters erfolgt zum Zwecke der Vertragserfüllung gegenüber unseren potenziellen und bestehenden Kunden (Art. 6 Abs. 1 lit. b DSGVO) und im Interesse einer sicheren, schnellen und effizienten Bereitstellung unseres Online-Angebots durch einen professionellen Anbieter (Art. 6 Abs. 1 lit. f DSGVO). Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nUnser Hoster wird Ihre Daten nur insoweit verarbeiten, wie dies zur Erfüllung seiner Leistungspflichten erforderlich ist und unsere Weisungen in Bezug auf diese Daten befolgen.\r\n\r\nWir setzen folgenden Hoster ein:\r\n\r\ninfeos GmbH\r\nLuigi-Negrelli-Straße 15\r\n39100 Bozen\r\n<h4>Auftragsverarbeitung</h4>\r\nWir haben einen Vertrag über Auftragsverarbeitung (AVV) mit dem oben genannten Anbieter geschlossen. Hierbei handelt es sich um einen datenschutzrechtlich vorgeschriebenen Vertrag, der gewährleistet, dass dieser die personenbezogenen Daten unserer Websitebesucher nur nach unseren Weisungen und unter Einhaltung der DSGVO verarbeitet.\r\n<h2>3. Allgemeine Hinweise und Pflicht­informationen</h2>\r\n<h3>Datenschutz</h3>\r\nDie Betreiber dieser Seiten nehmen den Schutz Ihrer persönlichen Daten sehr ernst. Wir behandeln Ihre personenbezogenen Daten vertraulich und entsprechend den gesetzlichen Datenschutzvorschriften sowie dieser Datenschutzerklärung.\r\n\r\nWenn Sie diese Website benutzen, werden verschiedene personenbezogene Daten erhoben. Personenbezogene Daten sind Daten, mit denen Sie persönlich identifiziert werden können. Die vorliegende Datenschutzerklärung erläutert, welche Daten wir erheben und wofür wir sie nutzen. Sie erläutert auch, wie und zu welchem Zweck das geschieht.\r\n\r\nWir weisen darauf hin, dass die Datenübertragung im Internet (z. B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich.\r\n<h3>Hinweis zur verantwortlichen Stelle</h3>\r\nDie verantwortliche Stelle für die Datenverarbeitung auf dieser Website ist:\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\nE-Mail: info@wir-noi.com\r\n\r\nVerantwortliche Stelle ist die natürliche oder juristische Person, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der Verarbeitung von personenbezogenen Daten (z. B. Namen, E-Mail-Adressen o. Ä.) entscheidet.\r\n<h3>Speicherdauer</h3>\r\nSoweit innerhalb dieser Datenschutzerklärung keine speziellere Speicherdauer genannt wurde, verbleiben Ihre personenbezogenen Daten bei uns, bis der Zweck für die Datenverarbeitung entfällt. Wenn Sie ein berechtigtes Löschersuchen geltend machen oder eine Einwilligung zur Datenverarbeitung widerrufen, werden Ihre Daten gelöscht, sofern wir keine anderen rechtlich zulässigen Gründe für die Speicherung Ihrer personenbezogenen Daten haben (z. B. steuer- oder handelsrechtliche Aufbewahrungsfristen); im letztgenannten Fall erfolgt die Löschung nach Fortfall dieser Gründe.\r\n<h3>Allgemeine Hinweise zu den Rechtsgrundlagen der Datenverarbeitung auf dieser Website</h3>\r\nSofern Sie in die Datenverarbeitung eingewilligt haben, verarbeiten wir Ihre personenbezogenen Daten auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO bzw. Art. 9 Abs. 2 lit. a DSGVO, sofern besondere Datenkategorien nach Art. 9 Abs. 1 DSGVO verarbeitet werden. Im Falle einer ausdrücklichen Einwilligung in die Übertragung personenbezogener Daten in Drittstaaten erfolgt die Datenverarbeitung außerdem auf Grundlage von Art. 49 Abs. 1 lit. a DSGVO. Sofern Sie in die Speicherung von Cookies oder in den Zugriff auf Informationen in Ihr Endgerät (z. B. via Device-Fingerprinting) eingewilligt haben, erfolgt die Datenverarbeitung zusätzlich auf Grundlage von § 25 Abs. 1 TTDSG. Die Einwilligung ist jederzeit widerrufbar. Sind Ihre Daten zur Vertragserfüllung oder zur Durchführung vorvertraglicher Maßnahmen erforderlich, verarbeiten wir Ihre Daten auf Grundlage des Art. 6 Abs. 1 lit. b DSGVO. Des Weiteren verarbeiten wir Ihre Daten, sofern diese zur Erfüllung einer rechtlichen Verpflichtung erforderlich sind auf Grundlage von Art. 6 Abs. 1 lit. c DSGVO. Die Datenverarbeitung kann ferner auf Grundlage unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO erfolgen. Über die jeweils im Einzelfall einschlägigen Rechtsgrundlagen wird in den folgenden Absätzen dieser Datenschutzerklärung informiert.\r\n<h3>Widerruf Ihrer Einwilligung zur Datenverarbeitung</h3>\r\nViele Datenverarbeitungsvorgänge sind nur mit Ihrer ausdrücklichen Einwilligung möglich. Sie können eine bereits erteilte Einwilligung jederzeit widerrufen. Die Rechtmäßigkeit der bis zum Widerruf erfolgten Datenverarbeitung bleibt vom Widerruf unberührt.\r\n<h3>Widerspruchsrecht gegen die Datenerhebung in besonderen Fällen sowie gegen Direktwerbung (Art. 21 DSGVO)</h3>\r\nWENN DIE DATENVERARBEITUNG AUF GRUNDLAGE VON ART. 6 ABS. 1 LIT. E ODER F DSGVO ERFOLGT, HABEN SIE JEDERZEIT DAS RECHT, AUS GRÜNDEN, DIE SICH AUS IHRER BESONDEREN SITUATION ERGEBEN, GEGEN DIE VERARBEITUNG IHRER PERSONENBEZOGENEN DATEN WIDERSPRUCH EINZULEGEN; DIES GILT AUCH FÜR EIN AUF DIESE BESTIMMUNGEN GESTÜTZTES PROFILING. DIE JEWEILIGE RECHTSGRUNDLAGE, AUF DENEN EINE VERARBEITUNG BERUHT, ENTNEHMEN SIE DIESER DATENSCHUTZERKLÄRUNG. WENN SIE WIDERSPRUCH EINLEGEN, WERDEN WIR IHRE BETROFFENEN PERSONENBEZOGENEN DATEN NICHT MEHR VERARBEITEN, ES SEI DENN, WIR KÖNNEN ZWINGENDE SCHUTZWÜRDIGE GRÜNDE FÜR DIE VERARBEITUNG NACHWEISEN, DIE IHRE INTERESSEN, RECHTE UND FREIHEITEN ÜBERWIEGEN ODER DIE VERARBEITUNG DIENT DER GELTENDMACHUNG, AUSÜBUNG ODER VERTEIDIGUNG VON RECHTSANSPRÜCHEN (WIDERSPRUCH NACH ART. 21 ABS. 1 DSGVO).\r\n\r\nWERDEN IHRE PERSONENBEZOGENEN DATEN VERARBEITET, UM DIREKTWERBUNG ZU BETREIBEN, SO HABEN SIE DAS RECHT, JEDERZEIT WIDERSPRUCH GEGEN DIE VERARBEITUNG SIE BETREFFENDER PERSONENBEZOGENER DATEN ZUM ZWECKE DERARTIGER WERBUNG EINZULEGEN; DIES GILT AUCH FÜR DAS PROFILING, SOWEIT ES MIT SOLCHER DIREKTWERBUNG IN VERBINDUNG STEHT. WENN SIE WIDERSPRECHEN, WERDEN IHRE PERSONENBEZOGENEN DATEN ANSCHLIESSEND NICHT MEHR ZUM ZWECKE DER DIREKTWERBUNG VERWENDET (WIDERSPRUCH NACH ART. 21 ABS. 2 DSGVO).\r\n<h3>Beschwerde­recht bei der zuständigen Aufsichts­behörde</h3>\r\nIm Falle von Verstößen gegen die DSGVO steht den Betroffenen ein Beschwerderecht bei einer Aufsichtsbehörde, insbesondere in dem Mitgliedstaat ihres gewöhnlichen Aufenthalts, ihres Arbeitsplatzes oder des Orts des mutmaßlichen Verstoßes zu. Das Beschwerderecht besteht unbeschadet anderweitiger verwaltungsrechtlicher oder gerichtlicher Rechtsbehelfe.\r\n<h3>Recht auf Daten­übertrag­barkeit</h3>\r\nSie haben das Recht, Daten, die wir auf Grundlage Ihrer Einwilligung oder in Erfüllung eines Vertrags automatisiert verarbeiten, an sich oder an einen Dritten in einem gängigen, maschinenlesbaren Format aushändigen zu lassen. Sofern Sie die direkte Übertragung der Daten an einen anderen Verantwortlichen verlangen, erfolgt dies nur, soweit es technisch machbar ist.\r\n<h3>SSL- bzw. TLS-Verschlüsselung</h3>\r\nDiese Seite nutzt aus Sicherheitsgründen und zum Schutz der Übertragung vertraulicher Inhalte, wie zum Beispiel Bestellungen oder Anfragen, die Sie an uns als Seitenbetreiber senden, eine SSL- bzw. TLS-Verschlüsselung. Eine verschlüsselte Verbindung erkennen Sie daran, dass die Adresszeile des Browsers von „http://“ auf „https://“ wechselt und an dem Schloss-Symbol in Ihrer Browserzeile.\r\n\r\nWenn die SSL- bzw. TLS-Verschlüsselung aktiviert ist, können die Daten, die Sie an uns übermitteln, nicht von Dritten mitgelesen werden.\r\n<h3>Auskunft, Löschung und Berichtigung</h3>\r\nSie haben im Rahmen der geltenden gesetzlichen Bestimmungen jederzeit das Recht auf unentgeltliche Auskunft über Ihre gespeicherten personenbezogenen Daten, deren Herkunft und Empfänger und den Zweck der Datenverarbeitung und ggf. ein Recht auf Berichtigung oder Löschung dieser Daten. Hierzu sowie zu weiteren Fragen zum Thema personenbezogene Daten können Sie sich jederzeit an uns wenden.\r\n<h3>Recht auf Einschränkung der Verarbeitung</h3>\r\nSie haben das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Hierzu können Sie sich jederzeit an uns wenden. Das Recht auf Einschränkung der Verarbeitung besteht in folgenden Fällen:\r\n<ul>\r\n         <li>Wenn Sie die Richtigkeit Ihrer bei uns gespeicherten personenbezogenen Daten bestreiten, benötigen wir in der Regel Zeit, um dies zu überprüfen. Für die Dauer der Prüfung haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n       <li>Wenn die Verarbeitung Ihrer personenbezogenen Daten unrechtmäßig geschah/geschieht, können Sie statt der Löschung die Einschränkung der Datenverarbeitung verlangen.</li>\r\n  <li>Wenn wir Ihre personenbezogenen Daten nicht mehr benötigen, Sie sie jedoch zur Ausübung, Verteidigung oder Geltendmachung von Rechtsansprüchen benötigen, haben Sie das Recht, statt der Löschung die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n     <li>Wenn Sie einen Widerspruch nach Art. 21 Abs. 1 DSGVO eingelegt haben, muss eine Abwägung zwischen Ihren und unseren Interessen vorgenommen werden. Solange noch nicht feststeht, wessen Interessen überwiegen, haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n</ul>\r\nWenn Sie die Verarbeitung Ihrer personenbezogenen Daten eingeschränkt haben, dürfen diese Daten – von ihrer Speicherung abgesehen – nur mit Ihrer Einwilligung oder zur Geltendmachung, Ausübung oder Verteidigung von Rechtsansprüchen oder zum Schutz der Rechte einer anderen natürlichen oder juristischen Person oder aus Gründen eines wichtigen öffentlichen Interesses der Europäischen Union oder eines Mitgliedstaats verarbeitet werden.\r\n<h3>Widerspruch gegen Werbe-E-Mails</h3>\r\nDer Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten zur Übersendung von nicht ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit widersprochen. Die Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-E-Mails, vor.\r\n<h2>4. Datenerfassung auf dieser Website</h2>\r\n<h3>Kontaktformular</h3>\r\nWenn Sie uns per Kontaktformular Anfragen zukommen lassen, werden Ihre Angaben aus dem Anfrageformular inklusive der von Ihnen dort angegebenen Kontaktdaten zwecks Bearbeitung der Anfrage und für den Fall von Anschlussfragen bei uns gespeichert. Diese Daten geben wir nicht ohne Ihre Einwilligung weiter.\r\n\r\nDie Verarbeitung dieser Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. b DSGVO, sofern Ihre Anfrage mit der Erfüllung eines Vertrags zusammenhängt oder zur Durchführung vorvertraglicher Maßnahmen erforderlich ist. In allen übrigen Fällen beruht die Verarbeitung auf unserem berechtigten Interesse an der effektiven Bearbeitung der an uns gerichteten Anfragen (Art. 6 Abs. 1 lit. f DSGVO) oder auf Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO) sofern diese abgefragt wurde; die Einwilligung ist jederzeit widerrufbar.\r\n\r\nDie von Ihnen im Kontaktformular eingegebenen Daten verbleiben bei uns, bis Sie uns zur Löschung auffordern, Ihre Einwilligung zur Speicherung widerrufen oder der Zweck für die Datenspeicherung entfällt (z. B. nach abgeschlossener Bearbeitung Ihrer Anfrage). Zwingende gesetzliche Bestimmungen – insbesondere Aufbewahrungsfristen – bleiben unberührt.\r\n<h2>5. Newsletter</h2>\r\n<h3>Newsletter­daten</h3>\r\nWenn Sie den auf der Website angebotenen Newsletter beziehen möchten, benötigen wir von Ihnen eine E-Mail-Adresse sowie Informationen, welche uns die Überprüfung gestatten, dass Sie der Inhaber der angegebenen E-Mail-Adresse sind und mit dem Empfang des Newsletters einverstanden sind. Weitere Daten werden nicht bzw. nur auf freiwilliger Basis erhoben. Diese Daten verwenden wir ausschließlich für den Versand der angeforderten Informationen und geben diese nicht an Dritte weiter.\r\n\r\nDie Verarbeitung der in das Newsletteranmeldeformular eingegebenen Daten erfolgt ausschließlich auf Grundlage Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO). Die erteilte Einwilligung zur Speicherung der Daten, der E-Mail-Adresse sowie deren Nutzung zum Versand des Newsletters können Sie jederzeit widerrufen, etwa über den „Austragen“-Link im Newsletter. Die Rechtmäßigkeit der bereits erfolgten Datenverarbeitungsvorgänge bleibt vom Widerruf unberührt.\r\n\r\nDie von Ihnen zum Zwecke des Newsletter-Bezugs bei uns hinterlegten Daten werden von uns bis zu Ihrer Austragung aus dem Newsletter bei uns bzw. dem Newsletterdiensteanbieter gespeichert und nach der Abbestellung des Newsletters oder nach Zweckfortfall aus der Newsletterverteilerliste gelöscht. Wir behalten uns vor, E-Mail-Adressen aus unserem Newsletterverteiler nach eigenem Ermessen im Rahmen unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO zu löschen oder zu sperren.\r\n\r\nDaten, die zu anderen Zwecken bei uns gespeichert wurden, bleiben hiervon unberührt.\r\n\r\nNach Ihrer Austragung aus der Newsletterverteilerliste wird Ihre E-Mail-Adresse bei uns bzw. dem Newsletterdiensteanbieter ggf. in einer Blacklist gespeichert, sofern dies zur Verhinderung künftiger Mailings erforderlich ist. Die Daten aus der Blacklist werden nur für diesen Zweck verwendet und nicht mit anderen Daten zusammengeführt. Dies dient sowohl Ihrem Interesse als auch unserem Interesse an der Einhaltung der gesetzlichen Vorgaben beim Versand von Newslettern (berechtigtes Interesse im Sinne des Art. 6 Abs. 1 lit. f DSGVO). Die Speicherung in der Blacklist ist zeitlich nicht befristet. <strong>Sie können der Speicherung widersprechen, sofern Ihre Interessen unser berechtigtes Interesse überwiegen.</strong>\r\n<h2>6. Plugins und Tools</h2>\r\n<h3>Google reCAPTCHA</h3>\r\nWir nutzen „Google reCAPTCHA“ (im Folgenden „reCAPTCHA“) auf dieser Website. Anbieter ist die Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Irland.\r\n\r\nMit reCAPTCHA soll überprüft werden, ob die Dateneingabe auf dieser Website (z. B. in einem Kontaktformular) durch einen Menschen oder durch ein automatisiertes Programm erfolgt. Hierzu analysiert reCAPTCHA das Verhalten des Websitebesuchers anhand verschiedener Merkmale. Diese Analyse beginnt automatisch, sobald der Websitebesucher die Website betritt. Zur Analyse wertet reCAPTCHA verschiedene Informationen aus (z. B. IP-Adresse, Verweildauer des Websitebesuchers auf der Website oder vom Nutzer getätigte Mausbewegungen). Die bei der Analyse erfassten Daten werden an Google weitergeleitet.\r\n\r\nDie reCAPTCHA-Analysen laufen vollständig im Hintergrund. Websitebesucher werden nicht darauf hingewiesen, dass eine Analyse stattfindet.\r\n\r\nDie Speicherung und Analyse der Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. f DSGVO. Der Websitebetreiber hat ein berechtigtes Interesse daran, seine Webangebote vor missbräuchlicher automatisierter Ausspähung und vor SPAM zu schützen. Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nWeitere Informationen zu Google reCAPTCHA entnehmen Sie den Google-Datenschutzbestimmungen und den Google Nutzungsbedingungen unter folgenden Links: <a href=\"https://policies.google.com/privacy?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/privacy?hl=de</a> und <a href=\"https://policies.google.com/terms?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/terms?hl=de</a>.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_color=\"\" border_style=\"solid\" border_position=\"all\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" center_content=\"no\" last=\"true\" min_height=\"\" hover_type=\"none\" link=\"\" border_sizes_top=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_sizes_right=\"\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\n<strong>Datenschutz­erklärung</strong>\r\n\r\n<strong>1. Datenschutz auf einen Blick</strong>\r\n\r\n<strong>Allgemeine Hinweise</strong>\r\n\r\nDie folgenden Hinweise geben einen einfachen Überblick darüber, was mit Ihren personenbezogenen Daten passiert, wenn Sie diese Website besuchen. Personenbezogene Daten sind alle Daten, mit denen Sie persönlich identifiziert werden können. Ausführliche Informationen zum Thema Datenschutz entnehmen Sie unserer unter diesem Text aufgeführten Datenschutzerklärung.\r\n\r\n<strong>Datenerfassung auf dieser Website</strong>\r\n\r\n<strong>Wer ist verantwortlich für die Datenerfassung auf dieser Website?</strong>\r\n\r\nDie Datenverarbeitung auf dieser Website erfolgt durch den Websitebetreiber. Dessen Kontaktdaten können Sie dem Abschnitt „Hinweis zur Verantwortlichen Stelle“ in dieser Datenschutzerklärung entnehmen.\r\n\r\n<strong>Wie erfassen wir Ihre Daten?</strong>\r\n\r\nIhre Daten werden zum einen dadurch erhoben, dass Sie uns diese mitteilen. Hierbei kann es sich z. B. um Daten handeln, die Sie in ein Kontaktformular eingeben.\r\n\r\nAndere Daten werden automatisch oder nach Ihrer Einwilligung beim Besuch der Website durch unsere IT-Systeme erfasst. Das sind vor allem technische Daten (z. B. Internetbrowser, Betriebssystem oder Uhrzeit des Seitenaufrufs). Die Erfassung dieser Daten erfolgt automatisch, sobald Sie diese Website betreten.\r\n\r\n<strong>Wofür nutzen wir Ihre Daten?</strong>\r\n\r\nEin Teil der Daten wird erhoben, um eine fehlerfreie Bereitstellung der Website zu gewährleisten. Andere Daten können zur Analyse Ihres Nutzerverhaltens verwendet werden.\r\n\r\n<strong>Welche Rechte haben Sie bezüglich Ihrer Daten?</strong>\r\n\r\nSie haben jederzeit das Recht, unentgeltlich Auskunft über Herkunft, Empfänger und Zweck Ihrer gespeicherten personenbezogenen Daten zu erhalten. Sie haben außerdem ein Recht, die Berichtigung oder Löschung dieser Daten zu verlangen. Wenn Sie eine Einwilligung zur Datenverarbeitung erteilt haben, können Sie diese Einwilligung jederzeit für die Zukunft widerrufen. Außerdem haben Sie das Recht, unter bestimmten Umständen die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Des Weiteren steht Ihnen ein Beschwerderecht bei der zuständigen Aufsichtsbehörde zu.\r\n\r\nHierzu sowie zu weiteren Fragen zum Thema Datenschutz können Sie sich jederzeit an uns wenden.\r\n\r\n<strong>2. Hosting</strong>\r\n\r\n<strong>Externes Hosting</strong>\r\n\r\nDiese Website wird bei einem externen Dienstleister gehostet (Hoster). Die personenbezogenen Daten, die auf dieser Website erfasst werden, werden auf den Servern des Hosters gespeichert. Hierbei kann es sich v. a. um IP-Adressen, Kontaktanfragen, Meta- und Kommunikationsdaten, Vertragsdaten, Kontaktdaten, Namen, Websitezugriffe und sonstige Daten, die über eine Website generiert werden, handeln.\r\n\r\nDer Einsatz des Hosters erfolgt zum Zwecke der Vertragserfüllung gegenüber unseren potenziellen und bestehenden Kunden (Art. 6 Abs. 1 lit. b DSGVO) und im Interesse einer sicheren, schnellen und effizienten Bereitstellung unseres Online-Angebots durch einen professionellen Anbieter (Art. 6 Abs. 1 lit. f DSGVO). Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nUnser Hoster wird Ihre Daten nur insoweit verarbeiten, wie dies zur Erfüllung seiner Leistungspflichten erforderlich ist und unsere Weisungen in Bezug auf diese Daten befolgen.\r\n\r\nWir setzen folgenden Hoster ein:\r\n\r\ninfeos GmbH\r\nLuigi-Negrelli-Straße 15\r\n39100 Bozen\r\n\r\n<strong>Auftragsverarbeitung</strong>\r\n\r\nWir haben einen Vertrag über Auftragsverarbeitung (AVV) mit dem oben genannten Anbieter geschlossen. Hierbei handelt es sich um einen datenschutzrechtlich vorgeschriebenen Vertrag, der gewährleistet, dass dieser die personenbezogenen Daten unserer Websitebesucher nur nach unseren Weisungen und unter Einhaltung der DSGVO verarbeitet.\r\n\r\n<strong>3. Allgemeine Hinweise und Pflicht­informationen</strong>\r\n\r\n<strong>Datenschutz</strong>\r\n\r\nDie Betreiber dieser Seiten nehmen den Schutz Ihrer persönlichen Daten sehr ernst. Wir behandeln Ihre personenbezogenen Daten vertraulich und entsprechend den gesetzlichen Datenschutzvorschriften sowie dieser Datenschutzerklärung.\r\n\r\nWenn Sie diese Website benutzen, werden verschiedene personenbezogene Daten erhoben. Personenbezogene Daten sind Daten, mit denen Sie persönlich identifiziert werden können. Die vorliegende Datenschutzerklärung erläutert, welche Daten wir erheben und wofür wir sie nutzen. Sie erläutert auch, wie und zu welchem Zweck das geschieht.\r\n\r\nWir weisen darauf hin, dass die Datenübertragung im Internet (z. B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich.\r\n\r\n<strong>Hinweis zur verantwortlichen Stelle</strong>\r\n\r\nDie verantwortliche Stelle für die Datenverarbeitung auf dieser Website ist:\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\nE-Mail: info@wir-noi.com\r\n\r\nVerantwortliche Stelle ist die natürliche oder juristische Person, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der Verarbeitung von personenbezogenen Daten (z. B. Namen, E-Mail-Adressen o. Ä.) entscheidet.\r\n\r\n<strong>Speicherdauer</strong>\r\n\r\nSoweit innerhalb dieser Datenschutzerklärung keine speziellere Speicherdauer genannt wurde, verbleiben Ihre personenbezogenen Daten bei uns, bis der Zweck für die Datenverarbeitung entfällt. Wenn Sie ein berechtigtes Löschersuchen geltend machen oder eine Einwilligung zur Datenverarbeitung widerrufen, werden Ihre Daten gelöscht, sofern wir keine anderen rechtlich zulässigen Gründe für die Speicherung Ihrer personenbezogenen Daten haben (z. B. steuer- oder handelsrechtliche Aufbewahrungsfristen); im letztgenannten Fall erfolgt die Löschung nach Fortfall dieser Gründe.\r\n\r\n<strong>Allgemeine Hinweise zu den Rechtsgrundlagen der Datenverarbeitung auf dieser Website</strong>\r\n\r\nSofern Sie in die Datenverarbeitung eingewilligt haben, verarbeiten wir Ihre personenbezogenen Daten auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO bzw. Art. 9 Abs. 2 lit. a DSGVO, sofern besondere Datenkategorien nach Art. 9 Abs. 1 DSGVO verarbeitet werden. Im Falle einer ausdrücklichen Einwilligung in die Übertragung personenbezogener Daten in Drittstaaten erfolgt die Datenverarbeitung außerdem auf Grundlage von Art. 49 Abs. 1 lit. a DSGVO. Sofern Sie in die Speicherung von Cookies oder in den Zugriff auf Informationen in Ihr Endgerät (z. B. via Device-Fingerprinting) eingewilligt haben, erfolgt die Datenverarbeitung zusätzlich auf Grundlage von § 25 Abs. 1 TTDSG. Die Einwilligung ist jederzeit widerrufbar. Sind Ihre Daten zur Vertragserfüllung oder zur Durchführung vorvertraglicher Maßnahmen erforderlich, verarbeiten wir Ihre Daten auf Grundlage des Art. 6 Abs. 1 lit. b DSGVO. Des Weiteren verarbeiten wir Ihre Daten, sofern diese zur Erfüllung einer rechtlichen Verpflichtung erforderlich sind auf Grundlage von Art. 6 Abs. 1 lit. c DSGVO. Die Datenverarbeitung kann ferner auf Grundlage unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO erfolgen. Über die jeweils im Einzelfall einschlägigen Rechtsgrundlagen wird in den folgenden Absätzen dieser Datenschutzerklärung informiert.\r\n\r\n<strong>Widerruf Ihrer Einwilligung zur Datenverarbeitung</strong>\r\n\r\nViele Datenverarbeitungsvorgänge sind nur mit Ihrer ausdrücklichen Einwilligung möglich. Sie können eine bereits erteilte Einwilligung jederzeit widerrufen. Die Rechtmäßigkeit der bis zum Widerruf erfolgten Datenverarbeitung bleibt vom Widerruf unberührt.\r\n\r\n<strong>Widerspruchsrecht gegen die Datenerhebung in besonderen Fällen sowie gegen Direktwerbung (Art. 21 DSGVO)</strong>\r\n\r\nWENN DIE DATENVERARBEITUNG AUF GRUNDLAGE VON ART. 6 ABS. 1 LIT. E ODER F DSGVO ERFOLGT, HABEN SIE JEDERZEIT DAS RECHT, AUS GRÜNDEN, DIE SICH AUS IHRER BESONDEREN SITUATION ERGEBEN, GEGEN DIE VERARBEITUNG IHRER PERSONENBEZOGENEN DATEN WIDERSPRUCH EINZULEGEN; DIES GILT AUCH FÜR EIN AUF DIESE BESTIMMUNGEN GESTÜTZTES PROFILING. DIE JEWEILIGE RECHTSGRUNDLAGE, AUF DENEN EINE VERARBEITUNG BERUHT, ENTNEHMEN SIE DIESER DATENSCHUTZERKLÄRUNG. WENN SIE WIDERSPRUCH EINLEGEN, WERDEN WIR IHRE BETROFFENEN PERSONENBEZOGENEN DATEN NICHT MEHR VERARBEITEN, ES SEI DENN, WIR KÖNNEN ZWINGENDE SCHUTZWÜRDIGE GRÜNDE FÜR DIE VERARBEITUNG NACHWEISEN, DIE IHRE INTERESSEN, RECHTE UND FREIHEITEN ÜBERWIEGEN ODER DIE VERARBEITUNG DIENT DER GELTENDMACHUNG, AUSÜBUNG ODER VERTEIDIGUNG VON RECHTSANSPRÜCHEN (WIDERSPRUCH NACH ART. 21 ABS. 1 DSGVO).\r\n\r\nWERDEN IHRE PERSONENBEZOGENEN DATEN VERARBEITET, UM DIREKTWERBUNG ZU BETREIBEN, SO HABEN SIE DAS RECHT, JEDERZEIT WIDERSPRUCH GEGEN DIE VERARBEITUNG SIE BETREFFENDER PERSONENBEZOGENER DATEN ZUM ZWECKE DERARTIGER WERBUNG EINZULEGEN; DIES GILT AUCH FÜR DAS PROFILING, SOWEIT ES MIT SOLCHER DIREKTWERBUNG IN VERBINDUNG STEHT. WENN SIE WIDERSPRECHEN, WERDEN IHRE PERSONENBEZOGENEN DATEN ANSCHLIESSEND NICHT MEHR ZUM ZWECKE DER DIREKTWERBUNG VERWENDET (WIDERSPRUCH NACH ART. 21 ABS. 2 DSGVO).\r\n\r\n<strong>Beschwerde­recht bei der zuständigen Aufsichts­behörde</strong>\r\n\r\nIm Falle von Verstößen gegen die DSGVO steht den Betroffenen ein Beschwerderecht bei einer Aufsichtsbehörde, insbesondere in dem Mitgliedstaat ihres gewöhnlichen Aufenthalts, ihres Arbeitsplatzes oder des Orts des mutmaßlichen Verstoßes zu. Das Beschwerderecht besteht unbeschadet anderweitiger verwaltungsrechtlicher oder gerichtlicher Rechtsbehelfe.\r\n\r\n<strong>Recht auf Daten­übertrag­barkeit</strong>\r\n\r\nSie haben das Recht, Daten, die wir auf Grundlage Ihrer Einwilligung oder in Erfüllung eines Vertrags automatisiert verarbeiten, an sich oder an einen Dritten in einem gängigen, maschinenlesbaren Format aushändigen zu lassen. Sofern Sie die direkte Übertragung der Daten an einen anderen Verantwortlichen verlangen, erfolgt dies nur, soweit es technisch machbar ist.\r\n\r\n<strong>SSL- bzw. TLS-Verschlüsselung</strong>\r\n\r\nDiese Seite nutzt aus Sicherheitsgründen und zum Schutz der Übertragung vertraulicher Inhalte, wie zum Beispiel Bestellungen oder Anfragen, die Sie an uns als Seitenbetreiber senden, eine SSL- bzw. TLS-Verschlüsselung. Eine verschlüsselte Verbindung erkennen Sie daran, dass die Adresszeile des Browsers von „http://“ auf „https://“ wechselt und an dem Schloss-Symbol in Ihrer Browserzeile.\r\n\r\nWenn die SSL- bzw. TLS-Verschlüsselung aktiviert ist, können die Daten, die Sie an uns übermitteln, nicht von Dritten mitgelesen werden.\r\n\r\n<strong>Auskunft, Löschung und Berichtigung</strong>\r\n\r\nSie haben im Rahmen der geltenden gesetzlichen Bestimmungen jederzeit das Recht auf unentgeltliche Auskunft über Ihre gespeicherten personenbezogenen Daten, deren Herkunft und Empfänger und den Zweck der Datenverarbeitung und ggf. ein Recht auf Berichtigung oder Löschung dieser Daten. Hierzu sowie zu weiteren Fragen zum Thema personenbezogene Daten können Sie sich jederzeit an uns wenden.\r\n\r\n<strong>Recht auf Einschränkung der Verarbeitung</strong>\r\n\r\nSie haben das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Hierzu können Sie sich jederzeit an uns wenden. Das Recht auf Einschränkung der Verarbeitung besteht in folgenden Fällen:\r\n<ul>\r\n        <li>Wenn Sie die Richtigkeit Ihrer bei uns gespeicherten personenbezogenen Daten bestreiten, benötigen wir in der Regel Zeit, um dies zu überprüfen. Für die Dauer der Prüfung haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n       <li>Wenn die Verarbeitung Ihrer personenbezogenen Daten unrechtmäßig geschah/geschieht, können Sie statt der Löschung die Einschränkung der Datenverarbeitung verlangen.</li>\r\n  <li>Wenn wir Ihre personenbezogenen Daten nicht mehr benötigen, Sie sie jedoch zur Ausübung, Verteidigung oder Geltendmachung von Rechtsansprüchen benötigen, haben Sie das Recht, statt der Löschung die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n     <li>Wenn Sie einen Widerspruch nach Art. 21 Abs. 1 DSGVO eingelegt haben, muss eine Abwägung zwischen Ihren und unseren Interessen vorgenommen werden. Solange noch nicht feststeht, wessen Interessen überwiegen, haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n</ul>\r\nWenn Sie die Verarbeitung Ihrer personenbezogenen Daten eingeschränkt haben, dürfen diese Daten – von ihrer Speicherung abgesehen – nur mit Ihrer Einwilligung oder zur Geltendmachung, Ausübung oder Verteidigung von Rechtsansprüchen oder zum Schutz der Rechte einer anderen natürlichen oder juristischen Person oder aus Gründen eines wichtigen öffentlichen Interesses der Europäischen Union oder eines Mitgliedstaats verarbeitet werden.\r\n\r\n<strong>Widerspruch gegen Werbe-E-Mails</strong>\r\n\r\nDer Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten zur Übersendung von nicht ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit widersprochen. Die Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-E-Mails, vor.\r\n\r\n<strong>4. Datenerfassung auf dieser Website</strong>\r\n\r\n<strong>Kontaktformular</strong>\r\n\r\nWenn Sie uns per Kontaktformular Anfragen zukommen lassen, werden Ihre Angaben aus dem Anfrageformular inklusive der von Ihnen dort angegebenen Kontaktdaten zwecks Bearbeitung der Anfrage und für den Fall von Anschlussfragen bei uns gespeichert. Diese Daten geben wir nicht ohne Ihre Einwilligung weiter.\r\n\r\nDie Verarbeitung dieser Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. b DSGVO, sofern Ihre Anfrage mit der Erfüllung eines Vertrags zusammenhängt oder zur Durchführung vorvertraglicher Maßnahmen erforderlich ist. In allen übrigen Fällen beruht die Verarbeitung auf unserem berechtigten Interesse an der effektiven Bearbeitung der an uns gerichteten Anfragen (Art. 6 Abs. 1 lit. f DSGVO) oder auf Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO) sofern diese abgefragt wurde; die Einwilligung ist jederzeit widerrufbar.\r\n\r\nDie von Ihnen im Kontaktformular eingegebenen Daten verbleiben bei uns, bis Sie uns zur Löschung auffordern, Ihre Einwilligung zur Speicherung widerrufen oder der Zweck für die Datenspeicherung entfällt (z. B. nach abgeschlossener Bearbeitung Ihrer Anfrage). Zwingende gesetzliche Bestimmungen – insbesondere Aufbewahrungsfristen – bleiben unberührt.\r\n\r\n<strong>5. Newsletter</strong>\r\n\r\n<strong>Newsletter­daten</strong>\r\n\r\nWenn Sie den auf der Website angebotenen Newsletter beziehen möchten, benötigen wir von Ihnen eine E-Mail-Adresse sowie Informationen, welche uns die Überprüfung gestatten, dass Sie der Inhaber der angegebenen E-Mail-Adresse sind und mit dem Empfang des Newsletters einverstanden sind. Weitere Daten werden nicht bzw. nur auf freiwilliger Basis erhoben. Diese Daten verwenden wir ausschließlich für den Versand der angeforderten Informationen und geben diese nicht an Dritte weiter.\r\n\r\nDie Verarbeitung der in das Newsletteranmeldeformular eingegebenen Daten erfolgt ausschließlich auf Grundlage Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO). Die erteilte Einwilligung zur Speicherung der Daten, der E-Mail-Adresse sowie deren Nutzung zum Versand des Newsletters können Sie jederzeit widerrufen, etwa über den „Austragen“-Link im Newsletter. Die Rechtmäßigkeit der bereits erfolgten Datenverarbeitungsvorgänge bleibt vom Widerruf unberührt.\r\n\r\nDie von Ihnen zum Zwecke des Newsletter-Bezugs bei uns hinterlegten Daten werden von uns bis zu Ihrer Austragung aus dem Newsletter bei uns bzw. dem Newsletterdiensteanbieter gespeichert und nach der Abbestellung des Newsletters oder nach Zweckfortfall aus der Newsletterverteilerliste gelöscht. Wir behalten uns vor, E-Mail-Adressen aus unserem Newsletterverteiler nach eigenem Ermessen im Rahmen unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO zu löschen oder zu sperren.\r\n\r\nDaten, die zu anderen Zwecken bei uns gespeichert wurden, bleiben hiervon unberührt.\r\n\r\nNach Ihrer Austragung aus der Newsletterverteilerliste wird Ihre E-Mail-Adresse bei uns bzw. dem Newsletterdiensteanbieter ggf. in einer Blacklist gespeichert, sofern dies zur Verhinderung künftiger Mailings erforderlich ist. Die Daten aus der Blacklist werden nur für diesen Zweck verwendet und nicht mit anderen Daten zusammengeführt. Dies dient sowohl Ihrem Interesse als auch unserem Interesse an der Einhaltung der gesetzlichen Vorgaben beim Versand von Newslettern (berechtigtes Interesse im Sinne des Art. 6 Abs. 1 lit. f DSGVO). Die Speicherung in der Blacklist ist zeitlich nicht befristet. <strong>Sie können der Speicherung widersprechen, sofern Ihre Interessen unser berechtigtes Interesse überwiegen.</strong>\r\n\r\n<strong>6. Plugins und Tools</strong>\r\n\r\n<strong>Google reCAPTCHA</strong>\r\n\r\nWir nutzen „Google reCAPTCHA“ (im Folgenden „reCAPTCHA“) auf dieser Website. Anbieter ist die Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Irland.\r\n\r\nMit reCAPTCHA soll überprüft werden, ob die Dateneingabe auf dieser Website (z. B. in einem Kontaktformular) durch einen Menschen oder durch ein automatisiertes Programm erfolgt. Hierzu analysiert reCAPTCHA das Verhalten des Websitebesuchers anhand verschiedener Merkmale. Diese Analyse beginnt automatisch, sobald der Websitebesucher die Website betritt. Zur Analyse wertet reCAPTCHA verschiedene Informationen aus (z. B. IP-Adresse, Verweildauer des Websitebesuchers auf der Website oder vom Nutzer getätigte Mausbewegungen). Die bei der Analyse erfassten Daten werden an Google weitergeleitet.\r\n\r\nDie reCAPTCHA-Analysen laufen vollständig im Hintergrund. Websitebesucher werden nicht darauf hingewiesen, dass eine Analyse stattfindet.\r\n\r\nDie Speicherung und Analyse der Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. f DSGVO. Der Websitebetreiber hat ein berechtigtes Interesse daran, seine Webangebote vor missbräuchlicher automatisierter Ausspähung und vor SPAM zu schützen. Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nWeitere Informationen zu Google reCAPTCHA entnehmen Sie den Google-Datenschutzbestimmungen und den Google Nutzungsbedingungen unter folgenden Links: <a href=\"https://policies.google.com/privacy?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/privacy?hl=de</a> und <a href=\"https://policies.google.com/terms?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/terms?hl=de</a>.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Datenschutzerklärung','','publish','closed','open','','datenschutzerklaerung','','','2022-02-10 15:51:45','2022-02-10 14:51:45','',0,'https://unternehmen.wir-noi.org/?page_id=3',0,'page','',0),(8,1,'2022-02-04 09:21:02','0000-00-00 00:00:00','<!-- wp:cover {\"url\":\"https://cldup.com/Fz-ASbo2s3.jpg\",\"dimRatio\":50,\"isDark\":false,\"className\":\"alignwide\"} -->\n<div class=\"wp-block-cover is-light alignwide\"><span aria-hidden=\"true\" class=\"wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background\" src=\"https://cldup.com/Fz-ASbo2s3.jpg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">Von Bergen und Druckmaschinen</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph -->\n<p>Das Ziel des neuen Editors ist es, das Hinzufügen von umfangreichen Inhalten in WordPress einfach und angenehm zu gestalten. Dieser ganze Beitrag besteht aus einzelnen <em>Inhalts-Elementen</em>, die LEGO-Steinen ähneln, die man bewegen und mit denen man interagieren kann. Lass den Mauszeiger kreisen und du wirst feststellen, dass um die verschiedenen Blöcke herum Umrisse und Pfeile aufleuchten. Drücke die Pfeile, um Blöcke schnell neu zu positionieren, ohne befürchten zu müssen, beim Kopieren und Einfügen etwas zu verlieren.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Was du gerade liest, befindet sich in einem <strong>Text-Block</strong>, der einfachste Block von allen. Der Text-Block kann frei im Beitrag positioniert werden...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p class=\"has-text-align-right\">... wie dieser, der rechtsbündig ist.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Überschriften sind selbst separate Blöcke, was bei der Gliederung und Organisation deiner Inhalte hilft.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 id=\"ein-bild-sagt-mehr-als-tausend-worte\">Ein Bild sagt mehr als tausend Worte</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Der Umgang mit Bildern und Medien mit der größten Sorgfalt ist ein primärer Schwerpunkt des neuen Editors. Hoffentlich empfindest du das Hinzufügen von Bildunterschriften oder das Anzeigen deiner Bilder in voller Breite viel einfacher und solider als bisher.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"center\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://cldup.com/cXyG__fTLN.jpg\" alt=\"Schöne Landschaft\"/><figcaption>Falls dein Theme es unterstützt, siehst du das „Weite-Breite“-Icon in der Bild-Werkzeugleiste. Probiere es aus.</figcaption></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Versuche, die Bildunterschrift auszuwählen, zu bewegen oder zu bearbeiten. Jetzt musst du nicht mehr aufpassen, versehentlich ein Bild oder anderen Text auszuwählen und so die Präsentation zu ruinieren.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 id=\"das-inserter-werkzeug\">Das <em>Inserter</em>-Werkzeug</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stell dir vor, alles, was WordPress kann, steht dir direkt auf der Oberfläche zur Verfügung. Keine Notwendigkeit mehr, sich an HTML-Tags, Klassen oder komplizierte Shortcode-Syntax zu erinnern. Das ist der Grundgedanke hinter dem Inserter – der <code>(+)</code>-Button, den du um den Editor herum siehst – mit dem du alle verfügbaren Inhalts-Blöcke suchen und in deinen Beitrag einfügen kannst. Plugins und Themes sind in der Lage, ihre eigenen Blöcke zu registrieren, was alle Arten von Möglichkeiten für eine umfangreiche Bearbeitung und Veröffentlichung eröffnet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Versuch es, du entdeckst womöglich Dinge, die WordPress bereits in deine Beiträge einfügen kann, von denen du nichts wusstest. Hier ist eine kurze Liste, was du aktuell dort findest:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Text und Überschriften</li><li>Bilder und Videos</li><li>Galerien</li><li>Einbettungen, wie YouTube, Tweets, oder andere WordPress-Beiträge.</li><li>Layout-Blöcke, wie Buttons, Hero-Bilder, Trennzeichen etc.</li><li>Und natürlich <em>Listen</em> wie diese :)</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2 id=\"visuelle-bearbeitung\">Visuelle Bearbeitung</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ein großer Vorteil von Blöcken ist es, dass du sie direkt vor Ort bearbeiten und deinen Inhalt verändern kannst. Anstelle von Feldern, um beispielsweise die Quelle eines Zitats oder den Text eines Buttons zu bearbeiten, kannst du den Inhalt direkt ändern. Versuche, das folgende Zitat zu bearbeiten:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Der Editor bietet ein neue Erfahrung beim Erstellen von Seiten und Beiträgen, die das mühelose Schreiben umfangreicher Inhalte ermöglicht. Er hat „Blöcke“, um das Einbetten von Inhalten, die bisher über Shortcodes, individuelles HTML oder „mysteriöse Praktiken“ eingebettet wurden, zu vereinfachen.</p><cite>Matt Mullenweg, 2017</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Die Quellenangabe des Zitats ist ein separates Textfeld, ähnlich wie bei den Bildunterschriften. Somit bleibt die Struktur des Zitats geschützt, auch wenn du die Quelle auswählst, veränderst oder entfernst. Sie kann jederzeit wieder hinzugefügt werden.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Blöcke können alles sein, was du brauchst. Zum Beispiel willst du vielleicht ein dezentes Zitat als Teil deiner Textkomposition hinzufügen oder du bevorzugst einen gigantischen Stil. All diese Optionen sind im Inserter verfügbar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"columns\":2,\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-2 is-cropped\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cldup.com/n0g6ME5VKC.jpg\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cldup.com/ZjESfxPI3R.jpg\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cldup.com/EKNF8xD2UM.jpg\" alt=\"\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Du kannst die Anzahl der Spalten in deinen Galerien ändern, indem du einen Schieberegler im Block-Inspektor in der Seitenleiste bewegst.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 id=\"multimedial\">Multimedial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Wenn du die neuen <strong>Weite-Breite</strong> und <strong>Volle-Breite</strong>-Ausrichtungen mit Galerien kombinierst, kannst du sehr schnell ein umfangreiches, multimediales Layout erstellen:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"full\"} -->\n<figure class=\"wp-block-image alignfull\"><img src=\"https://cldup.com/8lhI-gKnI2.jpg\" alt=\"Barrierefreiheit ist wichtig – vergiss das alt-Attribut des Bildes nicht\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Klar, ein Bild in ganzer Breite kann ganz schön groß sein. Aber manchmal ist das Bild es wert.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"linkTo\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cldup.com/_rSwtEeDGD.jpg\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://cldup.com/L-cC3qX2DN.jpg\" alt=\"\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p>Hier oben ist eine Galerie mit nur zwei Bildern. Das ist ein einfache Möglichkeit, optisch ansprechende Layouts zu erstellen, ohne dafür floats zu verwenden. Du kannst die Galerie mithilfe des Block-Umschalters auch wieder zurück in einzelne Bilder konvertieren.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Jeder Block kann sich an diese Ausrichtungen anpassen. Der Einbetten-Block hat sie auch und ist standardmäßig responsiv:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:embed {\"url\":\"https://vimeo.com/22439234\",\"type\":\"video\",\"providerNameSlug\":\"vimeo\",\"responsive\":true,\"align\":\"wide\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed alignwide is-type-video is-provider-vimeo wp-block-embed-vimeo wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://vimeo.com/22439234\n</div></figure>\n<!-- /wp:embed -->\n\n<!-- wp:paragraph -->\n<p>Du kannst jede Art von Block erstellen, die du magst, statisch oder dynamisch, dekorativ oder schlicht. Hier ist ein Block mit einem hervorgehobenen Zitat:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:pullquote -->\n<figure class=\"wp-block-pullquote\"><blockquote><p>Code ist Poesie</p><cite>Die WordPress-Community</cite></blockquote></figure>\n<!-- /wp:pullquote -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">\n    <em>\n          Falls du mehr darüber erfahren willst, wie zusätzliche Blöcke erstellt werden oder falls du bei dem Projekt mithelfen möchtest, komm rüber zum <a href=\"https://github.com/WordPress/gutenberg\">GitHub repository</a>.   </em>\n</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:button {\"align\":\"center\"} -->\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://github.com/WordPress/gutenberg\">Hilf, Gutenberg zu gestalten</a></div>\n<!-- /wp:button -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Danke für das Testen von Gutenberg!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">?</p>\n<!-- /wp:paragraph -->','Willkommen beim Gutenberg-Editor','','draft','open','open','','','','','2022-02-04 09:21:02','2022-02-04 08:21:02','',0,'https://unternehmen.wir-noi.org/?p=8',0,'post','',0),(9,1,'2022-02-04 09:19:51','2022-02-04 08:19:51','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-avada','','','2022-02-04 09:19:51','2022-02-04 08:19:51','',0,'https://unternehmen.wir-noi.org/2022/02/04/wp-global-styles-avada/',0,'wp_global_styles','',0),(12,4,'2022-02-04 09:33:49','2022-02-04 08:33:49','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende-1200-Weiss.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"60px\" margin_bottom=\"60px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\"><strong>GESICHT</strong>\r\n<strong>ZEIGEN</strong></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die <strong>Menschen</strong>\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button link=\"https://unternehmen.wir-noi.org/registrieren/\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTRIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button link=\"https://unternehmen.wir-noi.org/registrieren/\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTRIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\nDie Südtiroler und Trentiner Unternehmen sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Freiberufler oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art. Somit tragen wir maßgeblich zur Wertschöpfung und Versorgung bei.\r\n\r\nUnsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir als Unternehmer sehr genau. Durch die Motivation und Arbeitsleistung all dieser unterschiedlichen Menschen haben wir gemeinsam das aufgebaut, was Trentino-Südtirol heute ist!\r\n\r\nZum ersten Mal seit langer Zeit, wird es scheinbar gesellschaftlich wieder akzeptiert, daß bestimmte Menschen aus der Gesellschaft ausgeschlossen werden. Das weckt Spannungen und Ängste. Und dazu haben wir eine klare Haltung.\r\n\r\nMit dieser Plattform zeigen wir unser Gesicht und setzen ein klares Zeichen: ein Zeichen für soziales Miteinander, für Zusammenhalt, für die Einhaltung unserer Grundrechte und für die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Wir sind für einen freien Gestaltungsspielraum – als Menschen und als Unternehmen.\r\nAls vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt eigenständig zu denken und Entscheidungen selbst zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die den Menschen achten und unsere Betriebe in ihrer Kreativität und Leistungsfähigkeit fördern. Und wir brauchen Entscheidungen zum Wohle aller.\r\n\r\nWir stehen ein:\r\n<ul>\r\n  <li>für einen menschlichen Umgang miteinander</li>\r\n         <li>für Vertrauen und die Achtung unterschiedlicher Standpunkte</li>\r\n       <li>für einen solidarischen Dialog zwischen allen Menschen unseres Landes</li>\r\n     <li>für Sozialpartnerschaft und ein friedliches Zusammenleben</li>\r\n</ul>\r\nWillst du dich dieser Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\">registriere</a> dich jetzt online!\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"50px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','publish','closed','closed','','wirnoi','','','2022-02-19 16:30:18','2022-02-19 15:30:18','',0,'https://unternehmen.wir-noi.org/?page_id=12',0,'page','',0),(13,4,'2022-02-04 09:33:49','2022-02-04 08:33:49','','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 09:33:49','2022-02-04 08:33:49','',12,'https://unternehmen.wir-noi.org/?p=13',0,'revision','',0),(16,4,'2022-02-04 09:39:06','2022-02-04 08:39:06','<!-- wp:image -->\n<figure class=\"wp-block-image\"><img alt=\"\"/></figure>\n<!-- /wp:image -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 09:39:06','2022-02-04 08:39:06','',12,'https://unternehmen.wir-noi.org/?p=16',0,'revision','',0),(18,4,'2022-02-04 09:43:29','2022-02-04 08:43:29','<!-- wp:media-text {\"mediaId\":673,\"mediaLink\":\"https://wordpress.org/patterns/pear-half/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#fffdea\"}}} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>Die Bäume, die langsam wachsen, tragen die besten Früchte.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Molière</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 09:43:29','2022-02-04 08:43:29','',12,'https://unternehmen.wir-noi.org/?p=18',0,'revision','',0),(20,4,'2022-02-04 09:48:24','2022-02-04 08:48:24','<!-- wp:image {\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image is-style-default\"><img alt=\"\"/></figure>\n<!-- /wp:image -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 09:48:24','2022-02-04 08:48:24','',12,'https://unternehmen.wir-noi.org/?p=20',0,'revision','',0),(23,4,'2022-02-04 09:54:30','2022-02-04 08:54:30','<!-- wp:image {\"id\":22,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-style-default\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Logo-WIR-NOI-1.png\" alt=\"\" class=\"wp-image-22\"/></figure>\n<!-- /wp:image -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 09:54:30','2022-02-04 08:54:30','',12,'https://unternehmen.wir-noi.org/?p=23',0,'revision','',0),(28,4,'2022-02-04 10:14:17','2022-02-04 09:14:17','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"id\":26,\"width\":563,\"height\":246,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"563\" height=\"246\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">PROJEKT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":588,\"height\":257,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"588\" height=\"257\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 10:14:17','2022-02-04 09:14:17','',12,'https://unternehmen.wir-noi.org/?p=28',0,'revision','',0),(29,4,'2022-02-04 10:15:06','2022-02-04 09:15:06','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"id\":26,\"width\":660,\"height\":288,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"660\" height=\"288\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">PROJEKT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":725,\"height\":317,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"725\" height=\"317\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 10:15:06','2022-02-04 09:15:06','',12,'https://unternehmen.wir-noi.org/?p=29',0,'revision','',0),(30,4,'2022-02-04 10:15:41','2022-02-04 09:15:41','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"id\":26,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"750\" height=\"350\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">PROJEKT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"750\" height=\"350\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 10:15:41','2022-02-04 09:15:41','',12,'https://unternehmen.wir-noi.org/?p=30',0,'revision','',0),(33,4,'2022-02-04 10:40:48','2022-02-04 09:40:48','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"id\":26,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"750\" height=\"350\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">PROJEKT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"750\" height=\"350\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 10:40:48','2022-02-04 09:40:48','',12,'https://unternehmen.wir-noi.org/?p=33',0,'revision','',0),(35,4,'2022-02-04 11:18:16','2022-02-04 10:18:16','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"id\":26,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"750\" height=\"350\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">PROJEKT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"750\" height=\"350\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN </a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 11:18:16','2022-02-04 10:18:16','',12,'https://unternehmen.wir-noi.org/?p=35',0,'revision','',0),(37,4,'2022-02-04 11:26:57','2022-02-04 10:26:57','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"left\",\"id\":26,\"width\":1096,\"height\":478,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-image is-style-default\"><figure class=\"alignleft size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"1096\" height=\"478\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">PROJEKT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":1096,\"height\":478,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"1096\" height=\"478\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN </a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 11:26:57','2022-02-04 10:26:57','',12,'https://unternehmen.wir-noi.org/?p=37',0,'revision','',0),(39,4,'2022-02-04 11:27:37','2022-02-04 10:27:37','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"left\",\"id\":26,\"width\":1110,\"height\":484,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-image is-style-default\"><figure class=\"alignleft size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"1110\" height=\"484\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">PROJEKT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":1110,\"height\":484,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"1110\" height=\"484\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN </a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 11:27:37','2022-02-04 10:27:37','',12,'https://unternehmen.wir-noi.org/?p=39',0,'revision','',0),(41,4,'2022-02-04 11:29:09','2022-02-04 10:29:09','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"left\",\"id\":26,\"width\":800,\"height\":414,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-image is-style-default\"><figure class=\"alignleft size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"800\" height=\"414\"/><figcaption><strong>PROJEKT</strong></figcaption></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":800,\"height\":414,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"800\" height=\"414\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN </a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 11:29:09','2022-02-04 10:29:09','',12,'https://unternehmen.wir-noi.org/?p=41',0,'revision','',0),(43,4,'2022-02-04 11:30:35','2022-02-04 10:30:35','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"left\",\"id\":26,\"width\":656,\"height\":343,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-image is-style-default\"><figure class=\"alignleft size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"656\" height=\"343\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":656,\"height\":343,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"656\" height=\"343\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN </a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 11:30:35','2022-02-04 10:30:35','',12,'https://unternehmen.wir-noi.org/?p=43',0,'revision','',0),(45,4,'2022-02-04 11:31:25','2022-02-04 10:31:25','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":920,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:920px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"left\",\"id\":26,\"width\":656,\"height\":343,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-image is-style-default\"><figure class=\"alignleft size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"656\" height=\"343\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":656,\"height\":343,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"656\" height=\"343\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN </a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 11:31:25','2022-02-04 10:31:25','',12,'https://unternehmen.wir-noi.org/?p=45',0,'revision','',0),(47,4,'2022-02-04 11:33:24','2022-02-04 10:33:24','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"left\",\"id\":26,\"width\":1110,\"height\":484,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-image is-style-default\"><figure class=\"alignleft size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"1110\" height=\"484\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">PROJEKT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":1110,\"height\":483,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"1110\" height=\"483\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN </a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 11:33:24','2022-02-04 10:33:24','',12,'https://unternehmen.wir-noi.org/?p=47',0,'revision','',0),(48,4,'2022-02-04 11:33:42','2022-02-04 10:33:42','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"id\":26,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"750\" height=\"350\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">PROJEKT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"750\" height=\"350\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN </a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 11:33:42','2022-02-04 10:33:42','',12,'https://unternehmen.wir-noi.org/?p=48',0,'revision','',0),(49,4,'2022-02-04 11:34:03','2022-02-04 10:34:03','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"id\":26,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"750\" height=\"350\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">PROJEKT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"750\" height=\"350\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN </a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 11:34:03','2022-02-04 10:34:03','',12,'https://unternehmen.wir-noi.org/?p=49',0,'revision','',0),(50,4,'2022-02-04 11:52:13','2022-02-04 10:52:13','{\n    \"show_on_front\": {\n        \"value\": \"page\",\n        \"type\": \"option\",\n        \"user_id\": 4,\n        \"date_modified_gmt\": \"2022-02-04 10:52:13\"\n    },\n    \"page_on_front\": {\n        \"value\": \"12\",\n        \"type\": \"option\",\n        \"user_id\": 4,\n        \"date_modified_gmt\": \"2022-02-04 10:52:13\"\n    },\n    \"page_for_posts\": {\n        \"value\": \"0\",\n        \"type\": \"option\",\n        \"user_id\": 4,\n        \"date_modified_gmt\": \"2022-02-04 10:52:13\"\n    }\n}','','','trash','closed','closed','','b40ffa23-ed69-4420-b76d-ea1ab656fb42','','','2022-02-04 11:52:13','2022-02-04 10:52:13','',0,'https://unternehmen.wir-noi.org/2022/02/04/b40ffa23-ed69-4420-b76d-ea1ab656fb42/',0,'customize_changeset','',0),(52,4,'2022-02-04 12:52:18','2022-02-04 11:52:18','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"id\":26,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"750\" height=\"350\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">PROJEKT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"750\" height=\"350\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_______________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_______________________________________________</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 12:52:18','2022-02-04 11:52:18','',12,'https://unternehmen.wir-noi.org/?p=52',0,'revision','',0),(53,4,'2022-02-04 13:29:57','2022-02-04 12:29:57','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"id\":26,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"750\" height=\"350\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">PROJEKT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"750\" height=\"350\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">___________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">___________________________________________________________________________</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 13:29:57','2022-02-04 12:29:57','',12,'https://unternehmen.wir-noi.org/?p=53',0,'revision','',0),(55,4,'2022-02-04 13:30:31','2022-02-04 12:30:31','<!-- wp:cover {\"customOverlayColor\":\"#b5b5b5\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#b5b5b5\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"id\":26,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_1-1024x446.png\" alt=\"\" class=\"wp-image-26\" width=\"750\" height=\"350\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">PROJEKT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":27,\"width\":750,\"height\":350,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Haende_Rot_2-1024x446.png\" alt=\"\" class=\"wp-image-27\" width=\"750\" height=\"350\"/></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_________________________________________________________________________________</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 13:30:31','2022-02-04 12:30:31','',12,'https://unternehmen.wir-noi.org/?p=55',0,'revision','',0),(58,4,'2022-02-04 13:46:21','2022-02-04 12:46:21','<!-- wp:image {\"align\":\"full\",\"id\":57,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignfull size-large\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" alt=\"\" class=\"wp-image-57\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">STATEMENT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">WERTE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">MASSE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">ZIEL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">VEREIN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">VORSTUFE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-left has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">Statement von Südtiroler und Trentiner Unternehmern, die offen<br>ihr Gesicht zeigen. Werte: Grundrechte, Freiheit, Selbstbestim\ 2mung und Menschlichkeit. Masse zusammenbekommen und der<br>Öffentlichkeit zeigen, dass viele Unternehmen im Widerstand sind.<br>Ziel: 1000 Südtiroler/Trentiner Unternehmer, welche sich auf der<br>Plattform registrieren, ihr Gesicht zeigen. Verein bekannt machen<br>und durch die Initiative Mitglieder sammeln. Vorstufe zu einem<br>neuen Wirtschaftsverband.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">Icia cum iunt re et maximus, voles sunt.<br>Pos accum doluptiusda delibus maior accaepe ribus, optae serehent.<br>Luptist plitam fugiatur sin res excestiur ratium aribus magnam expe\ 2lib erferfe ruptas volupit estintemquas pa dendae. Faccuptas aut aut<br>am quis demperes modigen ihiciaspicat pro estincit, optatiuri quia<br>quia quia simagnam es repero verit, voloremolo tempore strumquiae<br>nonem. Turemporum cum nos maximolo et landit, ut velluptate do\ 2les corum ressit ent utet audi omnihit eaque plic</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 13:46:21','2022-02-04 12:46:21','',12,'https://unternehmen.wir-noi.org/?p=58',0,'revision','',0),(59,4,'2022-02-04 13:47:13','2022-02-04 12:47:13','<!-- wp:image {\"align\":\"full\",\"id\":57,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignfull size-large\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" alt=\"\" class=\"wp-image-57\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">STATEMENT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">WERTE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">MASSE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">ZIEL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">VEREIN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">VORSTUFE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-left has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Statement von Südtiroler und Trentiner Unternehmern, die offen<br>ihr Gesicht zeigen. Werte: Grundrechte, Freiheit, Selbstbestim\ 2mung und Menschlichkeit. Masse zusammenbekommen und der<br>Öffentlichkeit zeigen, dass viele Unternehmen im Widerstand sind.<br>Ziel: 1000 Südtiroler/Trentiner Unternehmer, welche sich auf der<br>Plattform registrieren, ihr Gesicht zeigen. Verein bekannt machen<br>und durch die Initiative Mitglieder sammeln. Vorstufe zu einem<br>neuen Wirtschaftsverband.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Icia cum iunt re et maximus, voles sunt.<br>Pos accum doluptiusda delibus maior accaepe ribus, optae serehent.<br>Luptist plitam fugiatur sin res excestiur ratium aribus magnam expe\ 2lib erferfe ruptas volupit estintemquas pa dendae. Faccuptas aut aut<br>am quis demperes modigen ihiciaspicat pro estincit, optatiuri quia<br>quia quia simagnam es repero verit, voloremolo tempore strumquiae<br>nonem. Turemporum cum nos maximolo et landit, ut velluptate do\ 2les corum ressit ent utet audi omnihit eaque plic</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 13:47:13','2022-02-04 12:47:13','',12,'https://unternehmen.wir-noi.org/?p=59',0,'revision','',0),(61,4,'2022-02-04 13:59:14','2022-02-04 12:59:14','<!-- wp:image {\"align\":\"full\",\"id\":57,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignfull size-large\"><img src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" alt=\"\" class=\"wp-image-57\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">STATEMENT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">WERTE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">MASSE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">ZIEL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">VEREIN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">VORSTUFE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-left has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 13:59:14','2022-02-04 12:59:14','',12,'https://unternehmen.wir-noi.org/?p=61',0,'revision','',0),(63,4,'2022-02-04 14:17:22','2022-02-04 13:17:22','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#c4c4c4\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"42px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color4)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Jetzt registrieren</p>\r\n[/fusion_text][contact-form-7 id=\"106\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#c4c4c4\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color4)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Jetzt registieren</p>\r\n[/fusion_text][contact-form-7 id=\"106\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','REGISTRIEREN','','publish','closed','closed','','registrieren','','','2022-02-14 19:31:16','2022-02-14 18:31:16','',0,'https://unternehmen.wir-noi.org/?page_id=63',0,'page','',0),(64,4,'2022-02-04 14:17:22','2022-02-04 13:17:22','','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-04 14:17:22','2022-02-04 13:17:22','',63,'https://unternehmen.wir-noi.org/?p=64',0,'revision','',0),(65,4,'2022-02-04 14:18:32','2022-02-04 13:18:32','{\n    \"Avada::nav_menu_locations[main_navigation]\": {\n        \"value\": -2204012008747965400,\n        \"type\": \"theme_mod\",\n        \"user_id\": 4,\n        \"date_modified_gmt\": \"2022-02-04 13:18:32\"\n    },\n    \"Avada::nav_menu_locations[top_navigation]\": {\n        \"value\": -2204012008747965400,\n        \"type\": \"theme_mod\",\n        \"user_id\": 4,\n        \"date_modified_gmt\": \"2022-02-04 13:18:32\"\n    },\n    \"Avada::nav_menu_locations[mobile_navigation]\": {\n        \"value\": -2204012008747965400,\n        \"type\": \"theme_mod\",\n        \"user_id\": 4,\n        \"date_modified_gmt\": \"2022-02-04 13:18:32\"\n    },\n    \"Avada::nav_menu_locations[sticky_navigation]\": {\n        \"value\": -2204012008747965400,\n        \"type\": \"theme_mod\",\n        \"user_id\": 4,\n        \"date_modified_gmt\": \"2022-02-04 13:18:32\"\n    },\n    \"nav_menu[-2204012008747965400]\": {\n        \"value\": {\n            \"name\": \"Header Menu\",\n            \"description\": \"\",\n            \"parent\": 0,\n            \"auto_add\": false\n        },\n        \"type\": \"nav_menu\",\n        \"user_id\": 4,\n        \"date_modified_gmt\": \"2022-02-04 13:18:32\"\n    },\n    \"nav_menu_item[-263863365379212300]\": {\n        \"value\": {\n            \"object_id\": 12,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 1,\n            \"type\": \"post_type\",\n            \"title\": \"WirNoi\",\n            \"url\": \"https://unternehmen.wir-noi.org/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"WirNoi\",\n            \"nav_menu_term_id\": -2204012008747965400,\n            \"_invalid\": false,\n            \"type_label\": \"Startseite\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 4,\n        \"date_modified_gmt\": \"2022-02-04 13:18:32\"\n    },\n    \"nav_menu_item[-2319221220334094300]\": {\n        \"value\": {\n            \"object_id\": 63,\n            \"object\": \"page\",\n            \"menu_item_parent\": 0,\n            \"position\": 2,\n            \"type\": \"post_type\",\n            \"title\": \"REGISTRIEREN\",\n            \"url\": \"https://unternehmen.wir-noi.org/registrieren/\",\n            \"target\": \"\",\n            \"attr_title\": \"\",\n            \"description\": \"\",\n            \"classes\": \"\",\n            \"xfn\": \"\",\n            \"status\": \"publish\",\n            \"original_title\": \"REGISTRIEREN\",\n            \"nav_menu_term_id\": -2204012008747965400,\n            \"_invalid\": false,\n            \"type_label\": \"Seite\"\n        },\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 4,\n        \"date_modified_gmt\": \"2022-02-04 13:18:32\"\n    }\n}','','','trash','closed','closed','','37cfa91b-2e27-4f0e-86eb-b127ce95cf74','','','2022-02-04 14:18:32','2022-02-04 13:18:32','',0,'https://unternehmen.wir-noi.org/2022/02/04/37cfa91b-2e27-4f0e-86eb-b127ce95cf74/',0,'customize_changeset','',0),(66,4,'2022-02-18 13:06:42','2022-02-04 13:18:32',' ','','','publish','closed','closed','','66','','','2022-02-18 13:06:42','2022-02-18 12:06:42','',0,'https://unternehmen.wir-noi.org/2022/02/04/66/',1,'nav_menu_item','',0),(67,4,'2022-02-18 13:06:42','2022-02-04 13:18:33',' ','','','publish','closed','closed','','67','','','2022-02-18 13:06:42','2022-02-18 12:06:42','',0,'https://unternehmen.wir-noi.org/2022/02/04/67/',4,'nav_menu_item','',0),(70,4,'2022-02-04 14:35:24','2022-02-04 13:35:24','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":50,\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>GESICHT<br>ZEIGEN</strong></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">STATEMENT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">WERTE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">MASSE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">ZIEL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">VEREIN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">VORSTUFE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-left has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 14:35:24','2022-02-04 13:35:24','',12,'https://unternehmen.wir-noi.org/?p=70',0,'revision','',0),(71,4,'2022-02-04 14:37:01','2022-02-04 13:37:01','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>GESICHT<br>ZEIGEN</strong></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">STATEMENT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">WERTE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">MASSE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">ZIEL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">VEREIN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">VORSTUFE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-left has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 14:37:01','2022-02-04 13:37:01','',12,'https://unternehmen.wir-noi.org/?p=71',0,'revision','',0),(72,4,'2022-02-04 16:03:34','2022-02-04 15:03:34','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"black\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-black-color has-text-color has-huge-font-size\">GESICHT<br>ZEIGEN</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">STATEMENT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">WERTE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">MASSE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">ZIEL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">VEREIN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">VORSTUFE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-left has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 16:03:34','2022-02-04 15:03:34','',12,'https://unternehmen.wir-noi.org/?p=72',0,'revision','',0),(74,1,'2022-02-05 03:37:10','2022-02-05 02:37:10','','Wir-Noi-Favicon','','inherit','open','closed','','wir-noi-favicon','','','2022-02-05 03:37:10','2022-02-05 02:37:10','',0,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Wir-Noi-Favicon.jpg',0,'attachment','image/jpeg',0),(75,1,'2022-02-05 03:43:31','2022-02-05 02:43:31','<!-- wp:paragraph -->\n<p>Dies ist eine Beispiel-Seite. Sie unterscheidet sich von Beiträgen, da sie stets an derselben Stelle bleibt und (bei den meisten Themes) in der Website-Navigation angezeigt wird. Die meisten starten mit einem Impressum, der Datenschutzerklärung oder einer „Über&nbsp;uns“-Seite, um sich potenziellen Besuchern der Website vorzustellen. Dort könnte zum Beispiel stehen:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hallo! Tagsüber arbeite ich als Fahrradkurier, nachts bin ich ein aufstrebender Schauspieler und dies hier ist meine Website. Ich lebe in Berlin, habe einen großen Hund namens Jack, mag Pi&#241;a Coladas, jedoch weniger (ohne Schirm) im Regen stehen gelassen zu werden.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...oder so etwas wie das hier:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Das Unternehmen XYZ wurde 1971 gegründet und versorgt die Öffentlichkeit seither mit qualitativ hochwertigen Produkten. An seinem Standort in einer kleinen Großstadt beschäftigt der Betrieb über 2.000 Menschen und unterstützt die Stadtbewohner in vielfacher Hinsicht.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Als neuer WordPress-Benutzer solltest du <a href=\"https://unternehmen.wir-noi.org/wp-admin/\">dein Dashboard</a> aufrufen, um diese Seite zu löschen und neue Seiten und Beiträge für deine Website erstellen. Viel Spaß!</p>\n<!-- /wp:paragraph -->','Beispiel-Seite','','inherit','closed','closed','','2-revision-v1','','','2022-02-05 03:43:31','2022-02-05 02:43:31','',2,'https://unternehmen.wir-noi.org/?p=75',0,'revision','',0),(76,1,'2022-02-05 03:46:29','2022-02-05 02:46:29','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h1>Impressum</h1>\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n<h2>Kontakt</h2>\r\nE-Mail: info@wir-noi.com\r\n<h2>Redaktionell verantwortlich</h2>\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n<h2>EU-Streitschlichtung</h2>\r\nDie Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit: <a href=\"https://ec.europa.eu/consumers/odr/\" target=\"_blank\" rel=\"noopener noreferrer\">https://ec.europa.eu/consumers/odr/</a>.\r\nUnsere E-Mail-Adresse finden Sie oben im Impressum.\r\n<h2>Verbraucher­streit­beilegung/Universal­schlichtungs­stelle</h2>\r\nWir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\n<strong>Impressum</strong>\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\n<strong>Kontakt</strong>\r\n\r\nE-Mail: info@wir-noi.com\r\n\r\n<strong>Redaktionell verantwortlich</strong>\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\n<strong>EU-Streitschlichtung</strong>\r\n\r\nDie Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit: <a href=\"https://ec.europa.eu/consumers/odr/\" target=\"_blank\" rel=\"noopener noreferrer\">https://ec.europa.eu/consumers/odr/</a>.\r\nUnsere E-Mail-Adresse finden Sie oben im Impressum.\r\n\r\n<strong>Verbraucher­streit­beilegung/ Universal­schlichtungs­stelle</strong>\r\n\r\nWir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Impressum','','publish','closed','closed','','impressum','','','2022-02-10 15:52:04','2022-02-10 14:52:04','',0,'https://unternehmen.wir-noi.org/?page_id=76',0,'page','',0),(77,1,'2022-02-05 03:46:29','2022-02-05 02:46:29','','Impressum','','inherit','closed','closed','','76-revision-v1','','','2022-02-05 03:46:29','2022-02-05 02:46:29','',76,'https://unternehmen.wir-noi.org/?p=77',0,'revision','',0),(79,1,'2022-02-05 03:55:02','2022-02-05 02:55:02','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">STATEMENT</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">WERTE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">MASSE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">ZIEL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\">VEREIN</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\">/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\">VORSTUFE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-left has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-05 03:55:02','2022-02-05 02:55:02','',12,'https://unternehmen.wir-noi.org/?p=79',0,'revision','',0),(81,1,'2022-02-05 03:58:23','2022-02-05 02:58:23','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-05 03:58:23','2022-02-05 02:58:23','',12,'https://unternehmen.wir-noi.org/?p=81',0,'revision','',0),(85,4,'2022-02-07 08:51:10','2022-02-07 07:51:10','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 08:51:10','2022-02-07 07:51:10','',12,'https://unternehmen.wir-noi.org/?p=85',0,'revision','',0),(86,4,'2022-02-07 08:52:44','2022-02-07 07:52:44','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_______________________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_______________________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 08:52:44','2022-02-07 07:52:44','',12,'https://unternehmen.wir-noi.org/?p=86',0,'revision','',0),(87,4,'2022-02-07 08:53:01','2022-02-07 07:53:01','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_____________________________________________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\">_____________________________________________________________________________________________________________________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 08:53:01','2022-02-07 07:53:01','',12,'https://unternehmen.wir-noi.org/?p=87',0,'revision','',0),(88,4,'2022-02-07 08:53:29','2022-02-07 07:53:29','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\"><strong>________________________________________________________________________________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\"><strong>___________________________________________________________________________________________________<strong>___________________</strong>__________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 08:53:29','2022-02-07 07:53:29','',12,'https://unternehmen.wir-noi.org/?p=88',0,'revision','',0),(89,4,'2022-02-07 08:54:02','2022-02-07 07:54:02','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 08:54:02','2022-02-07 07:54:02','',12,'https://unternehmen.wir-noi.org/?p=89',0,'revision','',0),(91,4,'2022-02-07 09:24:54','2022-02-07 08:24:54','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 09:24:54','2022-02-07 08:24:54','',12,'https://unternehmen.wir-noi.org/?p=91',0,'revision','',0),(93,4,'2022-02-07 10:09:54','2022-02-07 09:09:54','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:64px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 10:09:54','2022-02-07 09:09:54','',12,'https://unternehmen.wir-noi.org/?p=93',0,'revision','',0),(94,4,'2022-02-07 10:12:11','2022-02-07 09:12:11','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.5},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:64px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 10:12:11','2022-02-07 09:12:11','',12,'https://unternehmen.wir-noi.org/?p=94',0,'revision','',0),(95,4,'2022-02-07 10:12:38','2022-02-07 09:12:38','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.5},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-huge-font-size\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"backgroundColor\":\"vivid-red\",\"style\":{\"border\":{\"radius\":\"10px\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-vivid-red-background-color has-background\" style=\"border-radius:10px\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"overlayColor\":\"vivid-red\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-vivid-red-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"60px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:60px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-xlarge-font-size\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 10:12:38','2022-02-07 09:12:38','',12,'https://unternehmen.wir-noi.org/?p=95',0,'revision','',0),(97,4,'2022-02-07 10:28:28','2022-02-07 09:28:28','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.5},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"vivid-red\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-vivid-red-color has-text-color has-large-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"60px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:60px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-text-color has-normal-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-text-color has-normal-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-text-color has-normal-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-text-color has-normal-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-text-color has-normal-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-text-color has-normal-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-right has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"textColor\":\"vivid-red\",\"fontSize\":\"normal\"} -->\n<p class=\"has-vivid-red-color has-text-color has-normal-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 10:28:28','2022-02-07 09:28:28','',12,'https://unternehmen.wir-noi.org/?p=97',0,'revision','',0),(99,4,'2022-02-07 10:29:40','2022-02-07 09:29:40','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.5},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"60px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:60px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-text-color has-normal-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-text-color has-normal-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-text-color has-normal-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-text-color has-normal-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-text-color has-normal-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-text-color has-normal-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 10:29:40','2022-02-07 09:29:40','',12,'https://unternehmen.wir-noi.org/?p=99',0,'revision','',0),(100,4,'2022-02-07 10:38:03','2022-02-07 09:38:03','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.5},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"60px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:60px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 10:38:03','2022-02-07 09:38:03','',12,'https://unternehmen.wir-noi.org/?p=100',0,'revision','',0),(101,4,'2022-02-07 10:39:11','2022-02-07 09:39:11','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.5},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"60px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:60px\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 10:39:11','2022-02-07 09:39:11','',12,'https://unternehmen.wir-noi.org/?p=101',0,'revision','',0),(102,4,'2022-02-07 10:39:36','2022-02-07 09:39:36','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.5},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 10:39:36','2022-02-07 09:39:36','',12,'https://unternehmen.wir-noi.org/?p=102',0,'revision','',0),(106,4,'2022-02-07 12:48:32','2022-02-07 11:48:32','[md-form]\r\n\r\n[fusion_builder_row][fusion_builder_column type=\"1_2\"]\r\n[md-text label=\"Vorname\"]\r\n[text* firstname]\r\n[/md-text]\r\n[/fusion_builder_column][fusion_builder_column type=\"1_2\"]\r\n[md-text label=\"Nachname\"]\r\n[text* lastname]\r\n[/md-text]\r\n[/fusion_builder_column][/fusion_builder_row]\r\n\r\n[fusion_builder_row][fusion_builder_column type=\"1_1\"]\r\n[md-text label=\"Name des Unternehmens\"]\r\n[text* companyname]\r\n[/md-text]\r\n[/fusion_builder_column][/fusion_builder_row]\r\n\r\n[fusion_builder_row][fusion_builder_column type=\"1_2\"]\r\n[md-text label=\"Adresse\"]\r\n[text* address]\r\n[/md-text]\r\n[/fusion_builder_column][fusion_builder_column type=\"1_8\"]\r\n[md-text label=\"PLZ\"]\r\n[text* postcode]\r\n[/md-text]\r\n[/fusion_builder_column][fusion_builder_column type=\"3_8\"]\r\n[md-text label=\"Ort\"]\r\n[text* city]\r\n[/md-text]\r\n[/fusion_builder_column][/fusion_builder_row]\r\n\r\n[fusion_builder_row][fusion_builder_column type=\"1_2\"]\r\n[md-text label=\"Deine E-Mail-Adresse\"]\r\n[email* emailaddress]\r\n[/md-text]\r\n[/fusion_builder_column][fusion_builder_column type=\"1_2\"]\r\n[md-text label=\"Telefon (mobil)\"]\r\n[tel* mobilenumber]\r\n[/md-text]\r\n[/fusion_builder_column][/fusion_builder_row]\r\n\r\n[fusion_builder_row][fusion_builder_column type=\"1_2\"]\r\n[md-text label=\"\r\nWebseite des Unternehmens (URL)\r\n\"]\r\n[url websitedomain]\r\n[/md-text]\r\n[/fusion_builder_column][fusion_builder_column type=\"1_2\"]\r\n[md-text label=\"Mitarbeiteranzahl\"]\r\n[number employees]\r\n[/md-text]\r\n[/fusion_builder_column][/fusion_builder_row]\r\n\r\n[md-checkbox label=\"Bereich\" display=\"inline\"]\r\n[checkbox branche use_label_element \"Industrie\" \"Handwerk\" \"Dienstleister\" \"Handel\" \"Gastgewerbe\" \"Baugewerbe\" \"Landwirtschaft\" \"Anderes\"]\r\n[/md-checkbox]\r\n\r\n[md-file label=\"Logo\"]\r\n[file filelogo limit:3MB filetypes:PNG|JPG]\r\n[/md-file]\r\n\r\n[md-checkbox label=\"Ich stimme der Datenschutzerkärung zu.\"]\r\n[checkbox* privacy use_label_element \"Ja\"]\r\n[/md-checkbox]\r\n\r\n[md-checkbox label=\"Ich bestätige, dass ich berechtigt bin das angegebene Unternehmen für unsere Initiative zu registrieren.\"]\r\n[checkbox* authorised use_label_element \"Ja\"]\r\n[/md-checkbox]\r\n\r\n[md-submit]\r\n[submit \"Senden\"]\r\n[/md-submit]\r\n\r\n[/md-form]\n1\n[_site_title] Registrierung\n[_site_title] <wordpress@unternehmen.wir-noi.org>\nunternehmen@wir-noi.org, software@infeos.de\nVorname: [firstname]\r\nNachname: [lastname]\r\nFirmenname: [companyname]\r\nAnschrift: [address]\r\nPLZ Ort: [postcode] [city]\r\nBranche: [branche]\r\nAnz. Mitarbeiter: [employees]\r\nEMail: [emailaddress]\r\nMobilnummer: [mobilenumber]\r\nWebseite: [websitedomain]\r\n\r\nDatenschutz: [privacy]\r\nBerechtigung: [authorised]\nReply-To: [emailaddress]\n[filelogo]\n1\n\n\n\n\n\n\n\n\n\n\nVielen Dank für deine Nachricht. Sie wurde gesendet.\nBeim Versuch, deine Nachricht zu senden, ist ein Fehler aufgetreten. Bitte versuche es später nochmal.\nEin oder mehrere Felder weisen einen Fehler auf. Bitte überprüfe das und versuche es erneut.\nBeim Versuch, deine Nachricht zu senden, ist ein Fehler aufgetreten. Bitte versuche es später nochmal.\nDu musst die Bedingungen und Konditionen akzeptieren, bevor du deine Nachricht senden kannst.\nDies ist ein Pflichtfeld.\nDeine Eingabe ist zu lang.\nDeine Eingabe ist zu kurz.\nBeim Hochladen der Datei ist ein unbekannter Fehler aufgetreten.\nEs ist nicht erlaubt, Dateien dieses Typs hochzuladen.\nDiese Datei ist zu groß.\nBeim Hochladen der Datei ist ein Fehler aufgetreten.\nDas Datumsformat ist ungültig.\nDas Datum liegt vor dem frühesten zulässigen Datum.\nDas Datum liegt nach dem spätesten zulässigen Datum.\nDas Zahlenformat ist ungültig.\nDie Zahl ist niedriger als das zulässige Minimum.\nDie Zahl ist größer als das zulässige Maximum.\nDie Antwort auf das Quiz ist falsch.\nDie eingegebene E-Mail-Adresse ist ungültig.\nDie URL ist ungültig.\nDie Telefonnummer ist ungültig.','WirNoi Formular','','publish','closed','closed','','wirnoi-formular','','','2022-02-18 16:19:03','2022-02-18 15:19:03','',0,'https://unternehmen.wir-noi.org/?post_type=wpcf7_contact_form&#038;p=106',0,'wpcf7_contact_form','',0),(107,4,'2022-02-07 12:48:52','2022-02-07 11:48:52','<!-- wp:contact-form-7/contact-form-selector {\"id\":106,\"title\":\"WirNoi Formular\"} -->\n<div class=\"wp-block-contact-form-7-contact-form-selector\">[contact-form-7 id=\"106\" title=\"WirNoi Formular\"]</div>\n<!-- /wp:contact-form-7/contact-form-selector -->','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-07 12:48:52','2022-02-07 11:48:52','',63,'https://unternehmen.wir-noi.org/?p=107',0,'revision','',0),(108,4,'2022-02-07 13:08:22','2022-02-07 12:08:22','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.5},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"normal\"} -->\n<p class=\"has-text-align-center has-normal-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>______</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 13:08:22','2022-02-07 12:08:22','',12,'https://unternehmen.wir-noi.org/?p=108',0,'revision','',0),(110,4,'2022-02-07 13:25:13','2022-02-07 12:25:13','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.5},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-right has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p class=\"has-text-align-right\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"80px\"},\"color\":{\"text\":\"#e6294c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:80px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-left has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-right has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p class=\"has-text-align-right\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"80px\"},\"color\":{\"text\":\"#e6294c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:80px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-right has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\"} -->\n<p class=\"has-text-align-right\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"80px\"},\"color\":{\"text\":\"#e6294c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:80px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 13:25:13','2022-02-07 12:25:13','',12,'https://unternehmen.wir-noi.org/?p=110',0,'revision','',0),(112,4,'2022-02-07 13:27:36','2022-02-07 12:27:36','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.5},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-xlarge-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-xlarge-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-xlarge-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-xlarge-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-xlarge-font-size\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<div class=\"wp-block-button has-custom-font-size has-xlarge-font-size\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-right has-large-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-left has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-right has-large-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-right has-large-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\"},\"color\":{\"text\":\"#e6294c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"large\"} -->\n<p class=\"has-large-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 13:27:36','2022-02-07 12:27:36','',12,'https://unternehmen.wir-noi.org/?p=112',0,'revision','',0),(113,4,'2022-02-07 13:28:29','2022-02-07 12:28:29','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.5},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-xlarge-font-size\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-xlarge-font-size\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-xlarge-font-size\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-xlarge-font-size\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-xlarge-font-size\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<div class=\"wp-block-button has-custom-font-size has-xlarge-font-size\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-right has-large-font-size\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-left has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\"},\"color\":{\"text\":\"#e6294c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 13:28:29','2022-02-07 12:28:29','',12,'https://unternehmen.wir-noi.org/?p=113',0,'revision','',0),(115,4,'2022-02-07 13:29:08','2022-02-07 12:29:08','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.5},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<div class=\"wp-block-button has-custom-font-size has-xlarge-font-size\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-left has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\"},\"color\":{\"text\":\"#e6294c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 13:29:08','2022-02-07 12:29:08','',12,'https://unternehmen.wir-noi.org/?p=115',0,'revision','',0),(117,4,'2022-02-07 15:37:46','2022-02-07 14:37:46','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\",\"id\":57,\"dimRatio\":0,\"focalPoint\":{\"x\":0.5,\"y\":\"0.50\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-57\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grauHand1-1024x577.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<div class=\"wp-block-button has-custom-font-size has-xlarge-font-size\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-left has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\"},\"color\":{\"text\":\"#e6294c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 15:37:46','2022-02-07 14:37:46','',12,'https://unternehmen.wir-noi.org/?p=117',0,'revision','',0),(119,4,'2022-02-07 15:48:53','2022-02-07 14:48:53','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":0.5,\"y\":\"0.50\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<div class=\"wp-block-button has-custom-font-size has-xlarge-font-size\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-left has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\"},\"color\":{\"text\":\"#e6294c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 15:48:53','2022-02-07 14:48:53','',12,'https://unternehmen.wir-noi.org/?p=119',0,'revision','',0),(120,4,'2022-02-07 15:49:28','2022-02-07 14:49:28','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<div class=\"wp-block-button has-custom-font-size has-xlarge-font-size\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-left has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\"},\"color\":{\"text\":\"#e6294c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 15:49:28','2022-02-07 14:49:28','',12,'https://unternehmen.wir-noi.org/?p=120',0,'revision','',0),(122,4,'2022-02-07 15:57:30','2022-02-07 14:57:30','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><br><strong>_____________</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong><br>_____________</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<div class=\"wp-block-button has-custom-font-size has-xlarge-font-size\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-left has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\"},\"color\":{\"text\":\"#e6294c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 15:57:30','2022-02-07 14:57:30','',12,'https://unternehmen.wir-noi.org/?p=122',0,'revision','',0),(123,4,'2022-02-07 15:57:39','2022-02-07 14:57:39','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><br><strong>___________</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong><br>___________</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<div class=\"wp-block-button has-custom-font-size has-xlarge-font-size\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-left has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\"},\"color\":{\"text\":\"#e6294c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 15:57:39','2022-02-07 14:57:39','',12,'https://unternehmen.wir-noi.org/?p=123',0,'revision','',0),(125,4,'2022-02-07 16:00:54','2022-02-07 15:00:54','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns {\"verticalAlignment\":null} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><br><strong>___________</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong><br>___________</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"10px\"},\"color\":{\"background\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<div class=\"wp-block-button has-custom-font-size has-xlarge-font-size\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:10px;background-color:#e6294c\">REGISTRIEREN&nbsp;</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":737,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:737px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>STATEMENT</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-left has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>WERTE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>MASSE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"100px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>ZIEL</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-right has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VEREIN</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\"},\"color\":{\"text\":\"#e6294c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:100px\">/</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>VORSTUFE</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p style=\"font-size:20px\">Ehendent fuga. Nam est et<br>quo exceatinust velecep nim<br>dolupta que necte esequi</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 16:00:54','2022-02-07 15:00:54','',12,'https://unternehmen.wir-noi.org/?p=125',0,'revision','',0),(127,4,'2022-02-07 16:41:42','2022-02-07 15:41:42','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns {\"verticalAlignment\":null} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-text-color has-huge-font-size\" style=\"color:#e6294c\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"typography\":{\"fontSize\":\"20px\"},\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":737,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:737px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 16:41:42','2022-02-07 15:41:42','',12,'https://unternehmen.wir-noi.org/?p=127',0,'revision','',0),(128,4,'2022-02-07 16:42:10','2022-02-07 15:42:10','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns {\"verticalAlignment\":null} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"typography\":{\"fontSize\":\"20px\"},\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":737,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:737px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 16:42:10','2022-02-07 15:42:10','',12,'https://unternehmen.wir-noi.org/?p=128',0,'revision','',0),(130,4,'2022-02-07 16:46:53','2022-02-07 15:46:53','<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":323,\"minHeightUnit\":\"px\"} -->\n<div class=\"wp-block-cover\" style=\"min-height:323px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">Jetzt REGISTIEREN: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:contact-form-7/contact-form-selector {\"id\":106,\"title\":\"WirNoi Formular\"} -->\n<div class=\"wp-block-contact-form-7-contact-form-selector\">[contact-form-7 id=\"106\" title=\"WirNoi Formular\"]</div>\n<!-- /wp:contact-form-7/contact-form-selector --></div></div>\n<!-- /wp:cover -->','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-07 16:46:53','2022-02-07 15:46:53','',63,'https://unternehmen.wir-noi.org/?p=130',0,'revision','',0),(131,4,'2022-02-07 16:46:57','2022-02-07 15:46:57','<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":323,\"minHeightUnit\":\"px\"} -->\n<div class=\"wp-block-cover\" style=\"min-height:323px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">Jetzt REGISTIEREN: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:contact-form-7/contact-form-selector {\"id\":106,\"title\":\"WirNoi Formular\"} -->\n<div class=\"wp-block-contact-form-7-contact-form-selector\">[contact-form-7 id=\"106\" title=\"WirNoi Formular\"]</div>\n<!-- /wp:contact-form-7/contact-form-selector --></div></div>\n<!-- /wp:cover -->','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-07 16:46:57','2022-02-07 15:46:57','',63,'https://unternehmen.wir-noi.org/?p=131',0,'revision','',0),(132,4,'2022-02-07 16:47:17','2022-02-07 15:47:17','<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">Jetzt REGISTIEREN: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:contact-form-7/contact-form-selector {\"id\":106,\"title\":\"WirNoi Formular\"} -->\n<div class=\"wp-block-contact-form-7-contact-form-selector\">[contact-form-7 id=\"106\" title=\"WirNoi Formular\"]</div>\n<!-- /wp:contact-form-7/contact-form-selector --></div></div>\n<!-- /wp:cover -->','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-07 16:47:17','2022-02-07 15:47:17','',63,'https://unternehmen.wir-noi.org/?p=132',0,'revision','',0),(133,4,'2022-02-07 16:47:30','2022-02-07 15:47:30','<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":323,\"minHeightUnit\":\"px\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:323px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">Jetzt REGISTIEREN: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:contact-form-7/contact-form-selector {\"id\":106,\"title\":\"WirNoi Formular\"} -->\n<div class=\"wp-block-contact-form-7-contact-form-selector\">[contact-form-7 id=\"106\" title=\"WirNoi Formular\"]</div>\n<!-- /wp:contact-form-7/contact-form-selector --></div></div>\n<!-- /wp:cover -->','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-07 16:47:30','2022-02-07 15:47:30','',63,'https://unternehmen.wir-noi.org/?p=133',0,'revision','',0),(134,4,'2022-02-07 16:47:46','2022-02-07 15:47:46','<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"align\":\"wide\"} -->\n<div class=\"wp-block-cover alignwide\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">Jetzt REGISTIEREN: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:contact-form-7/contact-form-selector {\"id\":106,\"title\":\"WirNoi Formular\"} -->\n<div class=\"wp-block-contact-form-7-contact-form-selector\">[contact-form-7 id=\"106\" title=\"WirNoi Formular\"]</div>\n<!-- /wp:contact-form-7/contact-form-selector --></div></div>\n<!-- /wp:cover -->','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-07 16:47:46','2022-02-07 15:47:46','',63,'https://unternehmen.wir-noi.org/?p=134',0,'revision','',0),(135,4,'2022-02-07 16:48:23','2022-02-07 15:48:23','<!-- wp:cover {\"overlayColor\":\"cyan-bluish-gray\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"wide\"} -->\n<div class=\"wp-block-cover alignwide is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-cyan-bluish-gray-background-color has-background-dim-100 wp-block-cover__gradient-background has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">Jetzt REGISTIEREN: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:contact-form-7/contact-form-selector {\"id\":106,\"title\":\"WirNoi Formular\"} -->\n<div class=\"wp-block-contact-form-7-contact-form-selector\">[contact-form-7 id=\"106\" title=\"WirNoi Formular\"]</div>\n<!-- /wp:contact-form-7/contact-form-selector --></div></div>\n<!-- /wp:cover -->','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-07 16:48:23','2022-02-07 15:48:23','',63,'https://unternehmen.wir-noi.org/?p=135',0,'revision','',0),(137,4,'2022-02-07 17:03:03','2022-02-07 16:03:03','<!-- wp:cover {\"customOverlayColor\":\"#c2cad0\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"wide\"} -->\n<div class=\"wp-block-cover alignwide is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#c2cad0\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">Jetzt REGISTIEREN: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:contact-form-7/contact-form-selector {\"id\":106,\"title\":\"WirNoi Formular\"} -->\n<div class=\"wp-block-contact-form-7-contact-form-selector\">[contact-form-7 id=\"106\" title=\"WirNoi Formular\"]</div>\n<!-- /wp:contact-form-7/contact-form-selector --></div></div>\n<!-- /wp:cover -->','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-07 17:03:03','2022-02-07 16:03:03','',63,'https://unternehmen.wir-noi.org/?p=137',0,'revision','',0),(138,4,'2022-02-07 17:16:28','2022-02-07 16:16:28','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns {\"verticalAlignment\":null} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"typography\":{\"fontSize\":\"20px\"},\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":737,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:737px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 17:16:28','2022-02-07 16:16:28','',12,'https://unternehmen.wir-noi.org/?p=138',0,'revision','',0),(139,4,'2022-02-07 17:19:17','2022-02-07 16:19:17','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"typography\":{\"fontSize\":\"20px\"},\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":737,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:737px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 17:19:17','2022-02-07 16:19:17','',12,'https://unternehmen.wir-noi.org/?p=139',0,'revision','',0),(140,4,'2022-02-07 17:19:54','2022-02-07 16:19:54','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"typography\":{\"fontSize\":\"20px\"},\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":737,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:737px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1 0 0 0</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 17:19:54','2022-02-07 16:19:54','',12,'https://unternehmen.wir-noi.org/?p=140',0,'revision','',0),(141,4,'2022-02-07 17:20:30','2022-02-07 16:20:30','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"typography\":{\"fontSize\":\"20px\"},\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":737,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:737px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"120px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:120px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 17:20:30','2022-02-07 16:20:30','',12,'https://unternehmen.wir-noi.org/?p=141',0,'revision','',0),(142,4,'2022-02-07 17:20:59','2022-02-07 16:20:59','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"typography\":{\"fontSize\":\"20px\"},\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":965,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:965px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"200px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:200px\"><strong>1000</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 17:20:59','2022-02-07 16:20:59','',12,'https://unternehmen.wir-noi.org/?p=142',0,'revision','',0),(144,4,'2022-02-07 17:24:46','2022-02-07 16:24:46','<!-- wp:cover {\"customOverlayColor\":\"#c2cad0\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"wide\"} -->\n<div class=\"wp-block-cover alignwide is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#c2cad0\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\">JETZT REGISTIEREN: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:contact-form-7/contact-form-selector {\"id\":106,\"title\":\"WirNoi Formular\"} -->\n<div class=\"wp-block-contact-form-7-contact-form-selector\">[contact-form-7 id=\"106\" title=\"WirNoi Formular\"]</div>\n<!-- /wp:contact-form-7/contact-form-selector --></div></div>\n<!-- /wp:cover -->','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-07 17:24:46','2022-02-07 16:24:46','',63,'https://unternehmen.wir-noi.org/?p=144',0,'revision','',0),(145,4,'2022-02-07 17:25:21','2022-02-07 16:25:21','<!-- wp:cover {\"customOverlayColor\":\"#c2cad0\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"wide\"} -->\n<div class=\"wp-block-cover alignwide is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#c2cad0\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\">Jetzt Registieren </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:contact-form-7/contact-form-selector {\"id\":106,\"title\":\"WirNoi Formular\"} -->\n<div class=\"wp-block-contact-form-7-contact-form-selector\">[contact-form-7 id=\"106\" title=\"WirNoi Formular\"]</div>\n<!-- /wp:contact-form-7/contact-form-selector --></div></div>\n<!-- /wp:cover -->','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-07 17:25:21','2022-02-07 16:25:21','',63,'https://unternehmen.wir-noi.org/?p=145',0,'revision','',0),(146,4,'2022-02-07 17:26:41','2022-02-07 16:26:41','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"typography\":{\"fontSize\":\"20px\"},\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":844,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:844px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"200px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:200px\">1000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-07 17:26:41','2022-02-07 16:26:41','',12,'https://unternehmen.wir-noi.org/?p=146',0,'revision','',0),(149,4,'2022-02-08 08:53:53','2022-02-08 07:53:53','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"verticalAlignment\":null} -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\">________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"typography\":{\"fontSize\":\"20px\"},\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button /--></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":844,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:844px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"200px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:200px\">1000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-08 08:53:53','2022-02-08 07:53:53','',12,'https://unternehmen.wir-noi.org/?p=149',0,'revision','',0),(150,4,'2022-02-08 08:54:39','2022-02-08 07:54:39','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\">________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"},\"typography\":{\"fontSize\":\"22px\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:22px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button /--></div>\n<!-- /wp:buttons -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":844,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:844px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"200px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:200px\">1000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>______________________________________________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-08 08:54:39','2022-02-08 07:54:39','',12,'https://unternehmen.wir-noi.org/?p=150',0,'revision','',0),(152,4,'2022-02-08 09:30:35','2022-02-08 08:30:35','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\">________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"},\"typography\":{\"fontSize\":\"22px\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:22px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":844,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:844px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"200px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:200px\">1000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>_______________________________<strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>_______________________________________________<strong>___</strong>_________________________________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>_________________<strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-08 09:30:35','2022-02-08 08:30:35','',12,'https://unternehmen.wir-noi.org/?p=152',0,'revision','',0),(153,4,'2022-02-08 09:31:08','2022-02-08 08:31:08','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\">________</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"},\"typography\":{\"fontSize\":\"22px\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:22px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":844,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:844px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"200px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:200px\">1000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>_______________________________<strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>_<strong>___</strong>__________________________________<strong>_________________<strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-08 09:31:08','2022-02-08 08:31:08','',12,'https://unternehmen.wir-noi.org/?p=153',0,'revision','',0),(155,4,'2022-02-08 10:35:38','2022-02-08 09:35:38','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"},\"typography\":{\"fontSize\":\"22px\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:22px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":844,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:844px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"200px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:200px\">1000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>_______________________________<strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong>_<strong>___</strong>__________________________________<strong>_________________<strong>__________________________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-08 10:35:38','2022-02-08 09:35:38','',12,'https://unternehmen.wir-noi.org/?p=155',0,'revision','',0),(156,4,'2022-02-08 10:37:47','2022-02-08 09:37:47','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\",\"id\":118,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-118\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/grauerhintergrund-3.png\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"},\"typography\":{\"fontSize\":\"22px\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:22px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":844,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:844px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"200px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:200px\">1000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong><strong>________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong><strong><strong>________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-08 10:37:47','2022-02-08 09:37:47','',12,'https://unternehmen.wir-noi.org/?p=156',0,'revision','',0),(160,4,'2022-02-08 11:22:37','2022-02-08 10:22:37','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7.jpg\",\"id\":159,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":\"0.55\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-159\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7.jpg\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"},\"typography\":{\"fontSize\":\"22px\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:22px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":844,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:844px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"200px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:200px\">1000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong><strong>________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong><strong><strong>________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-08 11:22:37','2022-02-08 10:22:37','',12,'https://unternehmen.wir-noi.org/?p=160',0,'revision','',0),(161,4,'2022-02-08 11:23:36','2022-02-08 10:23:36','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7.jpg\",\"id\":159,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.5},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-159\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7.jpg\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"},\"typography\":{\"fontSize\":\"22px\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:22px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":844,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:844px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"200px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:200px\">1000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong><strong>________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong><strong><strong>________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-08 11:23:36','2022-02-08 10:23:36','',12,'https://unternehmen.wir-noi.org/?p=161',0,'revision','',0),(162,4,'2022-02-08 11:24:02','2022-02-08 10:24:02','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7.jpg\",\"id\":159,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.50\",\"y\":0.55},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-159\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7.jpg\" style=\"object-position:50% 55%\" data-object-fit=\"cover\" data-object-position=\"50% 55%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"},\"typography\":{\"fontSize\":\"22px\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:22px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":844,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:844px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"200px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:200px\">1000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong><strong>________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong><strong><strong>________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-08 11:24:02','2022-02-08 10:24:02','',12,'https://unternehmen.wir-noi.org/?p=162',0,'revision','',0),(163,4,'2022-02-08 11:24:15','2022-02-08 10:24:15','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7.jpg\",\"id\":159,\"dimRatio\":0,\"focalPoint\":{\"x\":\"0.51\",\"y\":\"0.60\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-159\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7.jpg\" style=\"object-position:51% 60%\" data-object-fit=\"cover\" data-object-position=\"51% 60%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"},\"typography\":{\"fontSize\":\"22px\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:22px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":844,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:844px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"200px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:200px\">1000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong><strong>________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong><strong><strong>________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-08 11:24:15','2022-02-08 10:24:15','',12,'https://unternehmen.wir-noi.org/?p=163',0,'revision','',0),(165,4,'2022-02-08 11:26:23','2022-02-08 10:26:23','<!-- wp:cover {\"url\":\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\",\"id\":164,\"dimRatio\":0,\"focalPoint\":{\"x\":0.5,\"y\":\"0.50\"},\"minHeight\":100,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"has-background-dim-0 wp-block-cover__gradient-background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-164\" alt=\"\" src=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\" id=\"projekt\">Projekt</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1} -->\n<h1 class=\"has-text-align-center\" id=\"gesichtzeigen\">GESICHT<br>ZEIGEN</h1>\n<!-- /wp:heading --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>01</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stellen die Menschen<br>in den <strong>Mittelpunkt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>02</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir stehen für <strong>Zusammenhalt</strong><br>in der Gesellschaft</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>03</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir leben <strong>Toleranz</strong><br>und<strong> Respekt</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>04</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir bauen auf <strong>Vertrauen</strong><br>und <strong>Eigenverantwortung</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:buttons {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons alignwide\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"18px\"},\"color\":{\"background\":\"#e6294c\"},\"typography\":{\"fontSize\":\"22px\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:22px\"><a class=\"wp-block-button__link has-background\" style=\"border-radius:18px;background-color:#e6294c\" rel=\"https://unternehmen.wir-noi.org/registrieren/\">REGISTIEREN</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-text-color has-large-font-size\" style=\"color:#e6294c\"><strong>________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e6294c;font-size:64px\"><strong>05</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"20px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:20px\">Wir verteidigen<br>unsere <strong>Grundrechte</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:cover {\"customOverlayColor\":\"#e6294c\",\"minHeight\":844,\"minHeightUnit\":\"px\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:844px\"><span aria-hidden=\"true\" class=\"has-background-dim-100 wp-block-cover__gradient-background has-background-dim\" style=\"background-color:#e6294c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Schreibe einen Titel…\",\"style\":{\"typography\":{\"fontSize\":\"200px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:200px\">1000</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">Südtiroler und Trentiner Unternehmen<br>für mehr Menschlichkeit</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong><strong>________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__________________________________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"huge\"} -->\n<p class=\"has-text-align-center has-huge-font-size\">UNSERE ZIELE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"color\":{\"text\":\"#e6294c\"}},\"fontSize\":\"xlarge\"} -->\n<p class=\"has-text-align-center has-text-color has-xlarge-font-size\" style=\"color:#e6294c\"><strong><strong><strong>________________________________________________________<strong>___</strong>__________________________________<strong>___________________</strong>________________</strong>__</strong>________________</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei. Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe.Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\"> Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"22px\"}}} -->\n<p class=\"has-text-align-center\" style=\"font-size:22px\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\n<!-- /wp:paragraph -->','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-08 11:26:23','2022-02-08 10:26:23','',12,'https://unternehmen.wir-noi.org/?p=165',0,'revision','',0),(176,4,'2022-02-09 15:48:18','2022-02-09 14:48:18','<p>[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]</p>\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT <br />ZEIGEN</h1>\r\n<p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]</p>','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 15:48:18','2022-02-09 14:48:18','',12,'https://unternehmen.wir-noi.org/?p=176',0,'revision','',0),(178,4,'2022-02-09 15:48:55','2022-02-09 14:48:55','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 15:48:55','2022-02-09 14:48:55','',12,'https://unternehmen.wir-noi.org/?p=178',0,'revision','',0),(179,4,'2022-02-09 15:57:58','2022-02-09 14:57:58','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 15:57:58','2022-02-09 14:57:58','',12,'https://unternehmen.wir-noi.org/?p=179',0,'revision','',0),(180,4,'2022-02-09 15:58:38','2022-02-09 14:58:38','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 15:58:38','2022-02-09 14:58:38','',12,'https://unternehmen.wir-noi.org/?p=180',0,'revision','',0),(181,4,'2022-02-09 15:59:11','2022-02-09 14:59:11','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 15:59:11','2022-02-09 14:59:11','',12,'https://unternehmen.wir-noi.org/?p=181',0,'revision','',0),(182,4,'2022-02-09 16:01:11','2022-02-09 15:01:11','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"01,02,03,04,05\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:01:11','2022-02-09 15:01:11','',12,'https://unternehmen.wir-noi.org/?p=182',0,'revision','',0);
+INSERT INTO `wp_posts` VALUES (183,4,'2022-02-09 16:04:08','2022-02-09 15:04:08','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"01,02,03,04,05\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">________________________________________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">________________________________________________________________</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:04:08','2022-02-09 15:04:08','',12,'https://unternehmen.wir-noi.org/?p=183',0,'revision','',0),(184,4,'2022-02-09 16:04:52','2022-02-09 15:04:52','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"01,02,03,04,05\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]<p style=\"text-align: center; color: #e6294c;\">_____________________________________________</p><p style=\"text-align: center;\">UNSERE ZIELE</p><p style=\"text-align: center; color: #e6294c;\">_____________________________________________</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:04:52','2022-02-09 15:04:52','',12,'https://unternehmen.wir-noi.org/?p=184',0,'revision','',0),(185,4,'2022-02-09 16:05:34','2022-02-09 15:05:34','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"01,02,03,04,05\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:05:34','2022-02-09 15:05:34','',12,'https://unternehmen.wir-noi.org/?p=185',0,'revision','',0),(186,4,'2022-02-09 16:06:07','2022-02-09 15:06:07','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"01,02,03,04,05\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"medium\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:06:07','2022-02-09 15:06:07','',12,'https://unternehmen.wir-noi.org/?p=186',0,'revision','',0),(187,4,'2022-02-09 16:06:26','2022-02-09 15:06:26','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"01,02,03,04,05\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:06:26','2022-02-09 15:06:26','',12,'https://unternehmen.wir-noi.org/?p=187',0,'revision','',0),(188,4,'2022-02-09 16:07:44','2022-02-09 15:07:44','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"01,02,03,04,05\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:07:44','2022-02-09 15:07:44','',12,'https://unternehmen.wir-noi.org/?p=188',0,'revision','',0),(189,4,'2022-02-09 16:08:39','2022-02-09 15:08:39','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:08:39','2022-02-09 15:08:39','',12,'https://unternehmen.wir-noi.org/?p=189',0,'revision','',0),(190,4,'2022-02-09 16:09:33','2022-02-09 15:09:33','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:09:33','2022-02-09 15:09:33','',12,'https://unternehmen.wir-noi.org/?p=190',0,'revision','',0),(191,4,'2022-02-09 16:10:25','2022-02-09 15:10:25','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:10:25','2022-02-09 15:10:25','',12,'https://unternehmen.wir-noi.org/?p=191',0,'revision','',0),(192,4,'2022-02-09 16:11:23','2022-02-09 15:11:23','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:11:23','2022-02-09 15:11:23','',12,'https://unternehmen.wir-noi.org/?p=192',0,'revision','',0),(193,4,'2022-02-09 16:11:51','2022-02-09 15:11:51','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"120px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:11:51','2022-02-09 15:11:51','',12,'https://unternehmen.wir-noi.org/?p=193',0,'revision','',0),(194,4,'2022-02-09 16:12:17','2022-02-09 15:12:17','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"150px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:12:17','2022-02-09 15:12:17','',12,'https://unternehmen.wir-noi.org/?p=194',0,'revision','',0),(195,4,'2022-02-09 16:12:42','2022-02-09 15:12:42','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"200px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"\" fusion_font_variant_button_font=\"\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:12:42','2022-02-09 15:12:42','',12,'https://unternehmen.wir-noi.org/?p=195',0,'revision','',0),(196,4,'2022-02-09 16:13:24','2022-02-09 15:13:24','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"250px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:13:24','2022-02-09 15:13:24','',12,'https://unternehmen.wir-noi.org/?p=196',0,'revision','',0),(197,4,'2022-02-09 16:13:57','2022-02-09 15:13:57','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"250px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button link=\"\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" dimension_margin=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"50px\" margin_bottom=\"50px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:13:57','2022-02-09 15:13:57','',12,'https://unternehmen.wir-noi.org/?p=197',0,'revision','',0),(198,4,'2022-02-09 16:14:40','2022-02-09 15:14:40','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"250px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:14:40','2022-02-09 15:14:40','',12,'https://unternehmen.wir-noi.org/?p=198',0,'revision','',0),(199,4,'2022-02-09 16:15:22','2022-02-09 15:15:22','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"250px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann registriere dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:15:22','2022-02-09 15:15:22','',12,'https://unternehmen.wir-noi.org/?p=199',0,'revision','',0),(200,4,'2022-02-09 16:17:02','2022-02-09 15:17:02','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"250px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: var(--awb-color4);\">registriere</span></a> dich jetzt online.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:17:02','2022-02-09 15:17:02','',12,'https://unternehmen.wir-noi.org/?p=200',0,'revision','',0),(201,4,'2022-02-09 16:17:18','2022-02-09 15:17:18','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"250px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: var(--awb-color4);\">registriere</span></a> dich jetzt online.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:17:18','2022-02-09 15:17:18','',12,'https://unternehmen.wir-noi.org/?p=201',0,'revision','',0),(202,4,'2022-02-09 16:17:32','2022-02-09 15:17:32','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"250px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: var(--awb-color4);\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:17:32','2022-02-09 15:17:32','',12,'https://unternehmen.wir-noi.org/?p=202',0,'revision','',0),(203,4,'2022-02-09 16:18:48','2022-02-09 15:18:48','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"250px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WirNoi','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:18:48','2022-02-09 15:18:48','',12,'https://unternehmen.wir-noi.org/?p=203',0,'revision','',0),(204,4,'2022-02-09 16:20:38','2022-02-09 15:20:38','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_menu_anchor name=\"FÜR MENSCHEN\" class=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"250px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_menu_anchor name=\"ZIELE\" class=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:20:38','2022-02-09 15:20:38','',12,'https://unternehmen.wir-noi.org/?p=204',0,'revision','',0),(205,4,'2022-02-18 13:06:42','2022-02-09 15:25:29','','FÜR MENSCHEN','','publish','closed','closed','','fuer-menschen','','','2022-02-18 13:06:42','2022-02-18 12:06:42','',0,'https://unternehmen.wir-noi.org/?p=205',2,'nav_menu_item','',0),(206,4,'2022-02-09 16:26:45','2022-02-09 15:26:45','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" class=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"250px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" class=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:26:45','2022-02-09 15:26:45','',12,'https://unternehmen.wir-noi.org/?p=206',0,'revision','',0),(207,4,'2022-02-18 13:06:42','2022-02-09 15:27:51','','ZIELE','','publish','closed','closed','','ziele','','','2022-02-18 13:06:42','2022-02-18 12:06:42','',0,'https://unternehmen.wir-noi.org/?p=207',3,'nav_menu_item','',0),(209,4,'2022-02-09 16:32:16','2022-02-09 15:32:16','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#c4c4c4\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color4)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]<p style=\"text-align: center;\">Jetzt Registieren</p>[/fusion_text][contact-form-7 id=\"106\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-09 16:32:16','2022-02-09 15:32:16','',63,'https://unternehmen.wir-noi.org/?p=209',0,'revision','',0),(210,4,'2022-02-09 16:32:48','2022-02-09 15:32:48','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#c4c4c4\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color4)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Jetzt Registieren</p>\r\n[/fusion_text][contact-form-7 id=\"106\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-09 16:32:48','2022-02-09 15:32:48','',63,'https://unternehmen.wir-noi.org/?p=210',0,'revision','',0),(211,4,'2022-02-09 16:33:25','2022-02-09 15:33:25','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#c4c4c4\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"42px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color4)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Jetzt Registieren</p>\r\n[/fusion_text][contact-form-7 id=\"106\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-09 16:33:25','2022-02-09 15:33:25','',63,'https://unternehmen.wir-noi.org/?p=211',0,'revision','',0),(212,1,'2022-02-09 16:41:23','2022-02-09 15:41:23','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" class=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"10%\" alignment=\"center\" border_size=\"\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"250px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>____</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" class=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n<p style=\"text-align: center; color: #e6294c;\">___________________________________</p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 16:41:23','2022-02-09 15:41:23','',12,'https://unternehmen.wir-noi.org/?p=212',0,'revision','',0),(213,4,'2022-02-09 17:03:53','2022-02-09 16:03:53','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" class=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"20%\" alignment=\"center\" border_size=\"1\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"250px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"20%\" alignment=\"center\" border_size=\"1\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" class=\"\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"50%\" alignment=\"center\" border_size=\"\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"50%\" alignment=\"center\" border_size=\"\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:03:53','2022-02-09 16:03:53','',12,'https://unternehmen.wir-noi.org/?p=213',0,'revision','',0);
+INSERT INTO `wp_posts` VALUES (215,4,'2022-02-09 17:06:07','2022-02-09 16:06:07','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"250px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"100px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:06:07','2022-02-09 16:06:07','',12,'https://unternehmen.wir-noi.org/?p=215',0,'revision','',0),(216,4,'2022-02-09 17:06:20','2022-02-09 16:06:20','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"250px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"50px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:06:20','2022-02-09 16:06:20','',12,'https://unternehmen.wir-noi.org/?p=216',0,'revision','',0),(217,4,'2022-02-09 17:08:02','2022-02-09 16:08:02','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"250px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"50px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:08:02','2022-02-09 16:08:02','',12,'https://unternehmen.wir-noi.org/?p=217',0,'revision','',0),(218,4,'2022-02-09 17:10:05','2022-02-09 16:10:05','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:10:05','2022-02-09 16:10:05','',12,'https://unternehmen.wir-noi.org/?p=218',0,'revision','',0),(219,4,'2022-02-09 17:10:10','2022-02-09 16:10:10','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrundgrau.7edit.jpg\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Hände\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:10:10','2022-02-09 16:10:10','',12,'https://unternehmen.wir-noi.org/?p=219',0,'revision','',0),(221,4,'2022-02-09 17:14:50','2022-02-09 16:14:50','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grau_9.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:14:50','2022-02-09 16:14:50','',12,'https://unternehmen.wir-noi.org/?p=221',0,'revision','',0),(223,4,'2022-02-09 17:29:28','2022-02-09 16:29:28','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Grauer_Hintergrund_11.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:29:28','2022-02-09 16:29:28','',12,'https://unternehmen.wir-noi.org/?p=223',0,'revision','',0),(224,4,'2022-02-09 17:30:07','2022-02-09 16:30:07','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Grauer_Hintergrund_11.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:30:07','2022-02-09 16:30:07','',12,'https://unternehmen.wir-noi.org/?p=224',0,'revision','',0),(225,4,'2022-02-09 17:30:39','2022-02-09 16:30:39','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"100px\" margin_bottom=\"100px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Grauer_Hintergrund_11.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:30:39','2022-02-09 16:30:39','',12,'https://unternehmen.wir-noi.org/?p=225',0,'revision','',0),(226,4,'2022-02-09 17:31:06','2022-02-09 16:31:06','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Grauer_Hintergrund_11.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:31:06','2022-02-09 16:31:06','',12,'https://unternehmen.wir-noi.org/?p=226',0,'revision','',0),(228,4,'2022-02-09 17:34:24','2022-02-09 16:34:24','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_12.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:34:24','2022-02-09 16:34:24','',12,'https://unternehmen.wir-noi.org/?p=228',0,'revision','',0),(230,4,'2022-02-09 17:42:38','2022-02-09 16:42:38','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:42:38','2022-02-09 16:42:38','',12,'https://unternehmen.wir-noi.org/?p=230',0,'revision','',0),(231,4,'2022-02-09 17:44:14','2022-02-09 16:44:14','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\"><strong>GESICHT</strong>\r\n<strong>ZEIGEN</strong></h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:44:14','2022-02-09 16:44:14','',12,'https://unternehmen.wir-noi.org/?p=231',0,'revision','',0),(232,4,'2022-02-09 17:46:22','2022-02-09 16:46:22','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\"><strong>GESICHT</strong>\r\n<strong>ZEIGEN</strong></h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:46:22','2022-02-09 16:46:22','',12,'https://unternehmen.wir-noi.org/?p=232',0,'revision','',0),(233,4,'2022-02-09 17:48:39','2022-02-09 16:48:39','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"82px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>1000</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:48:39','2022-02-09 16:48:39','',12,'https://unternehmen.wir-noi.org/?p=233',0,'revision','',0),(234,4,'2022-02-09 17:51:33','2022-02-09 16:51:33','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-09 17:51:33','2022-02-09 16:51:33','',12,'https://unternehmen.wir-noi.org/?p=234',0,'revision','',0),(235,4,'2022-02-10 09:56:54','2022-02-10 08:56:54','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"110px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"400\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 09:56:54','2022-02-10 08:56:54','',12,'https://unternehmen.wir-noi.org/?p=235',0,'revision','',0),(236,4,'2022-02-10 09:57:30','2022-02-10 08:57:30','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 09:57:30','2022-02-10 08:57:30','',12,'https://unternehmen.wir-noi.org/?p=236',0,'revision','',0),(237,4,'2022-02-10 09:57:37','2022-02-10 08:57:37','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"100%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 09:57:37','2022-02-10 08:57:37','',12,'https://unternehmen.wir-noi.org/?p=237',0,'revision','',0),(238,4,'2022-02-10 09:59:30','2022-02-10 08:59:30','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"99%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"99%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 09:59:30','2022-02-10 08:59:30','',12,'https://unternehmen.wir-noi.org/?p=238',0,'revision','',0),(239,4,'2022-02-10 09:59:48','2022-02-10 08:59:48','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"98%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"98%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 09:59:48','2022-02-10 08:59:48','',12,'https://unternehmen.wir-noi.org/?p=239',0,'revision','',0),(240,4,'2022-02-10 09:59:58','2022-02-10 08:59:58','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"98%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"98%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 09:59:58','2022-02-10 08:59:58','',12,'https://unternehmen.wir-noi.org/?p=240',0,'revision','',0),(241,4,'2022-02-10 10:00:40','2022-02-10 09:00:40','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 10:00:40','2022-02-10 09:00:40','',12,'https://unternehmen.wir-noi.org/?p=241',0,'revision','',0),(242,4,'2022-02-10 10:00:49','2022-02-10 09:00:49','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"3\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 10:00:49','2022-02-10 09:00:49','',12,'https://unternehmen.wir-noi.org/?p=242',0,'revision','',0),(243,4,'2022-02-10 10:01:54','2022-02-10 09:01:54','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97,5%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97,5%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 10:01:54','2022-02-10 09:01:54','',12,'https://unternehmen.wir-noi.org/?p=243',0,'revision','',0),(244,4,'2022-02-10 10:02:05','2022-02-10 09:02:05','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 10:02:05','2022-02-10 09:02:05','',12,'https://unternehmen.wir-noi.org/?p=244',0,'revision','',0),(245,4,'2022-02-10 10:02:34','2022-02-10 09:02:34','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 10:02:34','2022-02-10 09:02:34','',12,'https://unternehmen.wir-noi.org/?p=245',0,'revision','',0),(247,4,'2022-02-10 10:03:46','2022-02-10 09:03:46','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"50px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 10:03:46','2022-02-10 09:03:46','',12,'https://unternehmen.wir-noi.org/?p=247',0,'revision','',0),(248,4,'2022-02-10 10:03:57','2022-02-10 09:03:57','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT<br />\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen<br />\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br />\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br />\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong><br />\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen<br />\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 10:03:57','2022-02-10 09:03:57','',12,'https://unternehmen.wir-noi.org/?p=248',0,'revision','',0),(249,4,'2022-02-10 10:04:06','2022-02-10 09:04:06','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 10:04:06','2022-02-10 09:04:06','',12,'https://unternehmen.wir-noi.org/?p=249',0,'revision','',0);
+INSERT INTO `wp_posts` VALUES (251,4,'2022-02-10 10:14:57','2022-02-10 09:14:57','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-14.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 10:14:57','2022-02-10 09:14:57','',12,'https://unternehmen.wir-noi.org/?p=251',0,'revision','',0),(254,4,'2022-02-10 10:17:49','2022-02-10 09:17:49','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-13.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 10:17:49','2022-02-10 09:17:49','',12,'https://unternehmen.wir-noi.org/?p=254',0,'revision','',0),(256,4,'2022-02-10 10:23:32','2022-02-10 09:23:32','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"100px\" padding_bottom=\"100px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 10:23:32','2022-02-10 09:23:32','',12,'https://unternehmen.wir-noi.org/?p=256',0,'revision','',0),(258,1,'2022-02-10 12:15:50','2022-02-10 11:15:50','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"\" fusion_font_variant_text_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h1>Impressum</h1>\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n<h2>Kontakt</h2>\r\nE-Mail: info@wir-noi.com\r\n<h2>Redaktionell verantwortlich</h2>\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n<h2>EU-Streitschlichtung</h2>\r\nDie Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit: <a href=\"https://ec.europa.eu/consumers/odr/\" target=\"_blank\" rel=\"noopener noreferrer\">https://ec.europa.eu/consumers/odr/</a>.\r\nUnsere E-Mail-Adresse finden Sie oben im Impressum.\r\n<h2>Verbraucher­streit­beilegung/Universal­schlichtungs­stelle</h2>\r\nWir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Impressum','','inherit','closed','closed','','76-revision-v1','','','2022-02-10 12:15:50','2022-02-10 11:15:50','',76,'https://unternehmen.wir-noi.org/?p=258',0,'revision','',0),(259,1,'2022-02-10 12:21:45','2022-02-10 11:21:45','<p>[fusion_builder_container type=\"flex\" hundred_percent=\"no\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" overlay_color=\"\" video_preview_image=\"\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_bottom=\"\" padding_left=\"\" padding_right=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_color=\"\" border_style=\"solid\" border_position=\"all\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" center_content=\"no\" last=\"true\" min_height=\"\" hover_type=\"none\" link=\"\" border_sizes_top=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_sizes_right=\"\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"\" fusion_font_variant_text_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]</p>\r\n<h1>Datenschutz­erklärung</h1>\r\n<h2>1. Datenschutz auf einen Blick</h2>\r\n<h3>Allgemeine Hinweise</h3>\r\n<p>Die folgenden Hinweise geben einen einfachen Überblick darüber, was mit Ihren personenbezogenen Daten passiert, wenn Sie diese Website besuchen. Personenbezogene Daten sind alle Daten, mit denen Sie persönlich identifiziert werden können. Ausführliche Informationen zum Thema Datenschutz entnehmen Sie unserer unter diesem Text aufgeführten Datenschutzerklärung.</p>\r\n<h3>Datenerfassung auf dieser Website</h3>\r\n<h4>Wer ist verantwortlich für die Datenerfassung auf dieser Website?</h4>\r\n<p>Die Datenverarbeitung auf dieser Website erfolgt durch den Websitebetreiber. Dessen Kontaktdaten können Sie dem Abschnitt „Hinweis zur Verantwortlichen Stelle“ in dieser Datenschutzerklärung entnehmen.</p>\r\n<h4>Wie erfassen wir Ihre Daten?</h4>\r\n<p>Ihre Daten werden zum einen dadurch erhoben, dass Sie uns diese mitteilen. Hierbei kann es sich z. B. um Daten handeln, die Sie in ein Kontaktformular eingeben.</p>\r\n<p>Andere Daten werden automatisch oder nach Ihrer Einwilligung beim Besuch der Website durch unsere IT-Systeme erfasst. Das sind vor allem technische Daten (z. B. Internetbrowser, Betriebssystem oder Uhrzeit des Seitenaufrufs). Die Erfassung dieser Daten erfolgt automatisch, sobald Sie diese Website betreten.</p>\r\n<h4>Wofür nutzen wir Ihre Daten?</h4>\r\n<p>Ein Teil der Daten wird erhoben, um eine fehlerfreie Bereitstellung der Website zu gewährleisten. Andere Daten können zur Analyse Ihres Nutzerverhaltens verwendet werden.</p>\r\n<h4>Welche Rechte haben Sie bezüglich Ihrer Daten?</h4>\r\n<p>Sie haben jederzeit das Recht, unentgeltlich Auskunft über Herkunft, Empfänger und Zweck Ihrer gespeicherten personenbezogenen Daten zu erhalten. Sie haben außerdem ein Recht, die Berichtigung oder Löschung dieser Daten zu verlangen. Wenn Sie eine Einwilligung zur Datenverarbeitung erteilt haben, können Sie diese Einwilligung jederzeit für die Zukunft widerrufen. Außerdem haben Sie das Recht, unter bestimmten Umständen die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Des Weiteren steht Ihnen ein Beschwerderecht bei der zuständigen Aufsichtsbehörde zu.</p>\r\n<p>Hierzu sowie zu weiteren Fragen zum Thema Datenschutz können Sie sich jederzeit an uns wenden.</p>\r\n<h2>2. Hosting</h2>\r\n<h3>Externes Hosting</h3>\r\n<p>Diese Website wird bei einem externen Dienstleister gehostet (Hoster). Die personenbezogenen Daten, die auf dieser Website erfasst werden, werden auf den Servern des Hosters gespeichert. Hierbei kann es sich v. a. um IP-Adressen, Kontaktanfragen, Meta- und Kommunikationsdaten, Vertragsdaten, Kontaktdaten, Namen, Websitezugriffe und sonstige Daten, die über eine Website generiert werden, handeln.</p>\r\n<p>Der Einsatz des Hosters erfolgt zum Zwecke der Vertragserfüllung gegenüber unseren potenziellen und bestehenden Kunden (Art. 6 Abs. 1 lit. b DSGVO) und im Interesse einer sicheren, schnellen und effizienten Bereitstellung unseres Online-Angebots durch einen professionellen Anbieter (Art. 6 Abs. 1 lit. f DSGVO). Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.</p>\r\n<p>Unser Hoster wird Ihre Daten nur insoweit verarbeiten, wie dies zur Erfüllung seiner Leistungspflichten erforderlich ist und unsere Weisungen in Bezug auf diese Daten befolgen.</p>\r\n<p>Wir setzen folgenden Hoster ein:</p>\r\n<p>infeos GmbH<br />Luigi-Negrelli-Straße 15<br />39100 Bozen</p>\r\n<h4>Auftragsverarbeitung</h4>\r\n<p>Wir haben einen Vertrag über Auftragsverarbeitung (AVV) mit dem oben genannten Anbieter geschlossen. Hierbei handelt es sich um einen datenschutzrechtlich vorgeschriebenen Vertrag, der gewährleistet, dass dieser die personenbezogenen Daten unserer Websitebesucher nur nach unseren Weisungen und unter Einhaltung der DSGVO verarbeitet.</p>\r\n<h2>3. Allgemeine Hinweise und Pflicht­informationen</h2>\r\n<h3>Datenschutz</h3>\r\n<p>Die Betreiber dieser Seiten nehmen den Schutz Ihrer persönlichen Daten sehr ernst. Wir behandeln Ihre personenbezogenen Daten vertraulich und entsprechend den gesetzlichen Datenschutzvorschriften sowie dieser Datenschutzerklärung.</p>\r\n<p>Wenn Sie diese Website benutzen, werden verschiedene personenbezogene Daten erhoben. Personenbezogene Daten sind Daten, mit denen Sie persönlich identifiziert werden können. Die vorliegende Datenschutzerklärung erläutert, welche Daten wir erheben und wofür wir sie nutzen. Sie erläutert auch, wie und zu welchem Zweck das geschieht.</p>\r\n<p>Wir weisen darauf hin, dass die Datenübertragung im Internet (z. B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich.</p>\r\n<h3>Hinweis zur verantwortlichen Stelle</h3>\r\n<p>Die verantwortliche Stelle für die Datenverarbeitung auf dieser Website ist:</p>\r\n<p>Sozialunion WIR-NOI Associazione Sociale<br />Kanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10<br />I-39100 Bozen / Bolzano (BZ)</p>\r\n<p>Telefon: [Telefonnummer der verantwortlichen Stelle]<br />E-Mail: info@wir-noi.com</p>\r\n<p>Verantwortliche Stelle ist die natürliche oder juristische Person, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der Verarbeitung von personenbezogenen Daten (z. B. Namen, E-Mail-Adressen o. Ä.) entscheidet.</p>\r\n<h3>Speicherdauer</h3>\r\n<p>Soweit innerhalb dieser Datenschutzerklärung keine speziellere Speicherdauer genannt wurde, verbleiben Ihre personenbezogenen Daten bei uns, bis der Zweck für die Datenverarbeitung entfällt. Wenn Sie ein berechtigtes Löschersuchen geltend machen oder eine Einwilligung zur Datenverarbeitung widerrufen, werden Ihre Daten gelöscht, sofern wir keine anderen rechtlich zulässigen Gründe für die Speicherung Ihrer personenbezogenen Daten haben (z. B. steuer- oder handelsrechtliche Aufbewahrungsfristen); im letztgenannten Fall erfolgt die Löschung nach Fortfall dieser Gründe.</p>\r\n<h3>Allgemeine Hinweise zu den Rechtsgrundlagen der Datenverarbeitung auf dieser Website</h3>\r\n<p>Sofern Sie in die Datenverarbeitung eingewilligt haben, verarbeiten wir Ihre personenbezogenen Daten auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO bzw. Art. 9 Abs. 2 lit. a DSGVO, sofern besondere Datenkategorien nach Art. 9 Abs. 1 DSGVO verarbeitet werden. Im Falle einer ausdrücklichen Einwilligung in die Übertragung personenbezogener Daten in Drittstaaten erfolgt die Datenverarbeitung außerdem auf Grundlage von Art. 49 Abs. 1 lit. a DSGVO. Sofern Sie in die Speicherung von Cookies oder in den Zugriff auf Informationen in Ihr Endgerät (z. B. via Device-Fingerprinting) eingewilligt haben, erfolgt die Datenverarbeitung zusätzlich auf Grundlage von § 25 Abs. 1 TTDSG. Die Einwilligung ist jederzeit widerrufbar. Sind Ihre Daten zur Vertragserfüllung oder zur Durchführung vorvertraglicher Maßnahmen erforderlich, verarbeiten wir Ihre Daten auf Grundlage des Art. 6 Abs. 1 lit. b DSGVO. Des Weiteren verarbeiten wir Ihre Daten, sofern diese zur Erfüllung einer rechtlichen Verpflichtung erforderlich sind auf Grundlage von Art. 6 Abs. 1 lit. c DSGVO. Die Datenverarbeitung kann ferner auf Grundlage unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO erfolgen. Über die jeweils im Einzelfall einschlägigen Rechtsgrundlagen wird in den folgenden Absätzen dieser Datenschutzerklärung informiert.</p>\r\n<h3>Hinweis zur Datenweitergabe in die USA und sonstige Drittstaaten</h3>\r\n<p>Wir verwenden unter anderem Tools von Unternehmen mit Sitz in den USA oder sonstigen datenschutzrechtlich nicht sicheren Drittstaaten. Wenn diese Tools aktiv sind, können Ihre personenbezogene Daten in diese Drittstaaten übertragen und dort verarbeitet werden. Wir weisen darauf hin, dass in diesen Ländern kein mit der EU vergleichbares Datenschutzniveau garantiert werden kann. Beispielsweise sind US-Unternehmen dazu verpflichtet, personenbezogene Daten an Sicherheitsbehörden herauszugeben, ohne dass Sie als Betroffener hiergegen gerichtlich vorgehen könnten. Es kann daher nicht ausgeschlossen werden, dass US-Behörden (z. B. Geheimdienste) Ihre auf US-Servern befindlichen Daten zu Überwachungszwecken verarbeiten, auswerten und dauerhaft speichern. Wir haben auf diese Verarbeitungstätigkeiten keinen Einfluss.</p>\r\n<h3>Widerruf Ihrer Einwilligung zur Datenverarbeitung</h3>\r\n<p>Viele Datenverarbeitungsvorgänge sind nur mit Ihrer ausdrücklichen Einwilligung möglich. Sie können eine bereits erteilte Einwilligung jederzeit widerrufen. Die Rechtmäßigkeit der bis zum Widerruf erfolgten Datenverarbeitung bleibt vom Widerruf unberührt.</p>\r\n<h3>Widerspruchsrecht gegen die Datenerhebung in besonderen Fällen sowie gegen Direktwerbung (Art. 21 DSGVO)</h3>\r\n<p>WENN DIE DATENVERARBEITUNG AUF GRUNDLAGE VON ART. 6 ABS. 1 LIT. E ODER F DSGVO ERFOLGT, HABEN SIE JEDERZEIT DAS RECHT, AUS GRÜNDEN, DIE SICH AUS IHRER BESONDEREN SITUATION ERGEBEN, GEGEN DIE VERARBEITUNG IHRER PERSONENBEZOGENEN DATEN WIDERSPRUCH EINZULEGEN; DIES GILT AUCH FÜR EIN AUF DIESE BESTIMMUNGEN GESTÜTZTES PROFILING. DIE JEWEILIGE RECHTSGRUNDLAGE, AUF DENEN EINE VERARBEITUNG BERUHT, ENTNEHMEN SIE DIESER DATENSCHUTZERKLÄRUNG. WENN SIE WIDERSPRUCH EINLEGEN, WERDEN WIR IHRE BETROFFENEN PERSONENBEZOGENEN DATEN NICHT MEHR VERARBEITEN, ES SEI DENN, WIR KÖNNEN ZWINGENDE SCHUTZWÜRDIGE GRÜNDE FÜR DIE VERARBEITUNG NACHWEISEN, DIE IHRE INTERESSEN, RECHTE UND FREIHEITEN ÜBERWIEGEN ODER DIE VERARBEITUNG DIENT DER GELTENDMACHUNG, AUSÜBUNG ODER VERTEIDIGUNG VON RECHTSANSPRÜCHEN (WIDERSPRUCH NACH ART. 21 ABS. 1 DSGVO).</p>\r\n<p>WERDEN IHRE PERSONENBEZOGENEN DATEN VERARBEITET, UM DIREKTWERBUNG ZU BETREIBEN, SO HABEN SIE DAS RECHT, JEDERZEIT WIDERSPRUCH GEGEN DIE VERARBEITUNG SIE BETREFFENDER PERSONENBEZOGENER DATEN ZUM ZWECKE DERARTIGER WERBUNG EINZULEGEN; DIES GILT AUCH FÜR DAS PROFILING, SOWEIT ES MIT SOLCHER DIREKTWERBUNG IN VERBINDUNG STEHT. WENN SIE WIDERSPRECHEN, WERDEN IHRE PERSONENBEZOGENEN DATEN ANSCHLIESSEND NICHT MEHR ZUM ZWECKE DER DIREKTWERBUNG VERWENDET (WIDERSPRUCH NACH ART. 21 ABS. 2 DSGVO).</p>\r\n<h3>Beschwerde­recht bei der zuständigen Aufsichts­behörde</h3>\r\n<p>Im Falle von Verstößen gegen die DSGVO steht den Betroffenen ein Beschwerderecht bei einer Aufsichtsbehörde, insbesondere in dem Mitgliedstaat ihres gewöhnlichen Aufenthalts, ihres Arbeitsplatzes oder des Orts des mutmaßlichen Verstoßes zu. Das Beschwerderecht besteht unbeschadet anderweitiger verwaltungsrechtlicher oder gerichtlicher Rechtsbehelfe.</p>\r\n<h3>Recht auf Daten­übertrag­barkeit</h3>\r\n<p>Sie haben das Recht, Daten, die wir auf Grundlage Ihrer Einwilligung oder in Erfüllung eines Vertrags automatisiert verarbeiten, an sich oder an einen Dritten in einem gängigen, maschinenlesbaren Format aushändigen zu lassen. Sofern Sie die direkte Übertragung der Daten an einen anderen Verantwortlichen verlangen, erfolgt dies nur, soweit es technisch machbar ist.</p>\r\n<h3>SSL- bzw. TLS-Verschlüsselung</h3>\r\n<p>Diese Seite nutzt aus Sicherheitsgründen und zum Schutz der Übertragung vertraulicher Inhalte, wie zum Beispiel Bestellungen oder Anfragen, die Sie an uns als Seitenbetreiber senden, eine SSL- bzw. TLS-Verschlüsselung. Eine verschlüsselte Verbindung erkennen Sie daran, dass die Adresszeile des Browsers von „http://“ auf „https://“ wechselt und an dem Schloss-Symbol in Ihrer Browserzeile.</p>\r\n<p>Wenn die SSL- bzw. TLS-Verschlüsselung aktiviert ist, können die Daten, die Sie an uns übermitteln, nicht von Dritten mitgelesen werden.</p>\r\n<h3>Auskunft, Löschung und Berichtigung</h3>\r\n<p>Sie haben im Rahmen der geltenden gesetzlichen Bestimmungen jederzeit das Recht auf unentgeltliche Auskunft über Ihre gespeicherten personenbezogenen Daten, deren Herkunft und Empfänger und den Zweck der Datenverarbeitung und ggf. ein Recht auf Berichtigung oder Löschung dieser Daten. Hierzu sowie zu weiteren Fragen zum Thema personenbezogene Daten können Sie sich jederzeit an uns wenden.</p>\r\n<h3>Recht auf Einschränkung der Verarbeitung</h3>\r\n<p>Sie haben das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Hierzu können Sie sich jederzeit an uns wenden. Das Recht auf Einschränkung der Verarbeitung besteht in folgenden Fällen:</p>\r\n<ul>\r\n<li>Wenn Sie die Richtigkeit Ihrer bei uns gespeicherten personenbezogenen Daten bestreiten, benötigen wir in der Regel Zeit, um dies zu überprüfen. Für die Dauer der Prüfung haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n<li>Wenn die Verarbeitung Ihrer personenbezogenen Daten unrechtmäßig geschah/geschieht, können Sie statt der Löschung die Einschränkung der Datenverarbeitung verlangen.</li>\r\n<li>Wenn wir Ihre personenbezogenen Daten nicht mehr benötigen, Sie sie jedoch zur Ausübung, Verteidigung oder Geltendmachung von Rechtsansprüchen benötigen, haben Sie das Recht, statt der Löschung die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n<li>Wenn Sie einen Widerspruch nach Art. 21 Abs. 1 DSGVO eingelegt haben, muss eine Abwägung zwischen Ihren und unseren Interessen vorgenommen werden. Solange noch nicht feststeht, wessen Interessen überwiegen, haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n</ul>\r\n<p>Wenn Sie die Verarbeitung Ihrer personenbezogenen Daten eingeschränkt haben, dürfen diese Daten – von ihrer Speicherung abgesehen – nur mit Ihrer Einwilligung oder zur Geltendmachung, Ausübung oder Verteidigung von Rechtsansprüchen oder zum Schutz der Rechte einer anderen natürlichen oder juristischen Person oder aus Gründen eines wichtigen öffentlichen Interesses der Europäischen Union oder eines Mitgliedstaats verarbeitet werden.</p>\r\n<h3>Widerspruch gegen Werbe-E-Mails</h3>\r\n<p>Der Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten zur Übersendung von nicht ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit widersprochen. Die Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-E-Mails, vor.</p>\r\n<h2>4. Datenerfassung auf dieser Website</h2>\r\n<h3>Kontaktformular</h3>\r\n<p>Wenn Sie uns per Kontaktformular Anfragen zukommen lassen, werden Ihre Angaben aus dem Anfrageformular inklusive der von Ihnen dort angegebenen Kontaktdaten zwecks Bearbeitung der Anfrage und für den Fall von Anschlussfragen bei uns gespeichert. Diese Daten geben wir nicht ohne Ihre Einwilligung weiter.</p>\r\n<p>Die Verarbeitung dieser Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. b DSGVO, sofern Ihre Anfrage mit der Erfüllung eines Vertrags zusammenhängt oder zur Durchführung vorvertraglicher Maßnahmen erforderlich ist. In allen übrigen Fällen beruht die Verarbeitung auf unserem berechtigten Interesse an der effektiven Bearbeitung der an uns gerichteten Anfragen (Art. 6 Abs. 1 lit. f DSGVO) oder auf Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO) sofern diese abgefragt wurde; die Einwilligung ist jederzeit widerrufbar.</p>\r\n<p>Die von Ihnen im Kontaktformular eingegebenen Daten verbleiben bei uns, bis Sie uns zur Löschung auffordern, Ihre Einwilligung zur Speicherung widerrufen oder der Zweck für die Datenspeicherung entfällt (z. B. nach abgeschlossener Bearbeitung Ihrer Anfrage). Zwingende gesetzliche Bestimmungen – insbesondere Aufbewahrungsfristen – bleiben unberührt.</p>\r\n<h2>5. Newsletter</h2>\r\n<h3>Newsletter­daten</h3>\r\n<p>Wenn Sie den auf der Website angebotenen Newsletter beziehen möchten, benötigen wir von Ihnen eine E-Mail-Adresse sowie Informationen, welche uns die Überprüfung gestatten, dass Sie der Inhaber der angegebenen E-Mail-Adresse sind und mit dem Empfang des Newsletters einverstanden sind. Weitere Daten werden nicht bzw. nur auf freiwilliger Basis erhoben. Diese Daten verwenden wir ausschließlich für den Versand der angeforderten Informationen und geben diese nicht an Dritte weiter.</p>\r\n<p>Die Verarbeitung der in das Newsletteranmeldeformular eingegebenen Daten erfolgt ausschließlich auf Grundlage Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO). Die erteilte Einwilligung zur Speicherung der Daten, der E-Mail-Adresse sowie deren Nutzung zum Versand des Newsletters können Sie jederzeit widerrufen, etwa über den „Austragen“-Link im Newsletter. Die Rechtmäßigkeit der bereits erfolgten Datenverarbeitungsvorgänge bleibt vom Widerruf unberührt.</p>\r\n<p>Die von Ihnen zum Zwecke des Newsletter-Bezugs bei uns hinterlegten Daten werden von uns bis zu Ihrer Austragung aus dem Newsletter bei uns bzw. dem Newsletterdiensteanbieter gespeichert und nach der Abbestellung des Newsletters oder nach Zweckfortfall aus der Newsletterverteilerliste gelöscht. Wir behalten uns vor, E-Mail-Adressen aus unserem Newsletterverteiler nach eigenem Ermessen im Rahmen unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO zu löschen oder zu sperren.</p>\r\n<p>Daten, die zu anderen Zwecken bei uns gespeichert wurden, bleiben hiervon unberührt.</p>\r\n<p>Nach Ihrer Austragung aus der Newsletterverteilerliste wird Ihre E-Mail-Adresse bei uns bzw. dem Newsletterdiensteanbieter ggf. in einer Blacklist gespeichert, sofern dies zur Verhinderung künftiger Mailings erforderlich ist. Die Daten aus der Blacklist werden nur für diesen Zweck verwendet und nicht mit anderen Daten zusammengeführt. Dies dient sowohl Ihrem Interesse als auch unserem Interesse an der Einhaltung der gesetzlichen Vorgaben beim Versand von Newslettern (berechtigtes Interesse im Sinne des Art. 6 Abs. 1 lit. f DSGVO). Die Speicherung in der Blacklist ist zeitlich nicht befristet. <strong>Sie können der Speicherung widersprechen, sofern Ihre Interessen unser berechtigtes Interesse überwiegen.</strong></p>\r\n<h2>6. Plugins und Tools</h2>\r\n<h3>Google reCAPTCHA</h3>\r\n<p>Wir nutzen „Google reCAPTCHA“ (im Folgenden „reCAPTCHA“) auf dieser Website. Anbieter ist die Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Irland.</p>\r\n<p>Mit reCAPTCHA soll überprüft werden, ob die Dateneingabe auf dieser Website (z. B. in einem Kontaktformular) durch einen Menschen oder durch ein automatisiertes Programm erfolgt. Hierzu analysiert reCAPTCHA das Verhalten des Websitebesuchers anhand verschiedener Merkmale. Diese Analyse beginnt automatisch, sobald der Websitebesucher die Website betritt. Zur Analyse wertet reCAPTCHA verschiedene Informationen aus (z. B. IP-Adresse, Verweildauer des Websitebesuchers auf der Website oder vom Nutzer getätigte Mausbewegungen). Die bei der Analyse erfassten Daten werden an Google weitergeleitet.</p>\r\n<p>Die reCAPTCHA-Analysen laufen vollständig im Hintergrund. Websitebesucher werden nicht darauf hingewiesen, dass eine Analyse stattfindet.</p>\r\n<p>Die Speicherung und Analyse der Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. f DSGVO. Der Websitebetreiber hat ein berechtigtes Interesse daran, seine Webangebote vor missbräuchlicher automatisierter Ausspähung und vor SPAM zu schützen. Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.</p>\r\n<p>Weitere Informationen zu Google reCAPTCHA entnehmen Sie den Google-Datenschutzbestimmungen und den Google Nutzungsbedingungen unter folgenden Links: <a href=\"https://policies.google.com/privacy?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/privacy?hl=de</a> und <a href=\"https://policies.google.com/terms?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/terms?hl=de</a>.</p>\r\n<p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]</p>','Datenschutzerklärung','','inherit','closed','closed','','3-revision-v1','','','2022-02-10 12:21:45','2022-02-10 11:21:45','',3,'https://unternehmen.wir-noi.org/?p=259',0,'revision','',0),(260,1,'2022-02-10 12:21:58','2022-02-10 11:21:58','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" overlay_color=\"\" video_preview_image=\"\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_bottom=\"\" padding_left=\"\" padding_right=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_color=\"\" border_style=\"solid\" border_position=\"all\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" center_content=\"no\" last=\"true\" min_height=\"\" hover_type=\"none\" link=\"\" border_sizes_top=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_sizes_right=\"\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"\" fusion_font_variant_text_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h1>Datenschutz­erklärung</h1>\r\n<h2>1. Datenschutz auf einen Blick</h2>\r\n<h3>Allgemeine Hinweise</h3>\r\nDie folgenden Hinweise geben einen einfachen Überblick darüber, was mit Ihren personenbezogenen Daten passiert, wenn Sie diese Website besuchen. Personenbezogene Daten sind alle Daten, mit denen Sie persönlich identifiziert werden können. Ausführliche Informationen zum Thema Datenschutz entnehmen Sie unserer unter diesem Text aufgeführten Datenschutzerklärung.\r\n<h3>Datenerfassung auf dieser Website</h3>\r\n<h4>Wer ist verantwortlich für die Datenerfassung auf dieser Website?</h4>\r\nDie Datenverarbeitung auf dieser Website erfolgt durch den Websitebetreiber. Dessen Kontaktdaten können Sie dem Abschnitt „Hinweis zur Verantwortlichen Stelle“ in dieser Datenschutzerklärung entnehmen.\r\n<h4>Wie erfassen wir Ihre Daten?</h4>\r\nIhre Daten werden zum einen dadurch erhoben, dass Sie uns diese mitteilen. Hierbei kann es sich z. B. um Daten handeln, die Sie in ein Kontaktformular eingeben.\r\n\r\nAndere Daten werden automatisch oder nach Ihrer Einwilligung beim Besuch der Website durch unsere IT-Systeme erfasst. Das sind vor allem technische Daten (z. B. Internetbrowser, Betriebssystem oder Uhrzeit des Seitenaufrufs). Die Erfassung dieser Daten erfolgt automatisch, sobald Sie diese Website betreten.\r\n<h4>Wofür nutzen wir Ihre Daten?</h4>\r\nEin Teil der Daten wird erhoben, um eine fehlerfreie Bereitstellung der Website zu gewährleisten. Andere Daten können zur Analyse Ihres Nutzerverhaltens verwendet werden.\r\n<h4>Welche Rechte haben Sie bezüglich Ihrer Daten?</h4>\r\nSie haben jederzeit das Recht, unentgeltlich Auskunft über Herkunft, Empfänger und Zweck Ihrer gespeicherten personenbezogenen Daten zu erhalten. Sie haben außerdem ein Recht, die Berichtigung oder Löschung dieser Daten zu verlangen. Wenn Sie eine Einwilligung zur Datenverarbeitung erteilt haben, können Sie diese Einwilligung jederzeit für die Zukunft widerrufen. Außerdem haben Sie das Recht, unter bestimmten Umständen die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Des Weiteren steht Ihnen ein Beschwerderecht bei der zuständigen Aufsichtsbehörde zu.\r\n\r\nHierzu sowie zu weiteren Fragen zum Thema Datenschutz können Sie sich jederzeit an uns wenden.\r\n<h2>2. Hosting</h2>\r\n<h3>Externes Hosting</h3>\r\nDiese Website wird bei einem externen Dienstleister gehostet (Hoster). Die personenbezogenen Daten, die auf dieser Website erfasst werden, werden auf den Servern des Hosters gespeichert. Hierbei kann es sich v. a. um IP-Adressen, Kontaktanfragen, Meta- und Kommunikationsdaten, Vertragsdaten, Kontaktdaten, Namen, Websitezugriffe und sonstige Daten, die über eine Website generiert werden, handeln.\r\n\r\nDer Einsatz des Hosters erfolgt zum Zwecke der Vertragserfüllung gegenüber unseren potenziellen und bestehenden Kunden (Art. 6 Abs. 1 lit. b DSGVO) und im Interesse einer sicheren, schnellen und effizienten Bereitstellung unseres Online-Angebots durch einen professionellen Anbieter (Art. 6 Abs. 1 lit. f DSGVO). Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nUnser Hoster wird Ihre Daten nur insoweit verarbeiten, wie dies zur Erfüllung seiner Leistungspflichten erforderlich ist und unsere Weisungen in Bezug auf diese Daten befolgen.\r\n\r\nWir setzen folgenden Hoster ein:\r\n\r\ninfeos GmbH\r\nLuigi-Negrelli-Straße 15\r\n39100 Bozen\r\n<h4>Auftragsverarbeitung</h4>\r\nWir haben einen Vertrag über Auftragsverarbeitung (AVV) mit dem oben genannten Anbieter geschlossen. Hierbei handelt es sich um einen datenschutzrechtlich vorgeschriebenen Vertrag, der gewährleistet, dass dieser die personenbezogenen Daten unserer Websitebesucher nur nach unseren Weisungen und unter Einhaltung der DSGVO verarbeitet.\r\n<h2>3. Allgemeine Hinweise und Pflicht­informationen</h2>\r\n<h3>Datenschutz</h3>\r\nDie Betreiber dieser Seiten nehmen den Schutz Ihrer persönlichen Daten sehr ernst. Wir behandeln Ihre personenbezogenen Daten vertraulich und entsprechend den gesetzlichen Datenschutzvorschriften sowie dieser Datenschutzerklärung.\r\n\r\nWenn Sie diese Website benutzen, werden verschiedene personenbezogene Daten erhoben. Personenbezogene Daten sind Daten, mit denen Sie persönlich identifiziert werden können. Die vorliegende Datenschutzerklärung erläutert, welche Daten wir erheben und wofür wir sie nutzen. Sie erläutert auch, wie und zu welchem Zweck das geschieht.\r\n\r\nWir weisen darauf hin, dass die Datenübertragung im Internet (z. B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich.\r\n<h3>Hinweis zur verantwortlichen Stelle</h3>\r\nDie verantwortliche Stelle für die Datenverarbeitung auf dieser Website ist:\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\nTelefon: [Telefonnummer der verantwortlichen Stelle]\r\nE-Mail: info@wir-noi.com\r\n\r\nVerantwortliche Stelle ist die natürliche oder juristische Person, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der Verarbeitung von personenbezogenen Daten (z. B. Namen, E-Mail-Adressen o. Ä.) entscheidet.\r\n<h3>Speicherdauer</h3>\r\nSoweit innerhalb dieser Datenschutzerklärung keine speziellere Speicherdauer genannt wurde, verbleiben Ihre personenbezogenen Daten bei uns, bis der Zweck für die Datenverarbeitung entfällt. Wenn Sie ein berechtigtes Löschersuchen geltend machen oder eine Einwilligung zur Datenverarbeitung widerrufen, werden Ihre Daten gelöscht, sofern wir keine anderen rechtlich zulässigen Gründe für die Speicherung Ihrer personenbezogenen Daten haben (z. B. steuer- oder handelsrechtliche Aufbewahrungsfristen); im letztgenannten Fall erfolgt die Löschung nach Fortfall dieser Gründe.\r\n<h3>Allgemeine Hinweise zu den Rechtsgrundlagen der Datenverarbeitung auf dieser Website</h3>\r\nSofern Sie in die Datenverarbeitung eingewilligt haben, verarbeiten wir Ihre personenbezogenen Daten auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO bzw. Art. 9 Abs. 2 lit. a DSGVO, sofern besondere Datenkategorien nach Art. 9 Abs. 1 DSGVO verarbeitet werden. Im Falle einer ausdrücklichen Einwilligung in die Übertragung personenbezogener Daten in Drittstaaten erfolgt die Datenverarbeitung außerdem auf Grundlage von Art. 49 Abs. 1 lit. a DSGVO. Sofern Sie in die Speicherung von Cookies oder in den Zugriff auf Informationen in Ihr Endgerät (z. B. via Device-Fingerprinting) eingewilligt haben, erfolgt die Datenverarbeitung zusätzlich auf Grundlage von § 25 Abs. 1 TTDSG. Die Einwilligung ist jederzeit widerrufbar. Sind Ihre Daten zur Vertragserfüllung oder zur Durchführung vorvertraglicher Maßnahmen erforderlich, verarbeiten wir Ihre Daten auf Grundlage des Art. 6 Abs. 1 lit. b DSGVO. Des Weiteren verarbeiten wir Ihre Daten, sofern diese zur Erfüllung einer rechtlichen Verpflichtung erforderlich sind auf Grundlage von Art. 6 Abs. 1 lit. c DSGVO. Die Datenverarbeitung kann ferner auf Grundlage unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO erfolgen. Über die jeweils im Einzelfall einschlägigen Rechtsgrundlagen wird in den folgenden Absätzen dieser Datenschutzerklärung informiert.\r\n<h3>Hinweis zur Datenweitergabe in die USA und sonstige Drittstaaten</h3>\r\nWir verwenden unter anderem Tools von Unternehmen mit Sitz in den USA oder sonstigen datenschutzrechtlich nicht sicheren Drittstaaten. Wenn diese Tools aktiv sind, können Ihre personenbezogene Daten in diese Drittstaaten übertragen und dort verarbeitet werden. Wir weisen darauf hin, dass in diesen Ländern kein mit der EU vergleichbares Datenschutzniveau garantiert werden kann. Beispielsweise sind US-Unternehmen dazu verpflichtet, personenbezogene Daten an Sicherheitsbehörden herauszugeben, ohne dass Sie als Betroffener hiergegen gerichtlich vorgehen könnten. Es kann daher nicht ausgeschlossen werden, dass US-Behörden (z. B. Geheimdienste) Ihre auf US-Servern befindlichen Daten zu Überwachungszwecken verarbeiten, auswerten und dauerhaft speichern. Wir haben auf diese Verarbeitungstätigkeiten keinen Einfluss.\r\n<h3>Widerruf Ihrer Einwilligung zur Datenverarbeitung</h3>\r\nViele Datenverarbeitungsvorgänge sind nur mit Ihrer ausdrücklichen Einwilligung möglich. Sie können eine bereits erteilte Einwilligung jederzeit widerrufen. Die Rechtmäßigkeit der bis zum Widerruf erfolgten Datenverarbeitung bleibt vom Widerruf unberührt.\r\n<h3>Widerspruchsrecht gegen die Datenerhebung in besonderen Fällen sowie gegen Direktwerbung (Art. 21 DSGVO)</h3>\r\nWENN DIE DATENVERARBEITUNG AUF GRUNDLAGE VON ART. 6 ABS. 1 LIT. E ODER F DSGVO ERFOLGT, HABEN SIE JEDERZEIT DAS RECHT, AUS GRÜNDEN, DIE SICH AUS IHRER BESONDEREN SITUATION ERGEBEN, GEGEN DIE VERARBEITUNG IHRER PERSONENBEZOGENEN DATEN WIDERSPRUCH EINZULEGEN; DIES GILT AUCH FÜR EIN AUF DIESE BESTIMMUNGEN GESTÜTZTES PROFILING. DIE JEWEILIGE RECHTSGRUNDLAGE, AUF DENEN EINE VERARBEITUNG BERUHT, ENTNEHMEN SIE DIESER DATENSCHUTZERKLÄRUNG. WENN SIE WIDERSPRUCH EINLEGEN, WERDEN WIR IHRE BETROFFENEN PERSONENBEZOGENEN DATEN NICHT MEHR VERARBEITEN, ES SEI DENN, WIR KÖNNEN ZWINGENDE SCHUTZWÜRDIGE GRÜNDE FÜR DIE VERARBEITUNG NACHWEISEN, DIE IHRE INTERESSEN, RECHTE UND FREIHEITEN ÜBERWIEGEN ODER DIE VERARBEITUNG DIENT DER GELTENDMACHUNG, AUSÜBUNG ODER VERTEIDIGUNG VON RECHTSANSPRÜCHEN (WIDERSPRUCH NACH ART. 21 ABS. 1 DSGVO).\r\n\r\nWERDEN IHRE PERSONENBEZOGENEN DATEN VERARBEITET, UM DIREKTWERBUNG ZU BETREIBEN, SO HABEN SIE DAS RECHT, JEDERZEIT WIDERSPRUCH GEGEN DIE VERARBEITUNG SIE BETREFFENDER PERSONENBEZOGENER DATEN ZUM ZWECKE DERARTIGER WERBUNG EINZULEGEN; DIES GILT AUCH FÜR DAS PROFILING, SOWEIT ES MIT SOLCHER DIREKTWERBUNG IN VERBINDUNG STEHT. WENN SIE WIDERSPRECHEN, WERDEN IHRE PERSONENBEZOGENEN DATEN ANSCHLIESSEND NICHT MEHR ZUM ZWECKE DER DIREKTWERBUNG VERWENDET (WIDERSPRUCH NACH ART. 21 ABS. 2 DSGVO).\r\n<h3>Beschwerde­recht bei der zuständigen Aufsichts­behörde</h3>\r\nIm Falle von Verstößen gegen die DSGVO steht den Betroffenen ein Beschwerderecht bei einer Aufsichtsbehörde, insbesondere in dem Mitgliedstaat ihres gewöhnlichen Aufenthalts, ihres Arbeitsplatzes oder des Orts des mutmaßlichen Verstoßes zu. Das Beschwerderecht besteht unbeschadet anderweitiger verwaltungsrechtlicher oder gerichtlicher Rechtsbehelfe.\r\n<h3>Recht auf Daten­übertrag­barkeit</h3>\r\nSie haben das Recht, Daten, die wir auf Grundlage Ihrer Einwilligung oder in Erfüllung eines Vertrags automatisiert verarbeiten, an sich oder an einen Dritten in einem gängigen, maschinenlesbaren Format aushändigen zu lassen. Sofern Sie die direkte Übertragung der Daten an einen anderen Verantwortlichen verlangen, erfolgt dies nur, soweit es technisch machbar ist.\r\n<h3>SSL- bzw. TLS-Verschlüsselung</h3>\r\nDiese Seite nutzt aus Sicherheitsgründen und zum Schutz der Übertragung vertraulicher Inhalte, wie zum Beispiel Bestellungen oder Anfragen, die Sie an uns als Seitenbetreiber senden, eine SSL- bzw. TLS-Verschlüsselung. Eine verschlüsselte Verbindung erkennen Sie daran, dass die Adresszeile des Browsers von „http://“ auf „https://“ wechselt und an dem Schloss-Symbol in Ihrer Browserzeile.\r\n\r\nWenn die SSL- bzw. TLS-Verschlüsselung aktiviert ist, können die Daten, die Sie an uns übermitteln, nicht von Dritten mitgelesen werden.\r\n<h3>Auskunft, Löschung und Berichtigung</h3>\r\nSie haben im Rahmen der geltenden gesetzlichen Bestimmungen jederzeit das Recht auf unentgeltliche Auskunft über Ihre gespeicherten personenbezogenen Daten, deren Herkunft und Empfänger und den Zweck der Datenverarbeitung und ggf. ein Recht auf Berichtigung oder Löschung dieser Daten. Hierzu sowie zu weiteren Fragen zum Thema personenbezogene Daten können Sie sich jederzeit an uns wenden.\r\n<h3>Recht auf Einschränkung der Verarbeitung</h3>\r\nSie haben das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Hierzu können Sie sich jederzeit an uns wenden. Das Recht auf Einschränkung der Verarbeitung besteht in folgenden Fällen:\r\n<ul>\r\n      <li>Wenn Sie die Richtigkeit Ihrer bei uns gespeicherten personenbezogenen Daten bestreiten, benötigen wir in der Regel Zeit, um dies zu überprüfen. Für die Dauer der Prüfung haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n       <li>Wenn die Verarbeitung Ihrer personenbezogenen Daten unrechtmäßig geschah/geschieht, können Sie statt der Löschung die Einschränkung der Datenverarbeitung verlangen.</li>\r\n  <li>Wenn wir Ihre personenbezogenen Daten nicht mehr benötigen, Sie sie jedoch zur Ausübung, Verteidigung oder Geltendmachung von Rechtsansprüchen benötigen, haben Sie das Recht, statt der Löschung die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n     <li>Wenn Sie einen Widerspruch nach Art. 21 Abs. 1 DSGVO eingelegt haben, muss eine Abwägung zwischen Ihren und unseren Interessen vorgenommen werden. Solange noch nicht feststeht, wessen Interessen überwiegen, haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n</ul>\r\nWenn Sie die Verarbeitung Ihrer personenbezogenen Daten eingeschränkt haben, dürfen diese Daten – von ihrer Speicherung abgesehen – nur mit Ihrer Einwilligung oder zur Geltendmachung, Ausübung oder Verteidigung von Rechtsansprüchen oder zum Schutz der Rechte einer anderen natürlichen oder juristischen Person oder aus Gründen eines wichtigen öffentlichen Interesses der Europäischen Union oder eines Mitgliedstaats verarbeitet werden.\r\n<h3>Widerspruch gegen Werbe-E-Mails</h3>\r\nDer Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten zur Übersendung von nicht ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit widersprochen. Die Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-E-Mails, vor.\r\n<h2>4. Datenerfassung auf dieser Website</h2>\r\n<h3>Kontaktformular</h3>\r\nWenn Sie uns per Kontaktformular Anfragen zukommen lassen, werden Ihre Angaben aus dem Anfrageformular inklusive der von Ihnen dort angegebenen Kontaktdaten zwecks Bearbeitung der Anfrage und für den Fall von Anschlussfragen bei uns gespeichert. Diese Daten geben wir nicht ohne Ihre Einwilligung weiter.\r\n\r\nDie Verarbeitung dieser Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. b DSGVO, sofern Ihre Anfrage mit der Erfüllung eines Vertrags zusammenhängt oder zur Durchführung vorvertraglicher Maßnahmen erforderlich ist. In allen übrigen Fällen beruht die Verarbeitung auf unserem berechtigten Interesse an der effektiven Bearbeitung der an uns gerichteten Anfragen (Art. 6 Abs. 1 lit. f DSGVO) oder auf Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO) sofern diese abgefragt wurde; die Einwilligung ist jederzeit widerrufbar.\r\n\r\nDie von Ihnen im Kontaktformular eingegebenen Daten verbleiben bei uns, bis Sie uns zur Löschung auffordern, Ihre Einwilligung zur Speicherung widerrufen oder der Zweck für die Datenspeicherung entfällt (z. B. nach abgeschlossener Bearbeitung Ihrer Anfrage). Zwingende gesetzliche Bestimmungen – insbesondere Aufbewahrungsfristen – bleiben unberührt.\r\n<h2>5. Newsletter</h2>\r\n<h3>Newsletter­daten</h3>\r\nWenn Sie den auf der Website angebotenen Newsletter beziehen möchten, benötigen wir von Ihnen eine E-Mail-Adresse sowie Informationen, welche uns die Überprüfung gestatten, dass Sie der Inhaber der angegebenen E-Mail-Adresse sind und mit dem Empfang des Newsletters einverstanden sind. Weitere Daten werden nicht bzw. nur auf freiwilliger Basis erhoben. Diese Daten verwenden wir ausschließlich für den Versand der angeforderten Informationen und geben diese nicht an Dritte weiter.\r\n\r\nDie Verarbeitung der in das Newsletteranmeldeformular eingegebenen Daten erfolgt ausschließlich auf Grundlage Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO). Die erteilte Einwilligung zur Speicherung der Daten, der E-Mail-Adresse sowie deren Nutzung zum Versand des Newsletters können Sie jederzeit widerrufen, etwa über den „Austragen“-Link im Newsletter. Die Rechtmäßigkeit der bereits erfolgten Datenverarbeitungsvorgänge bleibt vom Widerruf unberührt.\r\n\r\nDie von Ihnen zum Zwecke des Newsletter-Bezugs bei uns hinterlegten Daten werden von uns bis zu Ihrer Austragung aus dem Newsletter bei uns bzw. dem Newsletterdiensteanbieter gespeichert und nach der Abbestellung des Newsletters oder nach Zweckfortfall aus der Newsletterverteilerliste gelöscht. Wir behalten uns vor, E-Mail-Adressen aus unserem Newsletterverteiler nach eigenem Ermessen im Rahmen unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO zu löschen oder zu sperren.\r\n\r\nDaten, die zu anderen Zwecken bei uns gespeichert wurden, bleiben hiervon unberührt.\r\n\r\nNach Ihrer Austragung aus der Newsletterverteilerliste wird Ihre E-Mail-Adresse bei uns bzw. dem Newsletterdiensteanbieter ggf. in einer Blacklist gespeichert, sofern dies zur Verhinderung künftiger Mailings erforderlich ist. Die Daten aus der Blacklist werden nur für diesen Zweck verwendet und nicht mit anderen Daten zusammengeführt. Dies dient sowohl Ihrem Interesse als auch unserem Interesse an der Einhaltung der gesetzlichen Vorgaben beim Versand von Newslettern (berechtigtes Interesse im Sinne des Art. 6 Abs. 1 lit. f DSGVO). Die Speicherung in der Blacklist ist zeitlich nicht befristet. <strong>Sie können der Speicherung widersprechen, sofern Ihre Interessen unser berechtigtes Interesse überwiegen.</strong>\r\n<h2>6. Plugins und Tools</h2>\r\n<h3>Google reCAPTCHA</h3>\r\nWir nutzen „Google reCAPTCHA“ (im Folgenden „reCAPTCHA“) auf dieser Website. Anbieter ist die Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Irland.\r\n\r\nMit reCAPTCHA soll überprüft werden, ob die Dateneingabe auf dieser Website (z. B. in einem Kontaktformular) durch einen Menschen oder durch ein automatisiertes Programm erfolgt. Hierzu analysiert reCAPTCHA das Verhalten des Websitebesuchers anhand verschiedener Merkmale. Diese Analyse beginnt automatisch, sobald der Websitebesucher die Website betritt. Zur Analyse wertet reCAPTCHA verschiedene Informationen aus (z. B. IP-Adresse, Verweildauer des Websitebesuchers auf der Website oder vom Nutzer getätigte Mausbewegungen). Die bei der Analyse erfassten Daten werden an Google weitergeleitet.\r\n\r\nDie reCAPTCHA-Analysen laufen vollständig im Hintergrund. Websitebesucher werden nicht darauf hingewiesen, dass eine Analyse stattfindet.\r\n\r\nDie Speicherung und Analyse der Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. f DSGVO. Der Websitebetreiber hat ein berechtigtes Interesse daran, seine Webangebote vor missbräuchlicher automatisierter Ausspähung und vor SPAM zu schützen. Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nWeitere Informationen zu Google reCAPTCHA entnehmen Sie den Google-Datenschutzbestimmungen und den Google Nutzungsbedingungen unter folgenden Links: <a href=\"https://policies.google.com/privacy?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/privacy?hl=de</a> und <a href=\"https://policies.google.com/terms?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/terms?hl=de</a>.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Datenschutzerklärung','','inherit','closed','closed','','3-revision-v1','','','2022-02-10 12:21:58','2022-02-10 11:21:58','',3,'https://unternehmen.wir-noi.org/?p=260',0,'revision','',0),(261,1,'2022-02-10 12:25:24','2022-02-10 11:25:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" equal_height_columns=\"no\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" parallax_speed=\"0.3\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" overlay_color=\"\" video_preview_image=\"\" border_color=\"\" border_style=\"solid\" padding_top=\"\" padding_bottom=\"\" padding_left=\"\" padding_right=\"\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_color=\"\" border_style=\"solid\" border_position=\"all\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" center_content=\"no\" last=\"true\" min_height=\"\" hover_type=\"none\" link=\"\" border_sizes_top=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_sizes_right=\"\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"\" fusion_font_variant_text_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h1>Datenschutz­erklärung</h1>\r\n<h2>1. Datenschutz auf einen Blick</h2>\r\n<h3>Allgemeine Hinweise</h3>\r\nDie folgenden Hinweise geben einen einfachen Überblick darüber, was mit Ihren personenbezogenen Daten passiert, wenn Sie diese Website besuchen. Personenbezogene Daten sind alle Daten, mit denen Sie persönlich identifiziert werden können. Ausführliche Informationen zum Thema Datenschutz entnehmen Sie unserer unter diesem Text aufgeführten Datenschutzerklärung.\r\n<h3>Datenerfassung auf dieser Website</h3>\r\n<h4>Wer ist verantwortlich für die Datenerfassung auf dieser Website?</h4>\r\nDie Datenverarbeitung auf dieser Website erfolgt durch den Websitebetreiber. Dessen Kontaktdaten können Sie dem Abschnitt „Hinweis zur Verantwortlichen Stelle“ in dieser Datenschutzerklärung entnehmen.\r\n<h4>Wie erfassen wir Ihre Daten?</h4>\r\nIhre Daten werden zum einen dadurch erhoben, dass Sie uns diese mitteilen. Hierbei kann es sich z. B. um Daten handeln, die Sie in ein Kontaktformular eingeben.\r\n\r\nAndere Daten werden automatisch oder nach Ihrer Einwilligung beim Besuch der Website durch unsere IT-Systeme erfasst. Das sind vor allem technische Daten (z. B. Internetbrowser, Betriebssystem oder Uhrzeit des Seitenaufrufs). Die Erfassung dieser Daten erfolgt automatisch, sobald Sie diese Website betreten.\r\n<h4>Wofür nutzen wir Ihre Daten?</h4>\r\nEin Teil der Daten wird erhoben, um eine fehlerfreie Bereitstellung der Website zu gewährleisten. Andere Daten können zur Analyse Ihres Nutzerverhaltens verwendet werden.\r\n<h4>Welche Rechte haben Sie bezüglich Ihrer Daten?</h4>\r\nSie haben jederzeit das Recht, unentgeltlich Auskunft über Herkunft, Empfänger und Zweck Ihrer gespeicherten personenbezogenen Daten zu erhalten. Sie haben außerdem ein Recht, die Berichtigung oder Löschung dieser Daten zu verlangen. Wenn Sie eine Einwilligung zur Datenverarbeitung erteilt haben, können Sie diese Einwilligung jederzeit für die Zukunft widerrufen. Außerdem haben Sie das Recht, unter bestimmten Umständen die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Des Weiteren steht Ihnen ein Beschwerderecht bei der zuständigen Aufsichtsbehörde zu.\r\n\r\nHierzu sowie zu weiteren Fragen zum Thema Datenschutz können Sie sich jederzeit an uns wenden.\r\n<h2>2. Hosting</h2>\r\n<h3>Externes Hosting</h3>\r\nDiese Website wird bei einem externen Dienstleister gehostet (Hoster). Die personenbezogenen Daten, die auf dieser Website erfasst werden, werden auf den Servern des Hosters gespeichert. Hierbei kann es sich v. a. um IP-Adressen, Kontaktanfragen, Meta- und Kommunikationsdaten, Vertragsdaten, Kontaktdaten, Namen, Websitezugriffe und sonstige Daten, die über eine Website generiert werden, handeln.\r\n\r\nDer Einsatz des Hosters erfolgt zum Zwecke der Vertragserfüllung gegenüber unseren potenziellen und bestehenden Kunden (Art. 6 Abs. 1 lit. b DSGVO) und im Interesse einer sicheren, schnellen und effizienten Bereitstellung unseres Online-Angebots durch einen professionellen Anbieter (Art. 6 Abs. 1 lit. f DSGVO). Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nUnser Hoster wird Ihre Daten nur insoweit verarbeiten, wie dies zur Erfüllung seiner Leistungspflichten erforderlich ist und unsere Weisungen in Bezug auf diese Daten befolgen.\r\n\r\nWir setzen folgenden Hoster ein:\r\n\r\ninfeos GmbH\r\nLuigi-Negrelli-Straße 15\r\n39100 Bozen\r\n<h4>Auftragsverarbeitung</h4>\r\nWir haben einen Vertrag über Auftragsverarbeitung (AVV) mit dem oben genannten Anbieter geschlossen. Hierbei handelt es sich um einen datenschutzrechtlich vorgeschriebenen Vertrag, der gewährleistet, dass dieser die personenbezogenen Daten unserer Websitebesucher nur nach unseren Weisungen und unter Einhaltung der DSGVO verarbeitet.\r\n<h2>3. Allgemeine Hinweise und Pflicht­informationen</h2>\r\n<h3>Datenschutz</h3>\r\nDie Betreiber dieser Seiten nehmen den Schutz Ihrer persönlichen Daten sehr ernst. Wir behandeln Ihre personenbezogenen Daten vertraulich und entsprechend den gesetzlichen Datenschutzvorschriften sowie dieser Datenschutzerklärung.\r\n\r\nWenn Sie diese Website benutzen, werden verschiedene personenbezogene Daten erhoben. Personenbezogene Daten sind Daten, mit denen Sie persönlich identifiziert werden können. Die vorliegende Datenschutzerklärung erläutert, welche Daten wir erheben und wofür wir sie nutzen. Sie erläutert auch, wie und zu welchem Zweck das geschieht.\r\n\r\nWir weisen darauf hin, dass die Datenübertragung im Internet (z. B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich.\r\n<h3>Hinweis zur verantwortlichen Stelle</h3>\r\nDie verantwortliche Stelle für die Datenverarbeitung auf dieser Website ist:\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\nE-Mail: info@wir-noi.com\r\n\r\nVerantwortliche Stelle ist die natürliche oder juristische Person, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der Verarbeitung von personenbezogenen Daten (z. B. Namen, E-Mail-Adressen o. Ä.) entscheidet.\r\n<h3>Speicherdauer</h3>\r\nSoweit innerhalb dieser Datenschutzerklärung keine speziellere Speicherdauer genannt wurde, verbleiben Ihre personenbezogenen Daten bei uns, bis der Zweck für die Datenverarbeitung entfällt. Wenn Sie ein berechtigtes Löschersuchen geltend machen oder eine Einwilligung zur Datenverarbeitung widerrufen, werden Ihre Daten gelöscht, sofern wir keine anderen rechtlich zulässigen Gründe für die Speicherung Ihrer personenbezogenen Daten haben (z. B. steuer- oder handelsrechtliche Aufbewahrungsfristen); im letztgenannten Fall erfolgt die Löschung nach Fortfall dieser Gründe.\r\n<h3>Allgemeine Hinweise zu den Rechtsgrundlagen der Datenverarbeitung auf dieser Website</h3>\r\nSofern Sie in die Datenverarbeitung eingewilligt haben, verarbeiten wir Ihre personenbezogenen Daten auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO bzw. Art. 9 Abs. 2 lit. a DSGVO, sofern besondere Datenkategorien nach Art. 9 Abs. 1 DSGVO verarbeitet werden. Im Falle einer ausdrücklichen Einwilligung in die Übertragung personenbezogener Daten in Drittstaaten erfolgt die Datenverarbeitung außerdem auf Grundlage von Art. 49 Abs. 1 lit. a DSGVO. Sofern Sie in die Speicherung von Cookies oder in den Zugriff auf Informationen in Ihr Endgerät (z. B. via Device-Fingerprinting) eingewilligt haben, erfolgt die Datenverarbeitung zusätzlich auf Grundlage von § 25 Abs. 1 TTDSG. Die Einwilligung ist jederzeit widerrufbar. Sind Ihre Daten zur Vertragserfüllung oder zur Durchführung vorvertraglicher Maßnahmen erforderlich, verarbeiten wir Ihre Daten auf Grundlage des Art. 6 Abs. 1 lit. b DSGVO. Des Weiteren verarbeiten wir Ihre Daten, sofern diese zur Erfüllung einer rechtlichen Verpflichtung erforderlich sind auf Grundlage von Art. 6 Abs. 1 lit. c DSGVO. Die Datenverarbeitung kann ferner auf Grundlage unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO erfolgen. Über die jeweils im Einzelfall einschlägigen Rechtsgrundlagen wird in den folgenden Absätzen dieser Datenschutzerklärung informiert.\r\n<h3>Widerruf Ihrer Einwilligung zur Datenverarbeitung</h3>\r\nViele Datenverarbeitungsvorgänge sind nur mit Ihrer ausdrücklichen Einwilligung möglich. Sie können eine bereits erteilte Einwilligung jederzeit widerrufen. Die Rechtmäßigkeit der bis zum Widerruf erfolgten Datenverarbeitung bleibt vom Widerruf unberührt.\r\n<h3>Widerspruchsrecht gegen die Datenerhebung in besonderen Fällen sowie gegen Direktwerbung (Art. 21 DSGVO)</h3>\r\nWENN DIE DATENVERARBEITUNG AUF GRUNDLAGE VON ART. 6 ABS. 1 LIT. E ODER F DSGVO ERFOLGT, HABEN SIE JEDERZEIT DAS RECHT, AUS GRÜNDEN, DIE SICH AUS IHRER BESONDEREN SITUATION ERGEBEN, GEGEN DIE VERARBEITUNG IHRER PERSONENBEZOGENEN DATEN WIDERSPRUCH EINZULEGEN; DIES GILT AUCH FÜR EIN AUF DIESE BESTIMMUNGEN GESTÜTZTES PROFILING. DIE JEWEILIGE RECHTSGRUNDLAGE, AUF DENEN EINE VERARBEITUNG BERUHT, ENTNEHMEN SIE DIESER DATENSCHUTZERKLÄRUNG. WENN SIE WIDERSPRUCH EINLEGEN, WERDEN WIR IHRE BETROFFENEN PERSONENBEZOGENEN DATEN NICHT MEHR VERARBEITEN, ES SEI DENN, WIR KÖNNEN ZWINGENDE SCHUTZWÜRDIGE GRÜNDE FÜR DIE VERARBEITUNG NACHWEISEN, DIE IHRE INTERESSEN, RECHTE UND FREIHEITEN ÜBERWIEGEN ODER DIE VERARBEITUNG DIENT DER GELTENDMACHUNG, AUSÜBUNG ODER VERTEIDIGUNG VON RECHTSANSPRÜCHEN (WIDERSPRUCH NACH ART. 21 ABS. 1 DSGVO).\r\n\r\nWERDEN IHRE PERSONENBEZOGENEN DATEN VERARBEITET, UM DIREKTWERBUNG ZU BETREIBEN, SO HABEN SIE DAS RECHT, JEDERZEIT WIDERSPRUCH GEGEN DIE VERARBEITUNG SIE BETREFFENDER PERSONENBEZOGENER DATEN ZUM ZWECKE DERARTIGER WERBUNG EINZULEGEN; DIES GILT AUCH FÜR DAS PROFILING, SOWEIT ES MIT SOLCHER DIREKTWERBUNG IN VERBINDUNG STEHT. WENN SIE WIDERSPRECHEN, WERDEN IHRE PERSONENBEZOGENEN DATEN ANSCHLIESSEND NICHT MEHR ZUM ZWECKE DER DIREKTWERBUNG VERWENDET (WIDERSPRUCH NACH ART. 21 ABS. 2 DSGVO).\r\n<h3>Beschwerde­recht bei der zuständigen Aufsichts­behörde</h3>\r\nIm Falle von Verstößen gegen die DSGVO steht den Betroffenen ein Beschwerderecht bei einer Aufsichtsbehörde, insbesondere in dem Mitgliedstaat ihres gewöhnlichen Aufenthalts, ihres Arbeitsplatzes oder des Orts des mutmaßlichen Verstoßes zu. Das Beschwerderecht besteht unbeschadet anderweitiger verwaltungsrechtlicher oder gerichtlicher Rechtsbehelfe.\r\n<h3>Recht auf Daten­übertrag­barkeit</h3>\r\nSie haben das Recht, Daten, die wir auf Grundlage Ihrer Einwilligung oder in Erfüllung eines Vertrags automatisiert verarbeiten, an sich oder an einen Dritten in einem gängigen, maschinenlesbaren Format aushändigen zu lassen. Sofern Sie die direkte Übertragung der Daten an einen anderen Verantwortlichen verlangen, erfolgt dies nur, soweit es technisch machbar ist.\r\n<h3>SSL- bzw. TLS-Verschlüsselung</h3>\r\nDiese Seite nutzt aus Sicherheitsgründen und zum Schutz der Übertragung vertraulicher Inhalte, wie zum Beispiel Bestellungen oder Anfragen, die Sie an uns als Seitenbetreiber senden, eine SSL- bzw. TLS-Verschlüsselung. Eine verschlüsselte Verbindung erkennen Sie daran, dass die Adresszeile des Browsers von „http://“ auf „https://“ wechselt und an dem Schloss-Symbol in Ihrer Browserzeile.\r\n\r\nWenn die SSL- bzw. TLS-Verschlüsselung aktiviert ist, können die Daten, die Sie an uns übermitteln, nicht von Dritten mitgelesen werden.\r\n<h3>Auskunft, Löschung und Berichtigung</h3>\r\nSie haben im Rahmen der geltenden gesetzlichen Bestimmungen jederzeit das Recht auf unentgeltliche Auskunft über Ihre gespeicherten personenbezogenen Daten, deren Herkunft und Empfänger und den Zweck der Datenverarbeitung und ggf. ein Recht auf Berichtigung oder Löschung dieser Daten. Hierzu sowie zu weiteren Fragen zum Thema personenbezogene Daten können Sie sich jederzeit an uns wenden.\r\n<h3>Recht auf Einschränkung der Verarbeitung</h3>\r\nSie haben das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Hierzu können Sie sich jederzeit an uns wenden. Das Recht auf Einschränkung der Verarbeitung besteht in folgenden Fällen:\r\n<ul>\r\n        <li>Wenn Sie die Richtigkeit Ihrer bei uns gespeicherten personenbezogenen Daten bestreiten, benötigen wir in der Regel Zeit, um dies zu überprüfen. Für die Dauer der Prüfung haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n       <li>Wenn die Verarbeitung Ihrer personenbezogenen Daten unrechtmäßig geschah/geschieht, können Sie statt der Löschung die Einschränkung der Datenverarbeitung verlangen.</li>\r\n  <li>Wenn wir Ihre personenbezogenen Daten nicht mehr benötigen, Sie sie jedoch zur Ausübung, Verteidigung oder Geltendmachung von Rechtsansprüchen benötigen, haben Sie das Recht, statt der Löschung die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n     <li>Wenn Sie einen Widerspruch nach Art. 21 Abs. 1 DSGVO eingelegt haben, muss eine Abwägung zwischen Ihren und unseren Interessen vorgenommen werden. Solange noch nicht feststeht, wessen Interessen überwiegen, haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n</ul>\r\nWenn Sie die Verarbeitung Ihrer personenbezogenen Daten eingeschränkt haben, dürfen diese Daten – von ihrer Speicherung abgesehen – nur mit Ihrer Einwilligung oder zur Geltendmachung, Ausübung oder Verteidigung von Rechtsansprüchen oder zum Schutz der Rechte einer anderen natürlichen oder juristischen Person oder aus Gründen eines wichtigen öffentlichen Interesses der Europäischen Union oder eines Mitgliedstaats verarbeitet werden.\r\n<h3>Widerspruch gegen Werbe-E-Mails</h3>\r\nDer Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten zur Übersendung von nicht ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit widersprochen. Die Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-E-Mails, vor.\r\n<h2>4. Datenerfassung auf dieser Website</h2>\r\n<h3>Kontaktformular</h3>\r\nWenn Sie uns per Kontaktformular Anfragen zukommen lassen, werden Ihre Angaben aus dem Anfrageformular inklusive der von Ihnen dort angegebenen Kontaktdaten zwecks Bearbeitung der Anfrage und für den Fall von Anschlussfragen bei uns gespeichert. Diese Daten geben wir nicht ohne Ihre Einwilligung weiter.\r\n\r\nDie Verarbeitung dieser Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. b DSGVO, sofern Ihre Anfrage mit der Erfüllung eines Vertrags zusammenhängt oder zur Durchführung vorvertraglicher Maßnahmen erforderlich ist. In allen übrigen Fällen beruht die Verarbeitung auf unserem berechtigten Interesse an der effektiven Bearbeitung der an uns gerichteten Anfragen (Art. 6 Abs. 1 lit. f DSGVO) oder auf Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO) sofern diese abgefragt wurde; die Einwilligung ist jederzeit widerrufbar.\r\n\r\nDie von Ihnen im Kontaktformular eingegebenen Daten verbleiben bei uns, bis Sie uns zur Löschung auffordern, Ihre Einwilligung zur Speicherung widerrufen oder der Zweck für die Datenspeicherung entfällt (z. B. nach abgeschlossener Bearbeitung Ihrer Anfrage). Zwingende gesetzliche Bestimmungen – insbesondere Aufbewahrungsfristen – bleiben unberührt.\r\n<h2>5. Newsletter</h2>\r\n<h3>Newsletter­daten</h3>\r\nWenn Sie den auf der Website angebotenen Newsletter beziehen möchten, benötigen wir von Ihnen eine E-Mail-Adresse sowie Informationen, welche uns die Überprüfung gestatten, dass Sie der Inhaber der angegebenen E-Mail-Adresse sind und mit dem Empfang des Newsletters einverstanden sind. Weitere Daten werden nicht bzw. nur auf freiwilliger Basis erhoben. Diese Daten verwenden wir ausschließlich für den Versand der angeforderten Informationen und geben diese nicht an Dritte weiter.\r\n\r\nDie Verarbeitung der in das Newsletteranmeldeformular eingegebenen Daten erfolgt ausschließlich auf Grundlage Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO). Die erteilte Einwilligung zur Speicherung der Daten, der E-Mail-Adresse sowie deren Nutzung zum Versand des Newsletters können Sie jederzeit widerrufen, etwa über den „Austragen“-Link im Newsletter. Die Rechtmäßigkeit der bereits erfolgten Datenverarbeitungsvorgänge bleibt vom Widerruf unberührt.\r\n\r\nDie von Ihnen zum Zwecke des Newsletter-Bezugs bei uns hinterlegten Daten werden von uns bis zu Ihrer Austragung aus dem Newsletter bei uns bzw. dem Newsletterdiensteanbieter gespeichert und nach der Abbestellung des Newsletters oder nach Zweckfortfall aus der Newsletterverteilerliste gelöscht. Wir behalten uns vor, E-Mail-Adressen aus unserem Newsletterverteiler nach eigenem Ermessen im Rahmen unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO zu löschen oder zu sperren.\r\n\r\nDaten, die zu anderen Zwecken bei uns gespeichert wurden, bleiben hiervon unberührt.\r\n\r\nNach Ihrer Austragung aus der Newsletterverteilerliste wird Ihre E-Mail-Adresse bei uns bzw. dem Newsletterdiensteanbieter ggf. in einer Blacklist gespeichert, sofern dies zur Verhinderung künftiger Mailings erforderlich ist. Die Daten aus der Blacklist werden nur für diesen Zweck verwendet und nicht mit anderen Daten zusammengeführt. Dies dient sowohl Ihrem Interesse als auch unserem Interesse an der Einhaltung der gesetzlichen Vorgaben beim Versand von Newslettern (berechtigtes Interesse im Sinne des Art. 6 Abs. 1 lit. f DSGVO). Die Speicherung in der Blacklist ist zeitlich nicht befristet. <strong>Sie können der Speicherung widersprechen, sofern Ihre Interessen unser berechtigtes Interesse überwiegen.</strong>\r\n<h2>6. Plugins und Tools</h2>\r\n<h3>Google reCAPTCHA</h3>\r\nWir nutzen „Google reCAPTCHA“ (im Folgenden „reCAPTCHA“) auf dieser Website. Anbieter ist die Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Irland.\r\n\r\nMit reCAPTCHA soll überprüft werden, ob die Dateneingabe auf dieser Website (z. B. in einem Kontaktformular) durch einen Menschen oder durch ein automatisiertes Programm erfolgt. Hierzu analysiert reCAPTCHA das Verhalten des Websitebesuchers anhand verschiedener Merkmale. Diese Analyse beginnt automatisch, sobald der Websitebesucher die Website betritt. Zur Analyse wertet reCAPTCHA verschiedene Informationen aus (z. B. IP-Adresse, Verweildauer des Websitebesuchers auf der Website oder vom Nutzer getätigte Mausbewegungen). Die bei der Analyse erfassten Daten werden an Google weitergeleitet.\r\n\r\nDie reCAPTCHA-Analysen laufen vollständig im Hintergrund. Websitebesucher werden nicht darauf hingewiesen, dass eine Analyse stattfindet.\r\n\r\nDie Speicherung und Analyse der Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. f DSGVO. Der Websitebetreiber hat ein berechtigtes Interesse daran, seine Webangebote vor missbräuchlicher automatisierter Ausspähung und vor SPAM zu schützen. Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nWeitere Informationen zu Google reCAPTCHA entnehmen Sie den Google-Datenschutzbestimmungen und den Google Nutzungsbedingungen unter folgenden Links: <a href=\"https://policies.google.com/privacy?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/privacy?hl=de</a> und <a href=\"https://policies.google.com/terms?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/terms?hl=de</a>.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Datenschutzerklärung','','inherit','closed','closed','','3-revision-v1','','','2022-02-10 12:25:24','2022-02-10 11:25:24','',3,'https://unternehmen.wir-noi.org/?p=261',0,'revision','',0),(262,4,'2022-02-10 15:27:46','2022-02-10 14:27:46','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">PROJEKT</p>\r\n<p style=\"text-align: center;\"><strong>GESICHT</strong>\r\n<strong>ZEIGEN</strong></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 15:27:46','2022-02-10 14:27:46','',12,'https://unternehmen.wir-noi.org/?p=262',0,'revision','',0),(263,4,'2022-02-10 15:31:02','2022-02-10 14:31:02','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\">GESICHT\r\nZEIGEN</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 15:31:02','2022-02-10 14:31:02','',12,'https://unternehmen.wir-noi.org/?p=263',0,'revision','',0),(264,4,'2022-02-10 15:31:32','2022-02-10 14:31:32','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\">GESICHT\r\nZEIGEN</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 15:31:32','2022-02-10 14:31:32','',12,'https://unternehmen.wir-noi.org/?p=264',0,'revision','',0),(266,4,'2022-02-10 15:32:18','2022-02-10 14:32:18','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grau_9.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\">GESICHT\r\nZEIGEN</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 15:32:18','2022-02-10 14:32:18','',12,'https://unternehmen.wir-noi.org/?p=266',0,'revision','',0),(267,4,'2022-02-10 15:33:11','2022-02-10 14:33:11','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grau_9.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\">GESICHT\r\nZEIGEN</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 15:33:11','2022-02-10 14:33:11','',12,'https://unternehmen.wir-noi.org/?p=267',0,'revision','',0),(268,4,'2022-02-10 15:33:37','2022-02-10 14:33:37','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grau_9.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\">GESICHT\r\nZEIGEN</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 15:33:37','2022-02-10 14:33:37','',12,'https://unternehmen.wir-noi.org/?p=268',0,'revision','',0),(269,4,'2022-02-10 15:34:39','2022-02-10 14:34:39','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#c4c4c4\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"42px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color4)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Jetzt Registieren</p>\r\n[/fusion_text][contact-form-7 id=\"106\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#c4c4c4\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color4)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Jetzt Registieren</p>\r\n[/fusion_text][contact-form-7 id=\"106\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-10 15:34:39','2022-02-10 14:34:39','',63,'https://unternehmen.wir-noi.org/?p=269',0,'revision','',0),(270,4,'2022-02-10 15:40:27','2022-02-10 14:40:27','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"\" fusion_font_variant_text_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h1>Impressum</h1>\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n<h2>Kontakt</h2>\r\nE-Mail: info@wir-noi.com\r\n<h2>Redaktionell verantwortlich</h2>\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n<h2>EU-Streitschlichtung</h2>\r\nDie Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit: <a href=\"https://ec.europa.eu/consumers/odr/\" target=\"_blank\" rel=\"noopener noreferrer\">https://ec.europa.eu/consumers/odr/</a>.\r\nUnsere E-Mail-Adresse finden Sie oben im Impressum.\r\n<h2>Verbraucher­streit­beilegung/Universal­schlichtungs­stelle</h2>\r\nWir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"\" fusion_font_variant_text_font=\"\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\n<strong>Impressum</strong>\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\n<strong>Kontakt</strong>\r\n\r\nE-Mail: info@wir-noi.com\r\n\r\n<strong>Redaktionell verantwortlich</strong>\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\n<strong>EU-Streitschlichtung</strong>\r\n\r\nDie Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit: <a href=\"https://ec.europa.eu/consumers/odr/\" target=\"_blank\" rel=\"noopener noreferrer\">https://ec.europa.eu/consumers/odr/</a>.\r\nUnsere E-Mail-Adresse finden Sie oben im Impressum.\r\n\r\n<strong>Verbraucher­streit­beilegung/ Universal­schlichtungs­stelle</strong>\r\n\r\nWir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Impressum','','inherit','closed','closed','','76-revision-v1','','','2022-02-10 15:40:27','2022-02-10 14:40:27','',76,'https://unternehmen.wir-noi.org/?p=270',0,'revision','',0),(271,4,'2022-02-10 15:41:25','2022-02-10 14:41:25','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grau_9.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\">GESICHT\r\nZEIGEN</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 15:41:25','2022-02-10 14:41:25','',12,'https://unternehmen.wir-noi.org/?p=271',0,'revision','',0),(272,4,'2022-02-10 15:46:27','2022-02-10 14:46:27','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_color=\"\" border_style=\"solid\" border_position=\"all\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" center_content=\"no\" last=\"true\" min_height=\"\" hover_type=\"none\" link=\"\" border_sizes_top=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_sizes_right=\"\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"\" fusion_font_variant_text_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h1>Datenschutz­erklärung</h1>\r\n<h2>1. Datenschutz auf einen Blick</h2>\r\n<h3>Allgemeine Hinweise</h3>\r\nDie folgenden Hinweise geben einen einfachen Überblick darüber, was mit Ihren personenbezogenen Daten passiert, wenn Sie diese Website besuchen. Personenbezogene Daten sind alle Daten, mit denen Sie persönlich identifiziert werden können. Ausführliche Informationen zum Thema Datenschutz entnehmen Sie unserer unter diesem Text aufgeführten Datenschutzerklärung.\r\n<h3>Datenerfassung auf dieser Website</h3>\r\n<h4>Wer ist verantwortlich für die Datenerfassung auf dieser Website?</h4>\r\nDie Datenverarbeitung auf dieser Website erfolgt durch den Websitebetreiber. Dessen Kontaktdaten können Sie dem Abschnitt „Hinweis zur Verantwortlichen Stelle“ in dieser Datenschutzerklärung entnehmen.\r\n<h4>Wie erfassen wir Ihre Daten?</h4>\r\nIhre Daten werden zum einen dadurch erhoben, dass Sie uns diese mitteilen. Hierbei kann es sich z. B. um Daten handeln, die Sie in ein Kontaktformular eingeben.\r\n\r\nAndere Daten werden automatisch oder nach Ihrer Einwilligung beim Besuch der Website durch unsere IT-Systeme erfasst. Das sind vor allem technische Daten (z. B. Internetbrowser, Betriebssystem oder Uhrzeit des Seitenaufrufs). Die Erfassung dieser Daten erfolgt automatisch, sobald Sie diese Website betreten.\r\n<h4>Wofür nutzen wir Ihre Daten?</h4>\r\nEin Teil der Daten wird erhoben, um eine fehlerfreie Bereitstellung der Website zu gewährleisten. Andere Daten können zur Analyse Ihres Nutzerverhaltens verwendet werden.\r\n<h4>Welche Rechte haben Sie bezüglich Ihrer Daten?</h4>\r\nSie haben jederzeit das Recht, unentgeltlich Auskunft über Herkunft, Empfänger und Zweck Ihrer gespeicherten personenbezogenen Daten zu erhalten. Sie haben außerdem ein Recht, die Berichtigung oder Löschung dieser Daten zu verlangen. Wenn Sie eine Einwilligung zur Datenverarbeitung erteilt haben, können Sie diese Einwilligung jederzeit für die Zukunft widerrufen. Außerdem haben Sie das Recht, unter bestimmten Umständen die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Des Weiteren steht Ihnen ein Beschwerderecht bei der zuständigen Aufsichtsbehörde zu.\r\n\r\nHierzu sowie zu weiteren Fragen zum Thema Datenschutz können Sie sich jederzeit an uns wenden.\r\n<h2>2. Hosting</h2>\r\n<h3>Externes Hosting</h3>\r\nDiese Website wird bei einem externen Dienstleister gehostet (Hoster). Die personenbezogenen Daten, die auf dieser Website erfasst werden, werden auf den Servern des Hosters gespeichert. Hierbei kann es sich v. a. um IP-Adressen, Kontaktanfragen, Meta- und Kommunikationsdaten, Vertragsdaten, Kontaktdaten, Namen, Websitezugriffe und sonstige Daten, die über eine Website generiert werden, handeln.\r\n\r\nDer Einsatz des Hosters erfolgt zum Zwecke der Vertragserfüllung gegenüber unseren potenziellen und bestehenden Kunden (Art. 6 Abs. 1 lit. b DSGVO) und im Interesse einer sicheren, schnellen und effizienten Bereitstellung unseres Online-Angebots durch einen professionellen Anbieter (Art. 6 Abs. 1 lit. f DSGVO). Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nUnser Hoster wird Ihre Daten nur insoweit verarbeiten, wie dies zur Erfüllung seiner Leistungspflichten erforderlich ist und unsere Weisungen in Bezug auf diese Daten befolgen.\r\n\r\nWir setzen folgenden Hoster ein:\r\n\r\ninfeos GmbH\r\nLuigi-Negrelli-Straße 15\r\n39100 Bozen\r\n<h4>Auftragsverarbeitung</h4>\r\nWir haben einen Vertrag über Auftragsverarbeitung (AVV) mit dem oben genannten Anbieter geschlossen. Hierbei handelt es sich um einen datenschutzrechtlich vorgeschriebenen Vertrag, der gewährleistet, dass dieser die personenbezogenen Daten unserer Websitebesucher nur nach unseren Weisungen und unter Einhaltung der DSGVO verarbeitet.\r\n<h2>3. Allgemeine Hinweise und Pflicht­informationen</h2>\r\n<h3>Datenschutz</h3>\r\nDie Betreiber dieser Seiten nehmen den Schutz Ihrer persönlichen Daten sehr ernst. Wir behandeln Ihre personenbezogenen Daten vertraulich und entsprechend den gesetzlichen Datenschutzvorschriften sowie dieser Datenschutzerklärung.\r\n\r\nWenn Sie diese Website benutzen, werden verschiedene personenbezogene Daten erhoben. Personenbezogene Daten sind Daten, mit denen Sie persönlich identifiziert werden können. Die vorliegende Datenschutzerklärung erläutert, welche Daten wir erheben und wofür wir sie nutzen. Sie erläutert auch, wie und zu welchem Zweck das geschieht.\r\n\r\nWir weisen darauf hin, dass die Datenübertragung im Internet (z. B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich.\r\n<h3>Hinweis zur verantwortlichen Stelle</h3>\r\nDie verantwortliche Stelle für die Datenverarbeitung auf dieser Website ist:\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\nE-Mail: info@wir-noi.com\r\n\r\nVerantwortliche Stelle ist die natürliche oder juristische Person, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der Verarbeitung von personenbezogenen Daten (z. B. Namen, E-Mail-Adressen o. Ä.) entscheidet.\r\n<h3>Speicherdauer</h3>\r\nSoweit innerhalb dieser Datenschutzerklärung keine speziellere Speicherdauer genannt wurde, verbleiben Ihre personenbezogenen Daten bei uns, bis der Zweck für die Datenverarbeitung entfällt. Wenn Sie ein berechtigtes Löschersuchen geltend machen oder eine Einwilligung zur Datenverarbeitung widerrufen, werden Ihre Daten gelöscht, sofern wir keine anderen rechtlich zulässigen Gründe für die Speicherung Ihrer personenbezogenen Daten haben (z. B. steuer- oder handelsrechtliche Aufbewahrungsfristen); im letztgenannten Fall erfolgt die Löschung nach Fortfall dieser Gründe.\r\n<h3>Allgemeine Hinweise zu den Rechtsgrundlagen der Datenverarbeitung auf dieser Website</h3>\r\nSofern Sie in die Datenverarbeitung eingewilligt haben, verarbeiten wir Ihre personenbezogenen Daten auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO bzw. Art. 9 Abs. 2 lit. a DSGVO, sofern besondere Datenkategorien nach Art. 9 Abs. 1 DSGVO verarbeitet werden. Im Falle einer ausdrücklichen Einwilligung in die Übertragung personenbezogener Daten in Drittstaaten erfolgt die Datenverarbeitung außerdem auf Grundlage von Art. 49 Abs. 1 lit. a DSGVO. Sofern Sie in die Speicherung von Cookies oder in den Zugriff auf Informationen in Ihr Endgerät (z. B. via Device-Fingerprinting) eingewilligt haben, erfolgt die Datenverarbeitung zusätzlich auf Grundlage von § 25 Abs. 1 TTDSG. Die Einwilligung ist jederzeit widerrufbar. Sind Ihre Daten zur Vertragserfüllung oder zur Durchführung vorvertraglicher Maßnahmen erforderlich, verarbeiten wir Ihre Daten auf Grundlage des Art. 6 Abs. 1 lit. b DSGVO. Des Weiteren verarbeiten wir Ihre Daten, sofern diese zur Erfüllung einer rechtlichen Verpflichtung erforderlich sind auf Grundlage von Art. 6 Abs. 1 lit. c DSGVO. Die Datenverarbeitung kann ferner auf Grundlage unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO erfolgen. Über die jeweils im Einzelfall einschlägigen Rechtsgrundlagen wird in den folgenden Absätzen dieser Datenschutzerklärung informiert.\r\n<h3>Widerruf Ihrer Einwilligung zur Datenverarbeitung</h3>\r\nViele Datenverarbeitungsvorgänge sind nur mit Ihrer ausdrücklichen Einwilligung möglich. Sie können eine bereits erteilte Einwilligung jederzeit widerrufen. Die Rechtmäßigkeit der bis zum Widerruf erfolgten Datenverarbeitung bleibt vom Widerruf unberührt.\r\n<h3>Widerspruchsrecht gegen die Datenerhebung in besonderen Fällen sowie gegen Direktwerbung (Art. 21 DSGVO)</h3>\r\nWENN DIE DATENVERARBEITUNG AUF GRUNDLAGE VON ART. 6 ABS. 1 LIT. E ODER F DSGVO ERFOLGT, HABEN SIE JEDERZEIT DAS RECHT, AUS GRÜNDEN, DIE SICH AUS IHRER BESONDEREN SITUATION ERGEBEN, GEGEN DIE VERARBEITUNG IHRER PERSONENBEZOGENEN DATEN WIDERSPRUCH EINZULEGEN; DIES GILT AUCH FÜR EIN AUF DIESE BESTIMMUNGEN GESTÜTZTES PROFILING. DIE JEWEILIGE RECHTSGRUNDLAGE, AUF DENEN EINE VERARBEITUNG BERUHT, ENTNEHMEN SIE DIESER DATENSCHUTZERKLÄRUNG. WENN SIE WIDERSPRUCH EINLEGEN, WERDEN WIR IHRE BETROFFENEN PERSONENBEZOGENEN DATEN NICHT MEHR VERARBEITEN, ES SEI DENN, WIR KÖNNEN ZWINGENDE SCHUTZWÜRDIGE GRÜNDE FÜR DIE VERARBEITUNG NACHWEISEN, DIE IHRE INTERESSEN, RECHTE UND FREIHEITEN ÜBERWIEGEN ODER DIE VERARBEITUNG DIENT DER GELTENDMACHUNG, AUSÜBUNG ODER VERTEIDIGUNG VON RECHTSANSPRÜCHEN (WIDERSPRUCH NACH ART. 21 ABS. 1 DSGVO).\r\n\r\nWERDEN IHRE PERSONENBEZOGENEN DATEN VERARBEITET, UM DIREKTWERBUNG ZU BETREIBEN, SO HABEN SIE DAS RECHT, JEDERZEIT WIDERSPRUCH GEGEN DIE VERARBEITUNG SIE BETREFFENDER PERSONENBEZOGENER DATEN ZUM ZWECKE DERARTIGER WERBUNG EINZULEGEN; DIES GILT AUCH FÜR DAS PROFILING, SOWEIT ES MIT SOLCHER DIREKTWERBUNG IN VERBINDUNG STEHT. WENN SIE WIDERSPRECHEN, WERDEN IHRE PERSONENBEZOGENEN DATEN ANSCHLIESSEND NICHT MEHR ZUM ZWECKE DER DIREKTWERBUNG VERWENDET (WIDERSPRUCH NACH ART. 21 ABS. 2 DSGVO).\r\n<h3>Beschwerde­recht bei der zuständigen Aufsichts­behörde</h3>\r\nIm Falle von Verstößen gegen die DSGVO steht den Betroffenen ein Beschwerderecht bei einer Aufsichtsbehörde, insbesondere in dem Mitgliedstaat ihres gewöhnlichen Aufenthalts, ihres Arbeitsplatzes oder des Orts des mutmaßlichen Verstoßes zu. Das Beschwerderecht besteht unbeschadet anderweitiger verwaltungsrechtlicher oder gerichtlicher Rechtsbehelfe.\r\n<h3>Recht auf Daten­übertrag­barkeit</h3>\r\nSie haben das Recht, Daten, die wir auf Grundlage Ihrer Einwilligung oder in Erfüllung eines Vertrags automatisiert verarbeiten, an sich oder an einen Dritten in einem gängigen, maschinenlesbaren Format aushändigen zu lassen. Sofern Sie die direkte Übertragung der Daten an einen anderen Verantwortlichen verlangen, erfolgt dies nur, soweit es technisch machbar ist.\r\n<h3>SSL- bzw. TLS-Verschlüsselung</h3>\r\nDiese Seite nutzt aus Sicherheitsgründen und zum Schutz der Übertragung vertraulicher Inhalte, wie zum Beispiel Bestellungen oder Anfragen, die Sie an uns als Seitenbetreiber senden, eine SSL- bzw. TLS-Verschlüsselung. Eine verschlüsselte Verbindung erkennen Sie daran, dass die Adresszeile des Browsers von „http://“ auf „https://“ wechselt und an dem Schloss-Symbol in Ihrer Browserzeile.\r\n\r\nWenn die SSL- bzw. TLS-Verschlüsselung aktiviert ist, können die Daten, die Sie an uns übermitteln, nicht von Dritten mitgelesen werden.\r\n<h3>Auskunft, Löschung und Berichtigung</h3>\r\nSie haben im Rahmen der geltenden gesetzlichen Bestimmungen jederzeit das Recht auf unentgeltliche Auskunft über Ihre gespeicherten personenbezogenen Daten, deren Herkunft und Empfänger und den Zweck der Datenverarbeitung und ggf. ein Recht auf Berichtigung oder Löschung dieser Daten. Hierzu sowie zu weiteren Fragen zum Thema personenbezogene Daten können Sie sich jederzeit an uns wenden.\r\n<h3>Recht auf Einschränkung der Verarbeitung</h3>\r\nSie haben das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Hierzu können Sie sich jederzeit an uns wenden. Das Recht auf Einschränkung der Verarbeitung besteht in folgenden Fällen:\r\n<ul>\r\n        <li>Wenn Sie die Richtigkeit Ihrer bei uns gespeicherten personenbezogenen Daten bestreiten, benötigen wir in der Regel Zeit, um dies zu überprüfen. Für die Dauer der Prüfung haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n       <li>Wenn die Verarbeitung Ihrer personenbezogenen Daten unrechtmäßig geschah/geschieht, können Sie statt der Löschung die Einschränkung der Datenverarbeitung verlangen.</li>\r\n  <li>Wenn wir Ihre personenbezogenen Daten nicht mehr benötigen, Sie sie jedoch zur Ausübung, Verteidigung oder Geltendmachung von Rechtsansprüchen benötigen, haben Sie das Recht, statt der Löschung die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n     <li>Wenn Sie einen Widerspruch nach Art. 21 Abs. 1 DSGVO eingelegt haben, muss eine Abwägung zwischen Ihren und unseren Interessen vorgenommen werden. Solange noch nicht feststeht, wessen Interessen überwiegen, haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n</ul>\r\nWenn Sie die Verarbeitung Ihrer personenbezogenen Daten eingeschränkt haben, dürfen diese Daten – von ihrer Speicherung abgesehen – nur mit Ihrer Einwilligung oder zur Geltendmachung, Ausübung oder Verteidigung von Rechtsansprüchen oder zum Schutz der Rechte einer anderen natürlichen oder juristischen Person oder aus Gründen eines wichtigen öffentlichen Interesses der Europäischen Union oder eines Mitgliedstaats verarbeitet werden.\r\n<h3>Widerspruch gegen Werbe-E-Mails</h3>\r\nDer Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten zur Übersendung von nicht ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit widersprochen. Die Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-E-Mails, vor.\r\n<h2>4. Datenerfassung auf dieser Website</h2>\r\n<h3>Kontaktformular</h3>\r\nWenn Sie uns per Kontaktformular Anfragen zukommen lassen, werden Ihre Angaben aus dem Anfrageformular inklusive der von Ihnen dort angegebenen Kontaktdaten zwecks Bearbeitung der Anfrage und für den Fall von Anschlussfragen bei uns gespeichert. Diese Daten geben wir nicht ohne Ihre Einwilligung weiter.\r\n\r\nDie Verarbeitung dieser Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. b DSGVO, sofern Ihre Anfrage mit der Erfüllung eines Vertrags zusammenhängt oder zur Durchführung vorvertraglicher Maßnahmen erforderlich ist. In allen übrigen Fällen beruht die Verarbeitung auf unserem berechtigten Interesse an der effektiven Bearbeitung der an uns gerichteten Anfragen (Art. 6 Abs. 1 lit. f DSGVO) oder auf Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO) sofern diese abgefragt wurde; die Einwilligung ist jederzeit widerrufbar.\r\n\r\nDie von Ihnen im Kontaktformular eingegebenen Daten verbleiben bei uns, bis Sie uns zur Löschung auffordern, Ihre Einwilligung zur Speicherung widerrufen oder der Zweck für die Datenspeicherung entfällt (z. B. nach abgeschlossener Bearbeitung Ihrer Anfrage). Zwingende gesetzliche Bestimmungen – insbesondere Aufbewahrungsfristen – bleiben unberührt.\r\n<h2>5. Newsletter</h2>\r\n<h3>Newsletter­daten</h3>\r\nWenn Sie den auf der Website angebotenen Newsletter beziehen möchten, benötigen wir von Ihnen eine E-Mail-Adresse sowie Informationen, welche uns die Überprüfung gestatten, dass Sie der Inhaber der angegebenen E-Mail-Adresse sind und mit dem Empfang des Newsletters einverstanden sind. Weitere Daten werden nicht bzw. nur auf freiwilliger Basis erhoben. Diese Daten verwenden wir ausschließlich für den Versand der angeforderten Informationen und geben diese nicht an Dritte weiter.\r\n\r\nDie Verarbeitung der in das Newsletteranmeldeformular eingegebenen Daten erfolgt ausschließlich auf Grundlage Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO). Die erteilte Einwilligung zur Speicherung der Daten, der E-Mail-Adresse sowie deren Nutzung zum Versand des Newsletters können Sie jederzeit widerrufen, etwa über den „Austragen“-Link im Newsletter. Die Rechtmäßigkeit der bereits erfolgten Datenverarbeitungsvorgänge bleibt vom Widerruf unberührt.\r\n\r\nDie von Ihnen zum Zwecke des Newsletter-Bezugs bei uns hinterlegten Daten werden von uns bis zu Ihrer Austragung aus dem Newsletter bei uns bzw. dem Newsletterdiensteanbieter gespeichert und nach der Abbestellung des Newsletters oder nach Zweckfortfall aus der Newsletterverteilerliste gelöscht. Wir behalten uns vor, E-Mail-Adressen aus unserem Newsletterverteiler nach eigenem Ermessen im Rahmen unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO zu löschen oder zu sperren.\r\n\r\nDaten, die zu anderen Zwecken bei uns gespeichert wurden, bleiben hiervon unberührt.\r\n\r\nNach Ihrer Austragung aus der Newsletterverteilerliste wird Ihre E-Mail-Adresse bei uns bzw. dem Newsletterdiensteanbieter ggf. in einer Blacklist gespeichert, sofern dies zur Verhinderung künftiger Mailings erforderlich ist. Die Daten aus der Blacklist werden nur für diesen Zweck verwendet und nicht mit anderen Daten zusammengeführt. Dies dient sowohl Ihrem Interesse als auch unserem Interesse an der Einhaltung der gesetzlichen Vorgaben beim Versand von Newslettern (berechtigtes Interesse im Sinne des Art. 6 Abs. 1 lit. f DSGVO). Die Speicherung in der Blacklist ist zeitlich nicht befristet. <strong>Sie können der Speicherung widersprechen, sofern Ihre Interessen unser berechtigtes Interesse überwiegen.</strong>\r\n<h2>6. Plugins und Tools</h2>\r\n<h3>Google reCAPTCHA</h3>\r\nWir nutzen „Google reCAPTCHA“ (im Folgenden „reCAPTCHA“) auf dieser Website. Anbieter ist die Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Irland.\r\n\r\nMit reCAPTCHA soll überprüft werden, ob die Dateneingabe auf dieser Website (z. B. in einem Kontaktformular) durch einen Menschen oder durch ein automatisiertes Programm erfolgt. Hierzu analysiert reCAPTCHA das Verhalten des Websitebesuchers anhand verschiedener Merkmale. Diese Analyse beginnt automatisch, sobald der Websitebesucher die Website betritt. Zur Analyse wertet reCAPTCHA verschiedene Informationen aus (z. B. IP-Adresse, Verweildauer des Websitebesuchers auf der Website oder vom Nutzer getätigte Mausbewegungen). Die bei der Analyse erfassten Daten werden an Google weitergeleitet.\r\n\r\nDie reCAPTCHA-Analysen laufen vollständig im Hintergrund. Websitebesucher werden nicht darauf hingewiesen, dass eine Analyse stattfindet.\r\n\r\nDie Speicherung und Analyse der Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. f DSGVO. Der Websitebetreiber hat ein berechtigtes Interesse daran, seine Webangebote vor missbräuchlicher automatisierter Ausspähung und vor SPAM zu schützen. Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nWeitere Informationen zu Google reCAPTCHA entnehmen Sie den Google-Datenschutzbestimmungen und den Google Nutzungsbedingungen unter folgenden Links: <a href=\"https://policies.google.com/privacy?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/privacy?hl=de</a> und <a href=\"https://policies.google.com/terms?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/terms?hl=de</a>.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_color=\"\" border_style=\"solid\" border_position=\"all\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" center_content=\"no\" last=\"true\" min_height=\"\" hover_type=\"none\" link=\"\" border_sizes_top=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_sizes_right=\"\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"\" fusion_font_variant_text_font=\"\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\n<strong>Datenschutz­erklärung</strong>\r\n\r\n<strong>1. Datenschutz auf einen Blick</strong>\r\n\r\n<strong>Allgemeine Hinweise</strong>\r\n\r\nDie folgenden Hinweise geben einen einfachen Überblick darüber, was mit Ihren personenbezogenen Daten passiert, wenn Sie diese Website besuchen. Personenbezogene Daten sind alle Daten, mit denen Sie persönlich identifiziert werden können. Ausführliche Informationen zum Thema Datenschutz entnehmen Sie unserer unter diesem Text aufgeführten Datenschutzerklärung.\r\n\r\n<strong>Datenerfassung auf dieser Website</strong>\r\n\r\n<strong>Wer ist verantwortlich für die Datenerfassung auf dieser Website?</strong>\r\n\r\nDie Datenverarbeitung auf dieser Website erfolgt durch den Websitebetreiber. Dessen Kontaktdaten können Sie dem Abschnitt „Hinweis zur Verantwortlichen Stelle“ in dieser Datenschutzerklärung entnehmen.\r\n\r\n<strong>Wie erfassen wir Ihre Daten?</strong>\r\n\r\nIhre Daten werden zum einen dadurch erhoben, dass Sie uns diese mitteilen. Hierbei kann es sich z. B. um Daten handeln, die Sie in ein Kontaktformular eingeben.\r\n\r\nAndere Daten werden automatisch oder nach Ihrer Einwilligung beim Besuch der Website durch unsere IT-Systeme erfasst. Das sind vor allem technische Daten (z. B. Internetbrowser, Betriebssystem oder Uhrzeit des Seitenaufrufs). Die Erfassung dieser Daten erfolgt automatisch, sobald Sie diese Website betreten.\r\n\r\n<strong>Wofür nutzen wir Ihre Daten?</strong>\r\n\r\nEin Teil der Daten wird erhoben, um eine fehlerfreie Bereitstellung der Website zu gewährleisten. Andere Daten können zur Analyse Ihres Nutzerverhaltens verwendet werden.\r\n\r\n<strong>Welche Rechte haben Sie bezüglich Ihrer Daten?</strong>\r\n\r\nSie haben jederzeit das Recht, unentgeltlich Auskunft über Herkunft, Empfänger und Zweck Ihrer gespeicherten personenbezogenen Daten zu erhalten. Sie haben außerdem ein Recht, die Berichtigung oder Löschung dieser Daten zu verlangen. Wenn Sie eine Einwilligung zur Datenverarbeitung erteilt haben, können Sie diese Einwilligung jederzeit für die Zukunft widerrufen. Außerdem haben Sie das Recht, unter bestimmten Umständen die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Des Weiteren steht Ihnen ein Beschwerderecht bei der zuständigen Aufsichtsbehörde zu.\r\n\r\nHierzu sowie zu weiteren Fragen zum Thema Datenschutz können Sie sich jederzeit an uns wenden.\r\n\r\n<strong>2. Hosting</strong>\r\n\r\n<strong>Externes Hosting</strong>\r\n\r\nDiese Website wird bei einem externen Dienstleister gehostet (Hoster). Die personenbezogenen Daten, die auf dieser Website erfasst werden, werden auf den Servern des Hosters gespeichert. Hierbei kann es sich v. a. um IP-Adressen, Kontaktanfragen, Meta- und Kommunikationsdaten, Vertragsdaten, Kontaktdaten, Namen, Websitezugriffe und sonstige Daten, die über eine Website generiert werden, handeln.\r\n\r\nDer Einsatz des Hosters erfolgt zum Zwecke der Vertragserfüllung gegenüber unseren potenziellen und bestehenden Kunden (Art. 6 Abs. 1 lit. b DSGVO) und im Interesse einer sicheren, schnellen und effizienten Bereitstellung unseres Online-Angebots durch einen professionellen Anbieter (Art. 6 Abs. 1 lit. f DSGVO). Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nUnser Hoster wird Ihre Daten nur insoweit verarbeiten, wie dies zur Erfüllung seiner Leistungspflichten erforderlich ist und unsere Weisungen in Bezug auf diese Daten befolgen.\r\n\r\nWir setzen folgenden Hoster ein:\r\n\r\ninfeos GmbH\r\nLuigi-Negrelli-Straße 15\r\n39100 Bozen\r\n\r\n<strong>Auftragsverarbeitung</strong>\r\n\r\nWir haben einen Vertrag über Auftragsverarbeitung (AVV) mit dem oben genannten Anbieter geschlossen. Hierbei handelt es sich um einen datenschutzrechtlich vorgeschriebenen Vertrag, der gewährleistet, dass dieser die personenbezogenen Daten unserer Websitebesucher nur nach unseren Weisungen und unter Einhaltung der DSGVO verarbeitet.\r\n\r\n<strong>3. Allgemeine Hinweise und Pflicht­informationen</strong>\r\n\r\n<strong>Datenschutz</strong>\r\n\r\nDie Betreiber dieser Seiten nehmen den Schutz Ihrer persönlichen Daten sehr ernst. Wir behandeln Ihre personenbezogenen Daten vertraulich und entsprechend den gesetzlichen Datenschutzvorschriften sowie dieser Datenschutzerklärung.\r\n\r\nWenn Sie diese Website benutzen, werden verschiedene personenbezogene Daten erhoben. Personenbezogene Daten sind Daten, mit denen Sie persönlich identifiziert werden können. Die vorliegende Datenschutzerklärung erläutert, welche Daten wir erheben und wofür wir sie nutzen. Sie erläutert auch, wie und zu welchem Zweck das geschieht.\r\n\r\nWir weisen darauf hin, dass die Datenübertragung im Internet (z. B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich.\r\n\r\n<strong>Hinweis zur verantwortlichen Stelle</strong>\r\n\r\nDie verantwortliche Stelle für die Datenverarbeitung auf dieser Website ist:\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\nE-Mail: info@wir-noi.com\r\n\r\nVerantwortliche Stelle ist die natürliche oder juristische Person, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der Verarbeitung von personenbezogenen Daten (z. B. Namen, E-Mail-Adressen o. Ä.) entscheidet.\r\n\r\n<strong>Speicherdauer</strong>\r\n\r\nSoweit innerhalb dieser Datenschutzerklärung keine speziellere Speicherdauer genannt wurde, verbleiben Ihre personenbezogenen Daten bei uns, bis der Zweck für die Datenverarbeitung entfällt. Wenn Sie ein berechtigtes Löschersuchen geltend machen oder eine Einwilligung zur Datenverarbeitung widerrufen, werden Ihre Daten gelöscht, sofern wir keine anderen rechtlich zulässigen Gründe für die Speicherung Ihrer personenbezogenen Daten haben (z. B. steuer- oder handelsrechtliche Aufbewahrungsfristen); im letztgenannten Fall erfolgt die Löschung nach Fortfall dieser Gründe.\r\n\r\n<strong>Allgemeine Hinweise zu den Rechtsgrundlagen der Datenverarbeitung auf dieser Website</strong>\r\n\r\nSofern Sie in die Datenverarbeitung eingewilligt haben, verarbeiten wir Ihre personenbezogenen Daten auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO bzw. Art. 9 Abs. 2 lit. a DSGVO, sofern besondere Datenkategorien nach Art. 9 Abs. 1 DSGVO verarbeitet werden. Im Falle einer ausdrücklichen Einwilligung in die Übertragung personenbezogener Daten in Drittstaaten erfolgt die Datenverarbeitung außerdem auf Grundlage von Art. 49 Abs. 1 lit. a DSGVO. Sofern Sie in die Speicherung von Cookies oder in den Zugriff auf Informationen in Ihr Endgerät (z. B. via Device-Fingerprinting) eingewilligt haben, erfolgt die Datenverarbeitung zusätzlich auf Grundlage von § 25 Abs. 1 TTDSG. Die Einwilligung ist jederzeit widerrufbar. Sind Ihre Daten zur Vertragserfüllung oder zur Durchführung vorvertraglicher Maßnahmen erforderlich, verarbeiten wir Ihre Daten auf Grundlage des Art. 6 Abs. 1 lit. b DSGVO. Des Weiteren verarbeiten wir Ihre Daten, sofern diese zur Erfüllung einer rechtlichen Verpflichtung erforderlich sind auf Grundlage von Art. 6 Abs. 1 lit. c DSGVO. Die Datenverarbeitung kann ferner auf Grundlage unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO erfolgen. Über die jeweils im Einzelfall einschlägigen Rechtsgrundlagen wird in den folgenden Absätzen dieser Datenschutzerklärung informiert.\r\n\r\n<strong>Widerruf Ihrer Einwilligung zur Datenverarbeitung</strong>\r\n\r\nViele Datenverarbeitungsvorgänge sind nur mit Ihrer ausdrücklichen Einwilligung möglich. Sie können eine bereits erteilte Einwilligung jederzeit widerrufen. Die Rechtmäßigkeit der bis zum Widerruf erfolgten Datenverarbeitung bleibt vom Widerruf unberührt.\r\n\r\n<strong>Widerspruchsrecht gegen die Datenerhebung in besonderen Fällen sowie gegen Direktwerbung (Art. 21 DSGVO)</strong>\r\n\r\nWENN DIE DATENVERARBEITUNG AUF GRUNDLAGE VON ART. 6 ABS. 1 LIT. E ODER F DSGVO ERFOLGT, HABEN SIE JEDERZEIT DAS RECHT, AUS GRÜNDEN, DIE SICH AUS IHRER BESONDEREN SITUATION ERGEBEN, GEGEN DIE VERARBEITUNG IHRER PERSONENBEZOGENEN DATEN WIDERSPRUCH EINZULEGEN; DIES GILT AUCH FÜR EIN AUF DIESE BESTIMMUNGEN GESTÜTZTES PROFILING. DIE JEWEILIGE RECHTSGRUNDLAGE, AUF DENEN EINE VERARBEITUNG BERUHT, ENTNEHMEN SIE DIESER DATENSCHUTZERKLÄRUNG. WENN SIE WIDERSPRUCH EINLEGEN, WERDEN WIR IHRE BETROFFENEN PERSONENBEZOGENEN DATEN NICHT MEHR VERARBEITEN, ES SEI DENN, WIR KÖNNEN ZWINGENDE SCHUTZWÜRDIGE GRÜNDE FÜR DIE VERARBEITUNG NACHWEISEN, DIE IHRE INTERESSEN, RECHTE UND FREIHEITEN ÜBERWIEGEN ODER DIE VERARBEITUNG DIENT DER GELTENDMACHUNG, AUSÜBUNG ODER VERTEIDIGUNG VON RECHTSANSPRÜCHEN (WIDERSPRUCH NACH ART. 21 ABS. 1 DSGVO).\r\n\r\nWERDEN IHRE PERSONENBEZOGENEN DATEN VERARBEITET, UM DIREKTWERBUNG ZU BETREIBEN, SO HABEN SIE DAS RECHT, JEDERZEIT WIDERSPRUCH GEGEN DIE VERARBEITUNG SIE BETREFFENDER PERSONENBEZOGENER DATEN ZUM ZWECKE DERARTIGER WERBUNG EINZULEGEN; DIES GILT AUCH FÜR DAS PROFILING, SOWEIT ES MIT SOLCHER DIREKTWERBUNG IN VERBINDUNG STEHT. WENN SIE WIDERSPRECHEN, WERDEN IHRE PERSONENBEZOGENEN DATEN ANSCHLIESSEND NICHT MEHR ZUM ZWECKE DER DIREKTWERBUNG VERWENDET (WIDERSPRUCH NACH ART. 21 ABS. 2 DSGVO).\r\n\r\n<strong>Beschwerde­recht bei der zuständigen Aufsichts­behörde</strong>\r\n\r\nIm Falle von Verstößen gegen die DSGVO steht den Betroffenen ein Beschwerderecht bei einer Aufsichtsbehörde, insbesondere in dem Mitgliedstaat ihres gewöhnlichen Aufenthalts, ihres Arbeitsplatzes oder des Orts des mutmaßlichen Verstoßes zu. Das Beschwerderecht besteht unbeschadet anderweitiger verwaltungsrechtlicher oder gerichtlicher Rechtsbehelfe.\r\n\r\n<strong>Recht auf Daten­übertrag­barkeit</strong>\r\n\r\nSie haben das Recht, Daten, die wir auf Grundlage Ihrer Einwilligung oder in Erfüllung eines Vertrags automatisiert verarbeiten, an sich oder an einen Dritten in einem gängigen, maschinenlesbaren Format aushändigen zu lassen. Sofern Sie die direkte Übertragung der Daten an einen anderen Verantwortlichen verlangen, erfolgt dies nur, soweit es technisch machbar ist.\r\n\r\n<strong>SSL- bzw. TLS-Verschlüsselung</strong>\r\n\r\nDiese Seite nutzt aus Sicherheitsgründen und zum Schutz der Übertragung vertraulicher Inhalte, wie zum Beispiel Bestellungen oder Anfragen, die Sie an uns als Seitenbetreiber senden, eine SSL- bzw. TLS-Verschlüsselung. Eine verschlüsselte Verbindung erkennen Sie daran, dass die Adresszeile des Browsers von „http://“ auf „https://“ wechselt und an dem Schloss-Symbol in Ihrer Browserzeile.\r\n\r\nWenn die SSL- bzw. TLS-Verschlüsselung aktiviert ist, können die Daten, die Sie an uns übermitteln, nicht von Dritten mitgelesen werden.\r\n\r\n<strong>Auskunft, Löschung und Berichtigung</strong>\r\n\r\nSie haben im Rahmen der geltenden gesetzlichen Bestimmungen jederzeit das Recht auf unentgeltliche Auskunft über Ihre gespeicherten personenbezogenen Daten, deren Herkunft und Empfänger und den Zweck der Datenverarbeitung und ggf. ein Recht auf Berichtigung oder Löschung dieser Daten. Hierzu sowie zu weiteren Fragen zum Thema personenbezogene Daten können Sie sich jederzeit an uns wenden.\r\n\r\n<strong>Recht auf Einschränkung der Verarbeitung</strong>\r\n\r\nSie haben das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Hierzu können Sie sich jederzeit an uns wenden. Das Recht auf Einschränkung der Verarbeitung besteht in folgenden Fällen:\r\n<ul>\r\n     <li>Wenn Sie die Richtigkeit Ihrer bei uns gespeicherten personenbezogenen Daten bestreiten, benötigen wir in der Regel Zeit, um dies zu überprüfen. Für die Dauer der Prüfung haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n       <li>Wenn die Verarbeitung Ihrer personenbezogenen Daten unrechtmäßig geschah/geschieht, können Sie statt der Löschung die Einschränkung der Datenverarbeitung verlangen.</li>\r\n  <li>Wenn wir Ihre personenbezogenen Daten nicht mehr benötigen, Sie sie jedoch zur Ausübung, Verteidigung oder Geltendmachung von Rechtsansprüchen benötigen, haben Sie das Recht, statt der Löschung die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n     <li>Wenn Sie einen Widerspruch nach Art. 21 Abs. 1 DSGVO eingelegt haben, muss eine Abwägung zwischen Ihren und unseren Interessen vorgenommen werden. Solange noch nicht feststeht, wessen Interessen überwiegen, haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n</ul>\r\nWenn Sie die Verarbeitung Ihrer personenbezogenen Daten eingeschränkt haben, dürfen diese Daten – von ihrer Speicherung abgesehen – nur mit Ihrer Einwilligung oder zur Geltendmachung, Ausübung oder Verteidigung von Rechtsansprüchen oder zum Schutz der Rechte einer anderen natürlichen oder juristischen Person oder aus Gründen eines wichtigen öffentlichen Interesses der Europäischen Union oder eines Mitgliedstaats verarbeitet werden.\r\n\r\n<strong>Widerspruch gegen Werbe-E-Mails</strong>\r\n\r\nDer Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten zur Übersendung von nicht ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit widersprochen. Die Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-E-Mails, vor.\r\n\r\n<strong>4. Datenerfassung auf dieser Website</strong>\r\n\r\n<strong>Kontaktformular</strong>\r\n\r\nWenn Sie uns per Kontaktformular Anfragen zukommen lassen, werden Ihre Angaben aus dem Anfrageformular inklusive der von Ihnen dort angegebenen Kontaktdaten zwecks Bearbeitung der Anfrage und für den Fall von Anschlussfragen bei uns gespeichert. Diese Daten geben wir nicht ohne Ihre Einwilligung weiter.\r\n\r\nDie Verarbeitung dieser Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. b DSGVO, sofern Ihre Anfrage mit der Erfüllung eines Vertrags zusammenhängt oder zur Durchführung vorvertraglicher Maßnahmen erforderlich ist. In allen übrigen Fällen beruht die Verarbeitung auf unserem berechtigten Interesse an der effektiven Bearbeitung der an uns gerichteten Anfragen (Art. 6 Abs. 1 lit. f DSGVO) oder auf Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO) sofern diese abgefragt wurde; die Einwilligung ist jederzeit widerrufbar.\r\n\r\nDie von Ihnen im Kontaktformular eingegebenen Daten verbleiben bei uns, bis Sie uns zur Löschung auffordern, Ihre Einwilligung zur Speicherung widerrufen oder der Zweck für die Datenspeicherung entfällt (z. B. nach abgeschlossener Bearbeitung Ihrer Anfrage). Zwingende gesetzliche Bestimmungen – insbesondere Aufbewahrungsfristen – bleiben unberührt.\r\n\r\n<strong>5. Newsletter</strong>\r\n\r\n<strong>Newsletter­daten</strong>\r\n\r\nWenn Sie den auf der Website angebotenen Newsletter beziehen möchten, benötigen wir von Ihnen eine E-Mail-Adresse sowie Informationen, welche uns die Überprüfung gestatten, dass Sie der Inhaber der angegebenen E-Mail-Adresse sind und mit dem Empfang des Newsletters einverstanden sind. Weitere Daten werden nicht bzw. nur auf freiwilliger Basis erhoben. Diese Daten verwenden wir ausschließlich für den Versand der angeforderten Informationen und geben diese nicht an Dritte weiter.\r\n\r\nDie Verarbeitung der in das Newsletteranmeldeformular eingegebenen Daten erfolgt ausschließlich auf Grundlage Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO). Die erteilte Einwilligung zur Speicherung der Daten, der E-Mail-Adresse sowie deren Nutzung zum Versand des Newsletters können Sie jederzeit widerrufen, etwa über den „Austragen“-Link im Newsletter. Die Rechtmäßigkeit der bereits erfolgten Datenverarbeitungsvorgänge bleibt vom Widerruf unberührt.\r\n\r\nDie von Ihnen zum Zwecke des Newsletter-Bezugs bei uns hinterlegten Daten werden von uns bis zu Ihrer Austragung aus dem Newsletter bei uns bzw. dem Newsletterdiensteanbieter gespeichert und nach der Abbestellung des Newsletters oder nach Zweckfortfall aus der Newsletterverteilerliste gelöscht. Wir behalten uns vor, E-Mail-Adressen aus unserem Newsletterverteiler nach eigenem Ermessen im Rahmen unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO zu löschen oder zu sperren.\r\n\r\nDaten, die zu anderen Zwecken bei uns gespeichert wurden, bleiben hiervon unberührt.\r\n\r\nNach Ihrer Austragung aus der Newsletterverteilerliste wird Ihre E-Mail-Adresse bei uns bzw. dem Newsletterdiensteanbieter ggf. in einer Blacklist gespeichert, sofern dies zur Verhinderung künftiger Mailings erforderlich ist. Die Daten aus der Blacklist werden nur für diesen Zweck verwendet und nicht mit anderen Daten zusammengeführt. Dies dient sowohl Ihrem Interesse als auch unserem Interesse an der Einhaltung der gesetzlichen Vorgaben beim Versand von Newslettern (berechtigtes Interesse im Sinne des Art. 6 Abs. 1 lit. f DSGVO). Die Speicherung in der Blacklist ist zeitlich nicht befristet. <strong>Sie können der Speicherung widersprechen, sofern Ihre Interessen unser berechtigtes Interesse überwiegen.</strong>\r\n\r\n<strong>6. Plugins und Tools</strong>\r\n\r\n<strong>Google reCAPTCHA</strong>\r\n\r\nWir nutzen „Google reCAPTCHA“ (im Folgenden „reCAPTCHA“) auf dieser Website. Anbieter ist die Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Irland.\r\n\r\nMit reCAPTCHA soll überprüft werden, ob die Dateneingabe auf dieser Website (z. B. in einem Kontaktformular) durch einen Menschen oder durch ein automatisiertes Programm erfolgt. Hierzu analysiert reCAPTCHA das Verhalten des Websitebesuchers anhand verschiedener Merkmale. Diese Analyse beginnt automatisch, sobald der Websitebesucher die Website betritt. Zur Analyse wertet reCAPTCHA verschiedene Informationen aus (z. B. IP-Adresse, Verweildauer des Websitebesuchers auf der Website oder vom Nutzer getätigte Mausbewegungen). Die bei der Analyse erfassten Daten werden an Google weitergeleitet.\r\n\r\nDie reCAPTCHA-Analysen laufen vollständig im Hintergrund. Websitebesucher werden nicht darauf hingewiesen, dass eine Analyse stattfindet.\r\n\r\nDie Speicherung und Analyse der Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. f DSGVO. Der Websitebetreiber hat ein berechtigtes Interesse daran, seine Webangebote vor missbräuchlicher automatisierter Ausspähung und vor SPAM zu schützen. Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nWeitere Informationen zu Google reCAPTCHA entnehmen Sie den Google-Datenschutzbestimmungen und den Google Nutzungsbedingungen unter folgenden Links: <a href=\"https://policies.google.com/privacy?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/privacy?hl=de</a> und <a href=\"https://policies.google.com/terms?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/terms?hl=de</a>.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Datenschutzerklärung','','inherit','closed','closed','','3-revision-v1','','','2022-02-10 15:46:27','2022-02-10 14:46:27','',3,'https://unternehmen.wir-noi.org/?p=272',0,'revision','',0),(273,4,'2022-02-10 15:48:37','2022-02-10 14:48:37','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grau_9.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\">GESICHT\r\nZEIGEN</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 15:48:37','2022-02-10 14:48:37','',12,'https://unternehmen.wir-noi.org/?p=273',0,'revision','',0),(274,4,'2022-02-10 15:48:44','2022-02-10 14:48:44','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grau_9.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\">GESICHT\r\nZEIGEN</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 15:48:44','2022-02-10 14:48:44','',12,'https://unternehmen.wir-noi.org/?p=274',0,'revision','',0),(275,4,'2022-02-10 15:49:47','2022-02-10 14:49:47','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grau_9.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"50px\" margin_bottom=\"50px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\">GESICHT\r\nZEIGEN</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 15:49:47','2022-02-10 14:49:47','',12,'https://unternehmen.wir-noi.org/?p=275',0,'revision','',0);
+INSERT INTO `wp_posts` VALUES (276,4,'2022-02-10 15:50:29','2022-02-10 14:50:29','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grau_9.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"60px\" margin_bottom=\"60px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\"><strong>GESICHT</strong>\r\n<strong>ZEIGEN</strong></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 15:50:29','2022-02-10 14:50:29','',12,'https://unternehmen.wir-noi.org/?p=276',0,'revision','',0),(277,4,'2022-02-10 15:51:09','2022-02-10 14:51:09','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"\" fusion_font_variant_text_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h1>Impressum</h1>\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n<h2>Kontakt</h2>\r\nE-Mail: info@wir-noi.com\r\n<h2>Redaktionell verantwortlich</h2>\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n<h2>EU-Streitschlichtung</h2>\r\nDie Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit: <a href=\"https://ec.europa.eu/consumers/odr/\" target=\"_blank\" rel=\"noopener noreferrer\">https://ec.europa.eu/consumers/odr/</a>.\r\nUnsere E-Mail-Adresse finden Sie oben im Impressum.\r\n<h2>Verbraucher­streit­beilegung/Universal­schlichtungs­stelle</h2>\r\nWir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"\" fusion_font_variant_text_font=\"\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\n<strong>Impressum</strong>\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\n<strong>Kontakt</strong>\r\n\r\nE-Mail: info@wir-noi.com\r\n\r\n<strong>Redaktionell verantwortlich</strong>\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\n<strong>EU-Streitschlichtung</strong>\r\n\r\nDie Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit: <a href=\"https://ec.europa.eu/consumers/odr/\" target=\"_blank\" rel=\"noopener noreferrer\">https://ec.europa.eu/consumers/odr/</a>.\r\nUnsere E-Mail-Adresse finden Sie oben im Impressum.\r\n\r\n<strong>Verbraucher­streit­beilegung/ Universal­schlichtungs­stelle</strong>\r\n\r\nWir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Impressum','','inherit','closed','closed','','76-revision-v1','','','2022-02-10 15:51:09','2022-02-10 14:51:09','',76,'https://unternehmen.wir-noi.org/?p=277',0,'revision','',0),(278,4,'2022-02-10 15:51:45','2022-02-10 14:51:45','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_color=\"\" border_style=\"solid\" border_position=\"all\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" center_content=\"no\" last=\"true\" min_height=\"\" hover_type=\"none\" link=\"\" border_sizes_top=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_sizes_right=\"\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h1>Datenschutz­erklärung</h1>\r\n<h2>1. Datenschutz auf einen Blick</h2>\r\n<h3>Allgemeine Hinweise</h3>\r\nDie folgenden Hinweise geben einen einfachen Überblick darüber, was mit Ihren personenbezogenen Daten passiert, wenn Sie diese Website besuchen. Personenbezogene Daten sind alle Daten, mit denen Sie persönlich identifiziert werden können. Ausführliche Informationen zum Thema Datenschutz entnehmen Sie unserer unter diesem Text aufgeführten Datenschutzerklärung.\r\n<h3>Datenerfassung auf dieser Website</h3>\r\n<h4>Wer ist verantwortlich für die Datenerfassung auf dieser Website?</h4>\r\nDie Datenverarbeitung auf dieser Website erfolgt durch den Websitebetreiber. Dessen Kontaktdaten können Sie dem Abschnitt „Hinweis zur Verantwortlichen Stelle“ in dieser Datenschutzerklärung entnehmen.\r\n<h4>Wie erfassen wir Ihre Daten?</h4>\r\nIhre Daten werden zum einen dadurch erhoben, dass Sie uns diese mitteilen. Hierbei kann es sich z. B. um Daten handeln, die Sie in ein Kontaktformular eingeben.\r\n\r\nAndere Daten werden automatisch oder nach Ihrer Einwilligung beim Besuch der Website durch unsere IT-Systeme erfasst. Das sind vor allem technische Daten (z. B. Internetbrowser, Betriebssystem oder Uhrzeit des Seitenaufrufs). Die Erfassung dieser Daten erfolgt automatisch, sobald Sie diese Website betreten.\r\n<h4>Wofür nutzen wir Ihre Daten?</h4>\r\nEin Teil der Daten wird erhoben, um eine fehlerfreie Bereitstellung der Website zu gewährleisten. Andere Daten können zur Analyse Ihres Nutzerverhaltens verwendet werden.\r\n<h4>Welche Rechte haben Sie bezüglich Ihrer Daten?</h4>\r\nSie haben jederzeit das Recht, unentgeltlich Auskunft über Herkunft, Empfänger und Zweck Ihrer gespeicherten personenbezogenen Daten zu erhalten. Sie haben außerdem ein Recht, die Berichtigung oder Löschung dieser Daten zu verlangen. Wenn Sie eine Einwilligung zur Datenverarbeitung erteilt haben, können Sie diese Einwilligung jederzeit für die Zukunft widerrufen. Außerdem haben Sie das Recht, unter bestimmten Umständen die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Des Weiteren steht Ihnen ein Beschwerderecht bei der zuständigen Aufsichtsbehörde zu.\r\n\r\nHierzu sowie zu weiteren Fragen zum Thema Datenschutz können Sie sich jederzeit an uns wenden.\r\n<h2>2. Hosting</h2>\r\n<h3>Externes Hosting</h3>\r\nDiese Website wird bei einem externen Dienstleister gehostet (Hoster). Die personenbezogenen Daten, die auf dieser Website erfasst werden, werden auf den Servern des Hosters gespeichert. Hierbei kann es sich v. a. um IP-Adressen, Kontaktanfragen, Meta- und Kommunikationsdaten, Vertragsdaten, Kontaktdaten, Namen, Websitezugriffe und sonstige Daten, die über eine Website generiert werden, handeln.\r\n\r\nDer Einsatz des Hosters erfolgt zum Zwecke der Vertragserfüllung gegenüber unseren potenziellen und bestehenden Kunden (Art. 6 Abs. 1 lit. b DSGVO) und im Interesse einer sicheren, schnellen und effizienten Bereitstellung unseres Online-Angebots durch einen professionellen Anbieter (Art. 6 Abs. 1 lit. f DSGVO). Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nUnser Hoster wird Ihre Daten nur insoweit verarbeiten, wie dies zur Erfüllung seiner Leistungspflichten erforderlich ist und unsere Weisungen in Bezug auf diese Daten befolgen.\r\n\r\nWir setzen folgenden Hoster ein:\r\n\r\ninfeos GmbH\r\nLuigi-Negrelli-Straße 15\r\n39100 Bozen\r\n<h4>Auftragsverarbeitung</h4>\r\nWir haben einen Vertrag über Auftragsverarbeitung (AVV) mit dem oben genannten Anbieter geschlossen. Hierbei handelt es sich um einen datenschutzrechtlich vorgeschriebenen Vertrag, der gewährleistet, dass dieser die personenbezogenen Daten unserer Websitebesucher nur nach unseren Weisungen und unter Einhaltung der DSGVO verarbeitet.\r\n<h2>3. Allgemeine Hinweise und Pflicht­informationen</h2>\r\n<h3>Datenschutz</h3>\r\nDie Betreiber dieser Seiten nehmen den Schutz Ihrer persönlichen Daten sehr ernst. Wir behandeln Ihre personenbezogenen Daten vertraulich und entsprechend den gesetzlichen Datenschutzvorschriften sowie dieser Datenschutzerklärung.\r\n\r\nWenn Sie diese Website benutzen, werden verschiedene personenbezogene Daten erhoben. Personenbezogene Daten sind Daten, mit denen Sie persönlich identifiziert werden können. Die vorliegende Datenschutzerklärung erläutert, welche Daten wir erheben und wofür wir sie nutzen. Sie erläutert auch, wie und zu welchem Zweck das geschieht.\r\n\r\nWir weisen darauf hin, dass die Datenübertragung im Internet (z. B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich.\r\n<h3>Hinweis zur verantwortlichen Stelle</h3>\r\nDie verantwortliche Stelle für die Datenverarbeitung auf dieser Website ist:\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\nE-Mail: info@wir-noi.com\r\n\r\nVerantwortliche Stelle ist die natürliche oder juristische Person, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der Verarbeitung von personenbezogenen Daten (z. B. Namen, E-Mail-Adressen o. Ä.) entscheidet.\r\n<h3>Speicherdauer</h3>\r\nSoweit innerhalb dieser Datenschutzerklärung keine speziellere Speicherdauer genannt wurde, verbleiben Ihre personenbezogenen Daten bei uns, bis der Zweck für die Datenverarbeitung entfällt. Wenn Sie ein berechtigtes Löschersuchen geltend machen oder eine Einwilligung zur Datenverarbeitung widerrufen, werden Ihre Daten gelöscht, sofern wir keine anderen rechtlich zulässigen Gründe für die Speicherung Ihrer personenbezogenen Daten haben (z. B. steuer- oder handelsrechtliche Aufbewahrungsfristen); im letztgenannten Fall erfolgt die Löschung nach Fortfall dieser Gründe.\r\n<h3>Allgemeine Hinweise zu den Rechtsgrundlagen der Datenverarbeitung auf dieser Website</h3>\r\nSofern Sie in die Datenverarbeitung eingewilligt haben, verarbeiten wir Ihre personenbezogenen Daten auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO bzw. Art. 9 Abs. 2 lit. a DSGVO, sofern besondere Datenkategorien nach Art. 9 Abs. 1 DSGVO verarbeitet werden. Im Falle einer ausdrücklichen Einwilligung in die Übertragung personenbezogener Daten in Drittstaaten erfolgt die Datenverarbeitung außerdem auf Grundlage von Art. 49 Abs. 1 lit. a DSGVO. Sofern Sie in die Speicherung von Cookies oder in den Zugriff auf Informationen in Ihr Endgerät (z. B. via Device-Fingerprinting) eingewilligt haben, erfolgt die Datenverarbeitung zusätzlich auf Grundlage von § 25 Abs. 1 TTDSG. Die Einwilligung ist jederzeit widerrufbar. Sind Ihre Daten zur Vertragserfüllung oder zur Durchführung vorvertraglicher Maßnahmen erforderlich, verarbeiten wir Ihre Daten auf Grundlage des Art. 6 Abs. 1 lit. b DSGVO. Des Weiteren verarbeiten wir Ihre Daten, sofern diese zur Erfüllung einer rechtlichen Verpflichtung erforderlich sind auf Grundlage von Art. 6 Abs. 1 lit. c DSGVO. Die Datenverarbeitung kann ferner auf Grundlage unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO erfolgen. Über die jeweils im Einzelfall einschlägigen Rechtsgrundlagen wird in den folgenden Absätzen dieser Datenschutzerklärung informiert.\r\n<h3>Widerruf Ihrer Einwilligung zur Datenverarbeitung</h3>\r\nViele Datenverarbeitungsvorgänge sind nur mit Ihrer ausdrücklichen Einwilligung möglich. Sie können eine bereits erteilte Einwilligung jederzeit widerrufen. Die Rechtmäßigkeit der bis zum Widerruf erfolgten Datenverarbeitung bleibt vom Widerruf unberührt.\r\n<h3>Widerspruchsrecht gegen die Datenerhebung in besonderen Fällen sowie gegen Direktwerbung (Art. 21 DSGVO)</h3>\r\nWENN DIE DATENVERARBEITUNG AUF GRUNDLAGE VON ART. 6 ABS. 1 LIT. E ODER F DSGVO ERFOLGT, HABEN SIE JEDERZEIT DAS RECHT, AUS GRÜNDEN, DIE SICH AUS IHRER BESONDEREN SITUATION ERGEBEN, GEGEN DIE VERARBEITUNG IHRER PERSONENBEZOGENEN DATEN WIDERSPRUCH EINZULEGEN; DIES GILT AUCH FÜR EIN AUF DIESE BESTIMMUNGEN GESTÜTZTES PROFILING. DIE JEWEILIGE RECHTSGRUNDLAGE, AUF DENEN EINE VERARBEITUNG BERUHT, ENTNEHMEN SIE DIESER DATENSCHUTZERKLÄRUNG. WENN SIE WIDERSPRUCH EINLEGEN, WERDEN WIR IHRE BETROFFENEN PERSONENBEZOGENEN DATEN NICHT MEHR VERARBEITEN, ES SEI DENN, WIR KÖNNEN ZWINGENDE SCHUTZWÜRDIGE GRÜNDE FÜR DIE VERARBEITUNG NACHWEISEN, DIE IHRE INTERESSEN, RECHTE UND FREIHEITEN ÜBERWIEGEN ODER DIE VERARBEITUNG DIENT DER GELTENDMACHUNG, AUSÜBUNG ODER VERTEIDIGUNG VON RECHTSANSPRÜCHEN (WIDERSPRUCH NACH ART. 21 ABS. 1 DSGVO).\r\n\r\nWERDEN IHRE PERSONENBEZOGENEN DATEN VERARBEITET, UM DIREKTWERBUNG ZU BETREIBEN, SO HABEN SIE DAS RECHT, JEDERZEIT WIDERSPRUCH GEGEN DIE VERARBEITUNG SIE BETREFFENDER PERSONENBEZOGENER DATEN ZUM ZWECKE DERARTIGER WERBUNG EINZULEGEN; DIES GILT AUCH FÜR DAS PROFILING, SOWEIT ES MIT SOLCHER DIREKTWERBUNG IN VERBINDUNG STEHT. WENN SIE WIDERSPRECHEN, WERDEN IHRE PERSONENBEZOGENEN DATEN ANSCHLIESSEND NICHT MEHR ZUM ZWECKE DER DIREKTWERBUNG VERWENDET (WIDERSPRUCH NACH ART. 21 ABS. 2 DSGVO).\r\n<h3>Beschwerde­recht bei der zuständigen Aufsichts­behörde</h3>\r\nIm Falle von Verstößen gegen die DSGVO steht den Betroffenen ein Beschwerderecht bei einer Aufsichtsbehörde, insbesondere in dem Mitgliedstaat ihres gewöhnlichen Aufenthalts, ihres Arbeitsplatzes oder des Orts des mutmaßlichen Verstoßes zu. Das Beschwerderecht besteht unbeschadet anderweitiger verwaltungsrechtlicher oder gerichtlicher Rechtsbehelfe.\r\n<h3>Recht auf Daten­übertrag­barkeit</h3>\r\nSie haben das Recht, Daten, die wir auf Grundlage Ihrer Einwilligung oder in Erfüllung eines Vertrags automatisiert verarbeiten, an sich oder an einen Dritten in einem gängigen, maschinenlesbaren Format aushändigen zu lassen. Sofern Sie die direkte Übertragung der Daten an einen anderen Verantwortlichen verlangen, erfolgt dies nur, soweit es technisch machbar ist.\r\n<h3>SSL- bzw. TLS-Verschlüsselung</h3>\r\nDiese Seite nutzt aus Sicherheitsgründen und zum Schutz der Übertragung vertraulicher Inhalte, wie zum Beispiel Bestellungen oder Anfragen, die Sie an uns als Seitenbetreiber senden, eine SSL- bzw. TLS-Verschlüsselung. Eine verschlüsselte Verbindung erkennen Sie daran, dass die Adresszeile des Browsers von „http://“ auf „https://“ wechselt und an dem Schloss-Symbol in Ihrer Browserzeile.\r\n\r\nWenn die SSL- bzw. TLS-Verschlüsselung aktiviert ist, können die Daten, die Sie an uns übermitteln, nicht von Dritten mitgelesen werden.\r\n<h3>Auskunft, Löschung und Berichtigung</h3>\r\nSie haben im Rahmen der geltenden gesetzlichen Bestimmungen jederzeit das Recht auf unentgeltliche Auskunft über Ihre gespeicherten personenbezogenen Daten, deren Herkunft und Empfänger und den Zweck der Datenverarbeitung und ggf. ein Recht auf Berichtigung oder Löschung dieser Daten. Hierzu sowie zu weiteren Fragen zum Thema personenbezogene Daten können Sie sich jederzeit an uns wenden.\r\n<h3>Recht auf Einschränkung der Verarbeitung</h3>\r\nSie haben das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Hierzu können Sie sich jederzeit an uns wenden. Das Recht auf Einschränkung der Verarbeitung besteht in folgenden Fällen:\r\n<ul>\r\n  <li>Wenn Sie die Richtigkeit Ihrer bei uns gespeicherten personenbezogenen Daten bestreiten, benötigen wir in der Regel Zeit, um dies zu überprüfen. Für die Dauer der Prüfung haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n       <li>Wenn die Verarbeitung Ihrer personenbezogenen Daten unrechtmäßig geschah/geschieht, können Sie statt der Löschung die Einschränkung der Datenverarbeitung verlangen.</li>\r\n  <li>Wenn wir Ihre personenbezogenen Daten nicht mehr benötigen, Sie sie jedoch zur Ausübung, Verteidigung oder Geltendmachung von Rechtsansprüchen benötigen, haben Sie das Recht, statt der Löschung die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n     <li>Wenn Sie einen Widerspruch nach Art. 21 Abs. 1 DSGVO eingelegt haben, muss eine Abwägung zwischen Ihren und unseren Interessen vorgenommen werden. Solange noch nicht feststeht, wessen Interessen überwiegen, haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n</ul>\r\nWenn Sie die Verarbeitung Ihrer personenbezogenen Daten eingeschränkt haben, dürfen diese Daten – von ihrer Speicherung abgesehen – nur mit Ihrer Einwilligung oder zur Geltendmachung, Ausübung oder Verteidigung von Rechtsansprüchen oder zum Schutz der Rechte einer anderen natürlichen oder juristischen Person oder aus Gründen eines wichtigen öffentlichen Interesses der Europäischen Union oder eines Mitgliedstaats verarbeitet werden.\r\n<h3>Widerspruch gegen Werbe-E-Mails</h3>\r\nDer Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten zur Übersendung von nicht ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit widersprochen. Die Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-E-Mails, vor.\r\n<h2>4. Datenerfassung auf dieser Website</h2>\r\n<h3>Kontaktformular</h3>\r\nWenn Sie uns per Kontaktformular Anfragen zukommen lassen, werden Ihre Angaben aus dem Anfrageformular inklusive der von Ihnen dort angegebenen Kontaktdaten zwecks Bearbeitung der Anfrage und für den Fall von Anschlussfragen bei uns gespeichert. Diese Daten geben wir nicht ohne Ihre Einwilligung weiter.\r\n\r\nDie Verarbeitung dieser Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. b DSGVO, sofern Ihre Anfrage mit der Erfüllung eines Vertrags zusammenhängt oder zur Durchführung vorvertraglicher Maßnahmen erforderlich ist. In allen übrigen Fällen beruht die Verarbeitung auf unserem berechtigten Interesse an der effektiven Bearbeitung der an uns gerichteten Anfragen (Art. 6 Abs. 1 lit. f DSGVO) oder auf Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO) sofern diese abgefragt wurde; die Einwilligung ist jederzeit widerrufbar.\r\n\r\nDie von Ihnen im Kontaktformular eingegebenen Daten verbleiben bei uns, bis Sie uns zur Löschung auffordern, Ihre Einwilligung zur Speicherung widerrufen oder der Zweck für die Datenspeicherung entfällt (z. B. nach abgeschlossener Bearbeitung Ihrer Anfrage). Zwingende gesetzliche Bestimmungen – insbesondere Aufbewahrungsfristen – bleiben unberührt.\r\n<h2>5. Newsletter</h2>\r\n<h3>Newsletter­daten</h3>\r\nWenn Sie den auf der Website angebotenen Newsletter beziehen möchten, benötigen wir von Ihnen eine E-Mail-Adresse sowie Informationen, welche uns die Überprüfung gestatten, dass Sie der Inhaber der angegebenen E-Mail-Adresse sind und mit dem Empfang des Newsletters einverstanden sind. Weitere Daten werden nicht bzw. nur auf freiwilliger Basis erhoben. Diese Daten verwenden wir ausschließlich für den Versand der angeforderten Informationen und geben diese nicht an Dritte weiter.\r\n\r\nDie Verarbeitung der in das Newsletteranmeldeformular eingegebenen Daten erfolgt ausschließlich auf Grundlage Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO). Die erteilte Einwilligung zur Speicherung der Daten, der E-Mail-Adresse sowie deren Nutzung zum Versand des Newsletters können Sie jederzeit widerrufen, etwa über den „Austragen“-Link im Newsletter. Die Rechtmäßigkeit der bereits erfolgten Datenverarbeitungsvorgänge bleibt vom Widerruf unberührt.\r\n\r\nDie von Ihnen zum Zwecke des Newsletter-Bezugs bei uns hinterlegten Daten werden von uns bis zu Ihrer Austragung aus dem Newsletter bei uns bzw. dem Newsletterdiensteanbieter gespeichert und nach der Abbestellung des Newsletters oder nach Zweckfortfall aus der Newsletterverteilerliste gelöscht. Wir behalten uns vor, E-Mail-Adressen aus unserem Newsletterverteiler nach eigenem Ermessen im Rahmen unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO zu löschen oder zu sperren.\r\n\r\nDaten, die zu anderen Zwecken bei uns gespeichert wurden, bleiben hiervon unberührt.\r\n\r\nNach Ihrer Austragung aus der Newsletterverteilerliste wird Ihre E-Mail-Adresse bei uns bzw. dem Newsletterdiensteanbieter ggf. in einer Blacklist gespeichert, sofern dies zur Verhinderung künftiger Mailings erforderlich ist. Die Daten aus der Blacklist werden nur für diesen Zweck verwendet und nicht mit anderen Daten zusammengeführt. Dies dient sowohl Ihrem Interesse als auch unserem Interesse an der Einhaltung der gesetzlichen Vorgaben beim Versand von Newslettern (berechtigtes Interesse im Sinne des Art. 6 Abs. 1 lit. f DSGVO). Die Speicherung in der Blacklist ist zeitlich nicht befristet. <strong>Sie können der Speicherung widersprechen, sofern Ihre Interessen unser berechtigtes Interesse überwiegen.</strong>\r\n<h2>6. Plugins und Tools</h2>\r\n<h3>Google reCAPTCHA</h3>\r\nWir nutzen „Google reCAPTCHA“ (im Folgenden „reCAPTCHA“) auf dieser Website. Anbieter ist die Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Irland.\r\n\r\nMit reCAPTCHA soll überprüft werden, ob die Dateneingabe auf dieser Website (z. B. in einem Kontaktformular) durch einen Menschen oder durch ein automatisiertes Programm erfolgt. Hierzu analysiert reCAPTCHA das Verhalten des Websitebesuchers anhand verschiedener Merkmale. Diese Analyse beginnt automatisch, sobald der Websitebesucher die Website betritt. Zur Analyse wertet reCAPTCHA verschiedene Informationen aus (z. B. IP-Adresse, Verweildauer des Websitebesuchers auf der Website oder vom Nutzer getätigte Mausbewegungen). Die bei der Analyse erfassten Daten werden an Google weitergeleitet.\r\n\r\nDie reCAPTCHA-Analysen laufen vollständig im Hintergrund. Websitebesucher werden nicht darauf hingewiesen, dass eine Analyse stattfindet.\r\n\r\nDie Speicherung und Analyse der Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. f DSGVO. Der Websitebetreiber hat ein berechtigtes Interesse daran, seine Webangebote vor missbräuchlicher automatisierter Ausspähung und vor SPAM zu schützen. Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nWeitere Informationen zu Google reCAPTCHA entnehmen Sie den Google-Datenschutzbestimmungen und den Google Nutzungsbedingungen unter folgenden Links: <a href=\"https://policies.google.com/privacy?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/privacy?hl=de</a> und <a href=\"https://policies.google.com/terms?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/terms?hl=de</a>.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" background_position=\"left top\" background_color=\"\" border_color=\"\" border_style=\"solid\" border_position=\"all\" spacing=\"yes\" background_image=\"\" background_repeat=\"no-repeat\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"0px\" margin_bottom=\"0px\" class=\"\" id=\"\" animation_type=\"\" animation_speed=\"0.3\" animation_direction=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" center_content=\"no\" last=\"true\" min_height=\"\" hover_type=\"none\" link=\"\" border_sizes_top=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_sizes_right=\"\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\n<strong>Datenschutz­erklärung</strong>\r\n\r\n<strong>1. Datenschutz auf einen Blick</strong>\r\n\r\n<strong>Allgemeine Hinweise</strong>\r\n\r\nDie folgenden Hinweise geben einen einfachen Überblick darüber, was mit Ihren personenbezogenen Daten passiert, wenn Sie diese Website besuchen. Personenbezogene Daten sind alle Daten, mit denen Sie persönlich identifiziert werden können. Ausführliche Informationen zum Thema Datenschutz entnehmen Sie unserer unter diesem Text aufgeführten Datenschutzerklärung.\r\n\r\n<strong>Datenerfassung auf dieser Website</strong>\r\n\r\n<strong>Wer ist verantwortlich für die Datenerfassung auf dieser Website?</strong>\r\n\r\nDie Datenverarbeitung auf dieser Website erfolgt durch den Websitebetreiber. Dessen Kontaktdaten können Sie dem Abschnitt „Hinweis zur Verantwortlichen Stelle“ in dieser Datenschutzerklärung entnehmen.\r\n\r\n<strong>Wie erfassen wir Ihre Daten?</strong>\r\n\r\nIhre Daten werden zum einen dadurch erhoben, dass Sie uns diese mitteilen. Hierbei kann es sich z. B. um Daten handeln, die Sie in ein Kontaktformular eingeben.\r\n\r\nAndere Daten werden automatisch oder nach Ihrer Einwilligung beim Besuch der Website durch unsere IT-Systeme erfasst. Das sind vor allem technische Daten (z. B. Internetbrowser, Betriebssystem oder Uhrzeit des Seitenaufrufs). Die Erfassung dieser Daten erfolgt automatisch, sobald Sie diese Website betreten.\r\n\r\n<strong>Wofür nutzen wir Ihre Daten?</strong>\r\n\r\nEin Teil der Daten wird erhoben, um eine fehlerfreie Bereitstellung der Website zu gewährleisten. Andere Daten können zur Analyse Ihres Nutzerverhaltens verwendet werden.\r\n\r\n<strong>Welche Rechte haben Sie bezüglich Ihrer Daten?</strong>\r\n\r\nSie haben jederzeit das Recht, unentgeltlich Auskunft über Herkunft, Empfänger und Zweck Ihrer gespeicherten personenbezogenen Daten zu erhalten. Sie haben außerdem ein Recht, die Berichtigung oder Löschung dieser Daten zu verlangen. Wenn Sie eine Einwilligung zur Datenverarbeitung erteilt haben, können Sie diese Einwilligung jederzeit für die Zukunft widerrufen. Außerdem haben Sie das Recht, unter bestimmten Umständen die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Des Weiteren steht Ihnen ein Beschwerderecht bei der zuständigen Aufsichtsbehörde zu.\r\n\r\nHierzu sowie zu weiteren Fragen zum Thema Datenschutz können Sie sich jederzeit an uns wenden.\r\n\r\n<strong>2. Hosting</strong>\r\n\r\n<strong>Externes Hosting</strong>\r\n\r\nDiese Website wird bei einem externen Dienstleister gehostet (Hoster). Die personenbezogenen Daten, die auf dieser Website erfasst werden, werden auf den Servern des Hosters gespeichert. Hierbei kann es sich v. a. um IP-Adressen, Kontaktanfragen, Meta- und Kommunikationsdaten, Vertragsdaten, Kontaktdaten, Namen, Websitezugriffe und sonstige Daten, die über eine Website generiert werden, handeln.\r\n\r\nDer Einsatz des Hosters erfolgt zum Zwecke der Vertragserfüllung gegenüber unseren potenziellen und bestehenden Kunden (Art. 6 Abs. 1 lit. b DSGVO) und im Interesse einer sicheren, schnellen und effizienten Bereitstellung unseres Online-Angebots durch einen professionellen Anbieter (Art. 6 Abs. 1 lit. f DSGVO). Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nUnser Hoster wird Ihre Daten nur insoweit verarbeiten, wie dies zur Erfüllung seiner Leistungspflichten erforderlich ist und unsere Weisungen in Bezug auf diese Daten befolgen.\r\n\r\nWir setzen folgenden Hoster ein:\r\n\r\ninfeos GmbH\r\nLuigi-Negrelli-Straße 15\r\n39100 Bozen\r\n\r\n<strong>Auftragsverarbeitung</strong>\r\n\r\nWir haben einen Vertrag über Auftragsverarbeitung (AVV) mit dem oben genannten Anbieter geschlossen. Hierbei handelt es sich um einen datenschutzrechtlich vorgeschriebenen Vertrag, der gewährleistet, dass dieser die personenbezogenen Daten unserer Websitebesucher nur nach unseren Weisungen und unter Einhaltung der DSGVO verarbeitet.\r\n\r\n<strong>3. Allgemeine Hinweise und Pflicht­informationen</strong>\r\n\r\n<strong>Datenschutz</strong>\r\n\r\nDie Betreiber dieser Seiten nehmen den Schutz Ihrer persönlichen Daten sehr ernst. Wir behandeln Ihre personenbezogenen Daten vertraulich und entsprechend den gesetzlichen Datenschutzvorschriften sowie dieser Datenschutzerklärung.\r\n\r\nWenn Sie diese Website benutzen, werden verschiedene personenbezogene Daten erhoben. Personenbezogene Daten sind Daten, mit denen Sie persönlich identifiziert werden können. Die vorliegende Datenschutzerklärung erläutert, welche Daten wir erheben und wofür wir sie nutzen. Sie erläutert auch, wie und zu welchem Zweck das geschieht.\r\n\r\nWir weisen darauf hin, dass die Datenübertragung im Internet (z. B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich.\r\n\r\n<strong>Hinweis zur verantwortlichen Stelle</strong>\r\n\r\nDie verantwortliche Stelle für die Datenverarbeitung auf dieser Website ist:\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\nE-Mail: info@wir-noi.com\r\n\r\nVerantwortliche Stelle ist die natürliche oder juristische Person, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der Verarbeitung von personenbezogenen Daten (z. B. Namen, E-Mail-Adressen o. Ä.) entscheidet.\r\n\r\n<strong>Speicherdauer</strong>\r\n\r\nSoweit innerhalb dieser Datenschutzerklärung keine speziellere Speicherdauer genannt wurde, verbleiben Ihre personenbezogenen Daten bei uns, bis der Zweck für die Datenverarbeitung entfällt. Wenn Sie ein berechtigtes Löschersuchen geltend machen oder eine Einwilligung zur Datenverarbeitung widerrufen, werden Ihre Daten gelöscht, sofern wir keine anderen rechtlich zulässigen Gründe für die Speicherung Ihrer personenbezogenen Daten haben (z. B. steuer- oder handelsrechtliche Aufbewahrungsfristen); im letztgenannten Fall erfolgt die Löschung nach Fortfall dieser Gründe.\r\n\r\n<strong>Allgemeine Hinweise zu den Rechtsgrundlagen der Datenverarbeitung auf dieser Website</strong>\r\n\r\nSofern Sie in die Datenverarbeitung eingewilligt haben, verarbeiten wir Ihre personenbezogenen Daten auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO bzw. Art. 9 Abs. 2 lit. a DSGVO, sofern besondere Datenkategorien nach Art. 9 Abs. 1 DSGVO verarbeitet werden. Im Falle einer ausdrücklichen Einwilligung in die Übertragung personenbezogener Daten in Drittstaaten erfolgt die Datenverarbeitung außerdem auf Grundlage von Art. 49 Abs. 1 lit. a DSGVO. Sofern Sie in die Speicherung von Cookies oder in den Zugriff auf Informationen in Ihr Endgerät (z. B. via Device-Fingerprinting) eingewilligt haben, erfolgt die Datenverarbeitung zusätzlich auf Grundlage von § 25 Abs. 1 TTDSG. Die Einwilligung ist jederzeit widerrufbar. Sind Ihre Daten zur Vertragserfüllung oder zur Durchführung vorvertraglicher Maßnahmen erforderlich, verarbeiten wir Ihre Daten auf Grundlage des Art. 6 Abs. 1 lit. b DSGVO. Des Weiteren verarbeiten wir Ihre Daten, sofern diese zur Erfüllung einer rechtlichen Verpflichtung erforderlich sind auf Grundlage von Art. 6 Abs. 1 lit. c DSGVO. Die Datenverarbeitung kann ferner auf Grundlage unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO erfolgen. Über die jeweils im Einzelfall einschlägigen Rechtsgrundlagen wird in den folgenden Absätzen dieser Datenschutzerklärung informiert.\r\n\r\n<strong>Widerruf Ihrer Einwilligung zur Datenverarbeitung</strong>\r\n\r\nViele Datenverarbeitungsvorgänge sind nur mit Ihrer ausdrücklichen Einwilligung möglich. Sie können eine bereits erteilte Einwilligung jederzeit widerrufen. Die Rechtmäßigkeit der bis zum Widerruf erfolgten Datenverarbeitung bleibt vom Widerruf unberührt.\r\n\r\n<strong>Widerspruchsrecht gegen die Datenerhebung in besonderen Fällen sowie gegen Direktwerbung (Art. 21 DSGVO)</strong>\r\n\r\nWENN DIE DATENVERARBEITUNG AUF GRUNDLAGE VON ART. 6 ABS. 1 LIT. E ODER F DSGVO ERFOLGT, HABEN SIE JEDERZEIT DAS RECHT, AUS GRÜNDEN, DIE SICH AUS IHRER BESONDEREN SITUATION ERGEBEN, GEGEN DIE VERARBEITUNG IHRER PERSONENBEZOGENEN DATEN WIDERSPRUCH EINZULEGEN; DIES GILT AUCH FÜR EIN AUF DIESE BESTIMMUNGEN GESTÜTZTES PROFILING. DIE JEWEILIGE RECHTSGRUNDLAGE, AUF DENEN EINE VERARBEITUNG BERUHT, ENTNEHMEN SIE DIESER DATENSCHUTZERKLÄRUNG. WENN SIE WIDERSPRUCH EINLEGEN, WERDEN WIR IHRE BETROFFENEN PERSONENBEZOGENEN DATEN NICHT MEHR VERARBEITEN, ES SEI DENN, WIR KÖNNEN ZWINGENDE SCHUTZWÜRDIGE GRÜNDE FÜR DIE VERARBEITUNG NACHWEISEN, DIE IHRE INTERESSEN, RECHTE UND FREIHEITEN ÜBERWIEGEN ODER DIE VERARBEITUNG DIENT DER GELTENDMACHUNG, AUSÜBUNG ODER VERTEIDIGUNG VON RECHTSANSPRÜCHEN (WIDERSPRUCH NACH ART. 21 ABS. 1 DSGVO).\r\n\r\nWERDEN IHRE PERSONENBEZOGENEN DATEN VERARBEITET, UM DIREKTWERBUNG ZU BETREIBEN, SO HABEN SIE DAS RECHT, JEDERZEIT WIDERSPRUCH GEGEN DIE VERARBEITUNG SIE BETREFFENDER PERSONENBEZOGENER DATEN ZUM ZWECKE DERARTIGER WERBUNG EINZULEGEN; DIES GILT AUCH FÜR DAS PROFILING, SOWEIT ES MIT SOLCHER DIREKTWERBUNG IN VERBINDUNG STEHT. WENN SIE WIDERSPRECHEN, WERDEN IHRE PERSONENBEZOGENEN DATEN ANSCHLIESSEND NICHT MEHR ZUM ZWECKE DER DIREKTWERBUNG VERWENDET (WIDERSPRUCH NACH ART. 21 ABS. 2 DSGVO).\r\n\r\n<strong>Beschwerde­recht bei der zuständigen Aufsichts­behörde</strong>\r\n\r\nIm Falle von Verstößen gegen die DSGVO steht den Betroffenen ein Beschwerderecht bei einer Aufsichtsbehörde, insbesondere in dem Mitgliedstaat ihres gewöhnlichen Aufenthalts, ihres Arbeitsplatzes oder des Orts des mutmaßlichen Verstoßes zu. Das Beschwerderecht besteht unbeschadet anderweitiger verwaltungsrechtlicher oder gerichtlicher Rechtsbehelfe.\r\n\r\n<strong>Recht auf Daten­übertrag­barkeit</strong>\r\n\r\nSie haben das Recht, Daten, die wir auf Grundlage Ihrer Einwilligung oder in Erfüllung eines Vertrags automatisiert verarbeiten, an sich oder an einen Dritten in einem gängigen, maschinenlesbaren Format aushändigen zu lassen. Sofern Sie die direkte Übertragung der Daten an einen anderen Verantwortlichen verlangen, erfolgt dies nur, soweit es technisch machbar ist.\r\n\r\n<strong>SSL- bzw. TLS-Verschlüsselung</strong>\r\n\r\nDiese Seite nutzt aus Sicherheitsgründen und zum Schutz der Übertragung vertraulicher Inhalte, wie zum Beispiel Bestellungen oder Anfragen, die Sie an uns als Seitenbetreiber senden, eine SSL- bzw. TLS-Verschlüsselung. Eine verschlüsselte Verbindung erkennen Sie daran, dass die Adresszeile des Browsers von „http://“ auf „https://“ wechselt und an dem Schloss-Symbol in Ihrer Browserzeile.\r\n\r\nWenn die SSL- bzw. TLS-Verschlüsselung aktiviert ist, können die Daten, die Sie an uns übermitteln, nicht von Dritten mitgelesen werden.\r\n\r\n<strong>Auskunft, Löschung und Berichtigung</strong>\r\n\r\nSie haben im Rahmen der geltenden gesetzlichen Bestimmungen jederzeit das Recht auf unentgeltliche Auskunft über Ihre gespeicherten personenbezogenen Daten, deren Herkunft und Empfänger und den Zweck der Datenverarbeitung und ggf. ein Recht auf Berichtigung oder Löschung dieser Daten. Hierzu sowie zu weiteren Fragen zum Thema personenbezogene Daten können Sie sich jederzeit an uns wenden.\r\n\r\n<strong>Recht auf Einschränkung der Verarbeitung</strong>\r\n\r\nSie haben das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Hierzu können Sie sich jederzeit an uns wenden. Das Recht auf Einschränkung der Verarbeitung besteht in folgenden Fällen:\r\n<ul>\r\n        <li>Wenn Sie die Richtigkeit Ihrer bei uns gespeicherten personenbezogenen Daten bestreiten, benötigen wir in der Regel Zeit, um dies zu überprüfen. Für die Dauer der Prüfung haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n       <li>Wenn die Verarbeitung Ihrer personenbezogenen Daten unrechtmäßig geschah/geschieht, können Sie statt der Löschung die Einschränkung der Datenverarbeitung verlangen.</li>\r\n  <li>Wenn wir Ihre personenbezogenen Daten nicht mehr benötigen, Sie sie jedoch zur Ausübung, Verteidigung oder Geltendmachung von Rechtsansprüchen benötigen, haben Sie das Recht, statt der Löschung die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n     <li>Wenn Sie einen Widerspruch nach Art. 21 Abs. 1 DSGVO eingelegt haben, muss eine Abwägung zwischen Ihren und unseren Interessen vorgenommen werden. Solange noch nicht feststeht, wessen Interessen überwiegen, haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.</li>\r\n</ul>\r\nWenn Sie die Verarbeitung Ihrer personenbezogenen Daten eingeschränkt haben, dürfen diese Daten – von ihrer Speicherung abgesehen – nur mit Ihrer Einwilligung oder zur Geltendmachung, Ausübung oder Verteidigung von Rechtsansprüchen oder zum Schutz der Rechte einer anderen natürlichen oder juristischen Person oder aus Gründen eines wichtigen öffentlichen Interesses der Europäischen Union oder eines Mitgliedstaats verarbeitet werden.\r\n\r\n<strong>Widerspruch gegen Werbe-E-Mails</strong>\r\n\r\nDer Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten zur Übersendung von nicht ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit widersprochen. Die Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-E-Mails, vor.\r\n\r\n<strong>4. Datenerfassung auf dieser Website</strong>\r\n\r\n<strong>Kontaktformular</strong>\r\n\r\nWenn Sie uns per Kontaktformular Anfragen zukommen lassen, werden Ihre Angaben aus dem Anfrageformular inklusive der von Ihnen dort angegebenen Kontaktdaten zwecks Bearbeitung der Anfrage und für den Fall von Anschlussfragen bei uns gespeichert. Diese Daten geben wir nicht ohne Ihre Einwilligung weiter.\r\n\r\nDie Verarbeitung dieser Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. b DSGVO, sofern Ihre Anfrage mit der Erfüllung eines Vertrags zusammenhängt oder zur Durchführung vorvertraglicher Maßnahmen erforderlich ist. In allen übrigen Fällen beruht die Verarbeitung auf unserem berechtigten Interesse an der effektiven Bearbeitung der an uns gerichteten Anfragen (Art. 6 Abs. 1 lit. f DSGVO) oder auf Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO) sofern diese abgefragt wurde; die Einwilligung ist jederzeit widerrufbar.\r\n\r\nDie von Ihnen im Kontaktformular eingegebenen Daten verbleiben bei uns, bis Sie uns zur Löschung auffordern, Ihre Einwilligung zur Speicherung widerrufen oder der Zweck für die Datenspeicherung entfällt (z. B. nach abgeschlossener Bearbeitung Ihrer Anfrage). Zwingende gesetzliche Bestimmungen – insbesondere Aufbewahrungsfristen – bleiben unberührt.\r\n\r\n<strong>5. Newsletter</strong>\r\n\r\n<strong>Newsletter­daten</strong>\r\n\r\nWenn Sie den auf der Website angebotenen Newsletter beziehen möchten, benötigen wir von Ihnen eine E-Mail-Adresse sowie Informationen, welche uns die Überprüfung gestatten, dass Sie der Inhaber der angegebenen E-Mail-Adresse sind und mit dem Empfang des Newsletters einverstanden sind. Weitere Daten werden nicht bzw. nur auf freiwilliger Basis erhoben. Diese Daten verwenden wir ausschließlich für den Versand der angeforderten Informationen und geben diese nicht an Dritte weiter.\r\n\r\nDie Verarbeitung der in das Newsletteranmeldeformular eingegebenen Daten erfolgt ausschließlich auf Grundlage Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO). Die erteilte Einwilligung zur Speicherung der Daten, der E-Mail-Adresse sowie deren Nutzung zum Versand des Newsletters können Sie jederzeit widerrufen, etwa über den „Austragen“-Link im Newsletter. Die Rechtmäßigkeit der bereits erfolgten Datenverarbeitungsvorgänge bleibt vom Widerruf unberührt.\r\n\r\nDie von Ihnen zum Zwecke des Newsletter-Bezugs bei uns hinterlegten Daten werden von uns bis zu Ihrer Austragung aus dem Newsletter bei uns bzw. dem Newsletterdiensteanbieter gespeichert und nach der Abbestellung des Newsletters oder nach Zweckfortfall aus der Newsletterverteilerliste gelöscht. Wir behalten uns vor, E-Mail-Adressen aus unserem Newsletterverteiler nach eigenem Ermessen im Rahmen unseres berechtigten Interesses nach Art. 6 Abs. 1 lit. f DSGVO zu löschen oder zu sperren.\r\n\r\nDaten, die zu anderen Zwecken bei uns gespeichert wurden, bleiben hiervon unberührt.\r\n\r\nNach Ihrer Austragung aus der Newsletterverteilerliste wird Ihre E-Mail-Adresse bei uns bzw. dem Newsletterdiensteanbieter ggf. in einer Blacklist gespeichert, sofern dies zur Verhinderung künftiger Mailings erforderlich ist. Die Daten aus der Blacklist werden nur für diesen Zweck verwendet und nicht mit anderen Daten zusammengeführt. Dies dient sowohl Ihrem Interesse als auch unserem Interesse an der Einhaltung der gesetzlichen Vorgaben beim Versand von Newslettern (berechtigtes Interesse im Sinne des Art. 6 Abs. 1 lit. f DSGVO). Die Speicherung in der Blacklist ist zeitlich nicht befristet. <strong>Sie können der Speicherung widersprechen, sofern Ihre Interessen unser berechtigtes Interesse überwiegen.</strong>\r\n\r\n<strong>6. Plugins und Tools</strong>\r\n\r\n<strong>Google reCAPTCHA</strong>\r\n\r\nWir nutzen „Google reCAPTCHA“ (im Folgenden „reCAPTCHA“) auf dieser Website. Anbieter ist die Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Irland.\r\n\r\nMit reCAPTCHA soll überprüft werden, ob die Dateneingabe auf dieser Website (z. B. in einem Kontaktformular) durch einen Menschen oder durch ein automatisiertes Programm erfolgt. Hierzu analysiert reCAPTCHA das Verhalten des Websitebesuchers anhand verschiedener Merkmale. Diese Analyse beginnt automatisch, sobald der Websitebesucher die Website betritt. Zur Analyse wertet reCAPTCHA verschiedene Informationen aus (z. B. IP-Adresse, Verweildauer des Websitebesuchers auf der Website oder vom Nutzer getätigte Mausbewegungen). Die bei der Analyse erfassten Daten werden an Google weitergeleitet.\r\n\r\nDie reCAPTCHA-Analysen laufen vollständig im Hintergrund. Websitebesucher werden nicht darauf hingewiesen, dass eine Analyse stattfindet.\r\n\r\nDie Speicherung und Analyse der Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. f DSGVO. Der Websitebetreiber hat ein berechtigtes Interesse daran, seine Webangebote vor missbräuchlicher automatisierter Ausspähung und vor SPAM zu schützen. Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO und § 25 Abs. 1 TTDSG, soweit die Einwilligung die Speicherung von Cookies oder den Zugriff auf Informationen im Endgerät des Nutzers (z. B. Device-Fingerprinting) im Sinne des TTDSG umfasst. Die Einwilligung ist jederzeit widerrufbar.\r\n\r\nWeitere Informationen zu Google reCAPTCHA entnehmen Sie den Google-Datenschutzbestimmungen und den Google Nutzungsbedingungen unter folgenden Links: <a href=\"https://policies.google.com/privacy?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/privacy?hl=de</a> und <a href=\"https://policies.google.com/terms?hl=de\" target=\"_blank\" rel=\"noopener noreferrer\">https://policies.google.com/terms?hl=de</a>.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Datenschutzerklärung','','inherit','closed','closed','','3-revision-v1','','','2022-02-10 15:51:45','2022-02-10 14:51:45','',3,'https://unternehmen.wir-noi.org/?p=278',0,'revision','',0),(279,4,'2022-02-10 15:52:04','2022-02-10 14:52:04','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<h1>Impressum</h1>\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n<h2>Kontakt</h2>\r\nE-Mail: info@wir-noi.com\r\n<h2>Redaktionell verantwortlich</h2>\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n<h2>EU-Streitschlichtung</h2>\r\nDie Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit: <a href=\"https://ec.europa.eu/consumers/odr/\" target=\"_blank\" rel=\"noopener noreferrer\">https://ec.europa.eu/consumers/odr/</a>.\r\nUnsere E-Mail-Adresse finden Sie oben im Impressum.\r\n<h2>Verbraucher­streit­beilegung/Universal­schlichtungs­stelle</h2>\r\nWir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\n<strong>Impressum</strong>\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\n<strong>Kontakt</strong>\r\n\r\nE-Mail: info@wir-noi.com\r\n\r\n<strong>Redaktionell verantwortlich</strong>\r\n\r\nSozialunion WIR-NOI Associazione Sociale\r\nKanonikus-M.-Gamper-Str. 10 / via Canonico-M.-Gamper 10\r\nI-39100 Bozen / Bolzano (BZ)\r\n\r\n<strong>EU-Streitschlichtung</strong>\r\n\r\nDie Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit: <a href=\"https://ec.europa.eu/consumers/odr/\" target=\"_blank\" rel=\"noopener noreferrer\">https://ec.europa.eu/consumers/odr/</a>.\r\nUnsere E-Mail-Adresse finden Sie oben im Impressum.\r\n\r\n<strong>Verbraucher­streit­beilegung/ Universal­schlichtungs­stelle</strong>\r\n\r\nWir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Impressum','','inherit','closed','closed','','76-revision-v1','','','2022-02-10 15:52:04','2022-02-10 14:52:04','',76,'https://unternehmen.wir-noi.org/?p=279',0,'revision','',0),(281,4,'2022-02-10 15:53:16','2022-02-10 14:53:16','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-15.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grau_9.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"60px\" margin_bottom=\"60px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\"><strong>GESICHT</strong>\r\n<strong>ZEIGEN</strong></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"50px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-10 15:53:16','2022-02-10 14:53:16','',12,'https://unternehmen.wir-noi.org/?p=281',0,'revision','',0),(284,4,'2022-02-10 16:41:51','2022-02-10 15:41:51','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#c4c4c4\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"42px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color4)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Jetzt registieren</p>\r\n[/fusion_text][contact-form-7 id=\"106\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#c4c4c4\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color4)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Jetzt registieren</p>\r\n[/fusion_text][contact-form-7 id=\"106\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-10 16:41:51','2022-02-10 15:41:51','',63,'https://unternehmen.wir-noi.org/?p=284',0,'revision','',0),(298,1,'2022-02-14 19:09:04','2022-02-14 18:09:04','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\n<h3 style=\"text-align: center;\">PROJEKT</h3>\n<h1 style=\"text-align: center;\">GESICHT\nZEIGEN</h1>\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende-1200-Weiss.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"60px\" margin_bottom=\"60px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\n<p style=\"text-align: center; text-size: 32px;\"><strong>GESICHT</strong>\n<strong>ZEIGEN</strong></p>\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\n<p style=\"text-align: center;\"><strong>01</strong></p>\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]<p style=\"text-align: center;\">Wir stellen die Menschen<br />in den <strong>Mittelpunkt</strong></p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\n<p style=\"text-align: center;\"><strong>02</strong></p>\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]<p style=\"text-align: center;\">Wir verteidigen <strong><br /></strong>unsere <strong>Grundrechte</strong></p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\n<p style=\"text-align: center;\"><strong>03</strong></p>\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br /></strong>und <strong>Eigenverantwortung</strong></p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\n<p style=\"text-align: center;\"><strong>04</strong></p>\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />in der Gesellschaft</p><p> </p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\n<p style=\"text-align: center;\"><strong>05</strong></p>\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br /></strong>und <strong>Respekt</strong></p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\n<p style=\"text-align: center;\"><strong>01</strong></p>\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\n<p style=\"text-align: center;\">Wir stellen die Menschen\nin den <strong>Mittelpunkt</strong></p>\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\n<p style=\"text-align: center;\"><strong>02</strong></p>\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\nin der Gesellschaft</p>\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\n<p style=\"text-align: center;\"><strong>03</strong></p>\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\n</strong>und <strong>Respekt</strong></p>\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\n<p style=\"text-align: center;\"><strong>04</strong></p>\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\n</strong>und <strong>Eigenverantwortung</strong></p>\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\n<p style=\"text-align: center;\"><strong>05</strong></p>\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\n<p style=\"text-align: center;\">Wir verteidigen <strong>\n</strong>unsere <strong>Grundrechte</strong></p>\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\nfür mehr Menschlichkeit</p>\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"50px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-autosave-v1','','','2022-02-14 19:09:04','2022-02-14 18:09:04','',12,'https://unternehmen.wir-noi.org/?p=298',0,'revision','',0),(299,1,'2022-02-12 00:01:35','2022-02-11 23:01:35','','Hintergrund Hände','','inherit','open','closed','','hintergrund-haende','','','2022-02-12 00:01:35','2022-02-11 23:01:35','',12,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende.png',0,'attachment','image/png',0),(300,1,'2022-02-12 00:01:48','2022-02-11 23:01:48','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund_grau_9.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"60px\" margin_bottom=\"60px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\"><strong>GESICHT</strong>\r\n<strong>ZEIGEN</strong></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"50px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-12 00:01:48','2022-02-11 23:01:48','',12,'https://unternehmen.wir-noi.org/?p=300',0,'revision','',0),(303,4,'2022-02-14 13:50:43','2022-02-14 12:50:43','','Hintergrund Hände 1200 Grau','','inherit','open','closed','','hintergrund-haende-1200-grau','','','2022-02-14 13:50:43','2022-02-14 12:50:43','',0,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende-1200-Grau.png',0,'attachment','image/png',0),(304,4,'2022-02-14 13:50:45','2022-02-14 12:50:45','','Hintergrund Hände 1200 Weiß','','inherit','open','closed','','hintergrund-haende-1200-weiss','','','2022-02-14 13:50:45','2022-02-14 12:50:45','',0,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende-1200-Weiss.png',0,'attachment','image/png',0),(305,4,'2022-02-14 13:50:47','2022-02-14 12:50:47','','Hintergrund Hände 3000 Grau','','inherit','open','closed','','hintergrund-haende-3000-grau','','','2022-02-14 13:50:47','2022-02-14 12:50:47','',0,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende-3000-Grau.png',0,'attachment','image/png',0),(306,1,'2022-02-14 15:48:02','2022-02-14 14:48:02','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende-1200-Weiss.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"60px\" margin_bottom=\"60px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\"><strong>GESICHT</strong>\r\n<strong>ZEIGEN</strong></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"50px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-14 15:48:02','2022-02-14 14:48:02','',12,'https://unternehmen.wir-noi.org/?p=306',0,'revision','',0),(307,1,'2022-02-14 19:09:12','2022-02-14 18:09:12','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende-1200-Weiss.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"60px\" margin_bottom=\"60px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\"><strong>GESICHT</strong>\r\n<strong>ZEIGEN</strong></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]<p style=\"text-align: center;\">Wir stellen die Menschen<br />in den <strong>Mittelpunkt</strong></p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]<p style=\"text-align: center;\">Wir verteidigen <strong><br /></strong>unsere <strong>Grundrechte</strong></p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen<br /></strong>und <strong>Eigenverantwortung</strong></p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong><br />in der Gesellschaft</p><p> </p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]<p style=\"text-align: center;\">Wir leben <strong>Toleranz<br /></strong>und <strong>Respekt</strong></p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"50px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-14 19:09:12','2022-02-14 18:09:12','',12,'https://unternehmen.wir-noi.org/?p=307',0,'revision','',0),(308,1,'2022-02-14 19:09:51','2022-02-14 18:09:51','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende-1200-Weiss.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"60px\" margin_bottom=\"60px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\"><strong>GESICHT</strong>\r\n<strong>ZEIGEN</strong></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die <strong>Menschen</strong>\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" margin_top=\"100px\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"50px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-14 19:09:51','2022-02-14 18:09:51','',12,'https://unternehmen.wir-noi.org/?p=308',0,'revision','',0),(309,1,'2022-02-14 19:31:16','2022-02-14 18:31:16','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#c4c4c4\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"42px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color4)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Jetzt registrieren</p>\r\n[/fusion_text][contact-form-7 id=\"106\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#c4c4c4\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"var(--awb-color4)\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Jetzt registieren</p>\r\n[/fusion_text][contact-form-7 id=\"106\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','REGISTRIEREN','','inherit','closed','closed','','63-revision-v1','','','2022-02-14 19:31:16','2022-02-14 18:31:16','',63,'https://unternehmen.wir-noi.org/?p=309',0,'revision','',0),(310,1,'2022-02-16 13:11:55','2022-02-16 12:11:55','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende-1200-Weiss.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"60px\" margin_bottom=\"60px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\"><strong>GESICHT</strong>\r\n<strong>ZEIGEN</strong></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die <strong>Menschen</strong>\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\nDie Südtiroler und Trentiner Unternehmen sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Freiberufler oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art. Somit tragen wir maßgeblich zur Wertschöpfung und Versorgung bei.\r\n\r\nUnsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir als Unternehmer sehr genau. Durch die Motivation und Arbeitsleistung all dieser unterschiedlichen Menschen haben wir gemeinsam das aufgebaut, was Trentino-Südtirol heute ist!\r\n\r\nZum ersten Mal seit langer Zeit, wird es scheinbar gesellschaftlich wieder akzeptiert, daß bestimmte Menschen aus der Gesellschaft ausgeschlossen werden. Das weckt Spannungen und Ängste. Und dazu haben wir eine klare Haltung.\r\n\r\nMit dieser Plattform zeigen wir unser Gesicht und setzen ein klares Zeichen: ein Zeichen für soziales Miteinander, für Zusammenhalt, für die Einhaltung unserer Grundrechte und für die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Wir sind für einen freien Gestaltungsspielraum – als Menschen und als Unternehmen.\r\nAls vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt eigenständig zu denken und Entscheidungen selbst zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die den Menschen achten und unsere Betriebe in ihrer Kreativität und Leistungsfähigkeit fördern. Und wir brauchen Entscheidungen zum Wohle aller.\r\n\r\nWir stehen ein:\r\n<ul>\r\n       <li>für einen menschlichen Umgang miteinander</li>\r\n         <li>für Vertrauen und die Achtung unterschiedlicher Standpunkte</li>\r\n       <li>für einen solidarischen Dialog zwischen allen Menschen unseres Landes</li>\r\n     <li>für Sozialpartnerschaft und ein friedliches Zusammenleben</li>\r\n</ul>\r\nWillst du dich dieser Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\">registriere</a> dich jetzt online!\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"50px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-16 13:11:55','2022-02-16 12:11:55','',12,'https://unternehmen.wir-noi.org/?p=310',0,'revision','',0),(312,4,'2022-02-17 10:35:18','2022-02-17 09:35:18','','WirNoi_Logo_DE','','inherit','open','closed','','wirnoi_logo_de','','','2022-02-17 10:35:18','2022-02-17 09:35:18','',0,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Logo_DE.png',0,'attachment','image/png',0),(313,4,'2022-02-18 13:06:42','2022-02-17 11:56:10','','Italiano','','publish','closed','closed','','italiano','','','2022-02-18 13:06:42','2022-02-18 12:06:42','',0,'https://unternehmen.wir-noi.org/?p=313',5,'nav_menu_item','',0),(315,1,'2022-02-17 20:37:29','0000-00-00 00:00:00','','Automatisch gespeicherter Entwurf','','auto-draft','open','open','','','','','2022-02-17 20:37:29','0000-00-00 00:00:00','',0,'https://unternehmen.wir-noi.org/?p=315',0,'post','',0),(316,1,'2022-02-17 20:38:02','2022-02-17 19:38:02','{\n    \"blogname\": {\n        \"value\": \"Unternehmen f\\u00fcr Menschen\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-02-17 19:38:02\"\n    },\n    \"blogdescription\": {\n        \"value\": \"WIR NOI\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-02-17 19:38:02\"\n    }\n}','','','trash','closed','closed','','71c55a77-e4a7-464b-a1ed-36a3d8966ebd','','','2022-02-17 20:38:02','2022-02-17 19:38:02','',0,'https://unternehmen.wir-noi.org/2022/02/17/71c55a77-e4a7-464b-a1ed-36a3d8966ebd/',0,'customize_changeset','',0),(317,4,'2022-02-18 13:06:08','2022-02-18 12:06:08','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_gallery layout=\"masonry\" picture_size=\"fixed\" columns=\"4\" column_spacing=\"20\" gallery_masonry_grid_ratio=\"\" gallery_masonry_width_double=\"\" hover_type=\"liftup\" lightbox=\"no\" lightbox_content=\"\" bordersize=\"2\" bordercolor=\"var(--awb-color8)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_radius=\"4px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" caption_style=\"off\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\"][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg\" image_id=\"324\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg\" image_id=\"323\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg\" image_id=\"321\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png\" image_id=\"320\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg\" image_id=\"319\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg\" image_id=\"318\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png\" image_id=\"322|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/xenja_edit.jpg\" image_id=\"341|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','draft','closed','closed','','wir-machen-mit','','','2022-02-18 20:41:59','2022-02-18 19:41:59','',0,'https://unternehmen.wir-noi.org/?page_id=317',0,'page','',0),(318,4,'2022-02-18 12:56:21','2022-02-18 11:56:21','','Bernhard Oberrauch-edit','','inherit','open','closed','','bernhard-oberrauch-edit','','','2022-02-18 12:56:21','2022-02-18 11:56:21','',317,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg',0,'attachment','image/jpeg',0),(319,4,'2022-02-18 12:56:22','2022-02-18 11:56:22','','Brimo-Zingerle-edit','','inherit','open','closed','','brimo-zingerle-edit','','','2022-02-18 12:56:22','2022-02-18 11:56:22','',317,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg',0,'attachment','image/jpeg',0),(320,4,'2022-02-18 12:56:24','2022-02-18 11:56:24','','future-edit','','inherit','open','closed','','future-edit','','','2022-02-18 12:56:24','2022-02-18 11:56:24','',317,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png',0,'attachment','image/png',0),(321,4,'2022-02-18 12:56:25','2022-02-18 11:56:25','','gerwies-edit','','inherit','open','closed','','gerwies-edit','','','2022-02-18 12:56:25','2022-02-18 11:56:25','',317,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg',0,'attachment','image/jpeg',0),(322,4,'2022-02-18 12:56:27','2022-02-18 11:56:27','','infeos-edit','','inherit','open','closed','','infeos-edit','','','2022-02-18 12:56:27','2022-02-18 11:56:27','',317,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png',0,'attachment','image/png',0),(323,4,'2022-02-18 12:56:28','2022-02-18 11:56:28','','rothoblaas-edit','','inherit','open','closed','','rothoblaas-edit','','','2022-02-18 12:56:28','2022-02-18 11:56:28','',317,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg',0,'attachment','image/jpeg',0),(324,4,'2022-02-18 12:56:30','2022-02-18 11:56:30','','Studio-Zingerle-edit','','inherit','open','closed','','studio-zingerle-edit','','','2022-02-18 12:56:30','2022-02-18 11:56:30','',317,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg',0,'attachment','image/jpeg',0),(325,4,'2022-02-18 13:06:08','2022-02-18 12:06:08','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-revision-v1','','','2022-02-18 13:06:08','2022-02-18 12:06:08','',317,'https://unternehmen.wir-noi.org/?p=325',0,'revision','',0),(326,4,'2022-02-18 13:47:49','2022-02-18 12:47:49','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-autosave-v1','','','2022-02-18 13:47:49','2022-02-18 12:47:49','',317,'https://unternehmen.wir-noi.org/?p=326',0,'revision','',0),(328,4,'2022-02-18 13:37:55','2022-02-18 12:37:55','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-revision-v1','','','2022-02-18 13:37:55','2022-02-18 12:37:55','',317,'https://unternehmen.wir-noi.org/?p=328',0,'revision','',0),(329,4,'2022-02-18 13:39:10','2022-02-18 12:39:10','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-revision-v1','','','2022-02-18 13:39:10','2022-02-18 12:39:10','',317,'https://unternehmen.wir-noi.org/?p=329',0,'revision','',0),(330,4,'2022-02-18 13:47:43','2022-02-18 12:47:43','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-revision-v1','','','2022-02-18 13:47:43','2022-02-18 12:47:43','',317,'https://unternehmen.wir-noi.org/?p=330',0,'revision','',0),(331,1,'2022-02-18 16:00:18','2022-02-18 15:00:18','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_gallery layout=\"\" picture_size=\"\" columns=\"\" column_spacing=\"5\" gallery_masonry_grid_ratio=\"\" gallery_masonry_width_double=\"\" hover_type=\"liftup\" lightbox=\"no\" lightbox_content=\"\" bordersize=\"2\" bordercolor=\"var(--awb-color8)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_radius=\"4px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" caption_style=\"off\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\"][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg\" image_id=\"324\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg\" image_id=\"323\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg\" image_id=\"321\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png\" image_id=\"320\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg\" image_id=\"319\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg\" image_id=\"318\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png\" image_id=\"322|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Logo_DE.png\" image_id=\"312\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-revision-v1','','','2022-02-18 16:00:18','2022-02-18 15:00:18','',317,'https://unternehmen.wir-noi.org/?p=331',0,'revision','',0);
+INSERT INTO `wp_posts` VALUES (332,1,'2022-02-18 16:00:35','2022-02-18 15:00:35','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_gallery layout=\"\" picture_size=\"\" columns=\"\" column_spacing=\"5\" gallery_masonry_grid_ratio=\"\" gallery_masonry_width_double=\"\" hover_type=\"liftup\" lightbox=\"no\" lightbox_content=\"\" bordersize=\"2\" bordercolor=\"var(--awb-color8)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_radius=\"4px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" caption_style=\"off\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\"][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg\" image_id=\"324\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg\" image_id=\"323\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg\" image_id=\"321\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png\" image_id=\"320\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg\" image_id=\"319\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg\" image_id=\"318\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png\" image_id=\"322|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/WirNoi_Logo_DE.png\" image_id=\"312\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-revision-v1','','','2022-02-18 16:00:35','2022-02-18 15:00:35','',317,'https://unternehmen.wir-noi.org/?p=332',0,'revision','',0),(333,1,'2022-02-18 16:01:24','2022-02-18 15:01:24','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_gallery layout=\"\" picture_size=\"\" columns=\"\" column_spacing=\"5\" gallery_masonry_grid_ratio=\"\" gallery_masonry_width_double=\"\" hover_type=\"liftup\" lightbox=\"no\" lightbox_content=\"\" bordersize=\"2\" bordercolor=\"var(--awb-color8)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_radius=\"4px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" caption_style=\"off\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\"][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg\" image_id=\"324\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg\" image_id=\"323\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg\" image_id=\"321\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png\" image_id=\"320\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg\" image_id=\"319\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg\" image_id=\"318\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png\" image_id=\"322|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Wir-Noi-Favicon.jpg\" image_id=\"74|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-revision-v1','','','2022-02-18 16:01:24','2022-02-18 15:01:24','',317,'https://unternehmen.wir-noi.org/?p=333',0,'revision','',0),(334,1,'2022-02-18 17:38:38','2022-02-18 16:38:38','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_gallery layout=\"masonry\" picture_size=\"fixed\" columns=\"4\" column_spacing=\"20\" gallery_masonry_grid_ratio=\"\" gallery_masonry_width_double=\"\" hover_type=\"liftup\" lightbox=\"no\" lightbox_content=\"\" bordersize=\"2\" bordercolor=\"var(--awb-color8)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_radius=\"4px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" caption_style=\"off\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\"][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg\" image_id=\"324\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg\" image_id=\"323\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg\" image_id=\"321\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png\" image_id=\"320\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg\" image_id=\"319\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg\" image_id=\"318\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png\" image_id=\"322|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/xenja_edit.jpg\" image_id=\"341|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-autosave-v1','','','2022-02-18 17:38:38','2022-02-18 16:38:38','',317,'https://unternehmen.wir-noi.org/?p=334',0,'revision','',0),(335,1,'2022-02-18 16:01:52','2022-02-18 15:01:52','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_gallery layout=\"grid\" picture_size=\"fixed\" columns=\"\" column_spacing=\"5\" gallery_masonry_grid_ratio=\"\" gallery_masonry_width_double=\"\" hover_type=\"liftup\" lightbox=\"no\" lightbox_content=\"\" bordersize=\"2\" bordercolor=\"var(--awb-color8)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_radius=\"4px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" caption_style=\"off\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\"][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg\" image_id=\"324\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg\" image_id=\"323\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg\" image_id=\"321\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png\" image_id=\"320\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg\" image_id=\"319\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg\" image_id=\"318\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png\" image_id=\"322|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Wir-Noi-Favicon.jpg\" image_id=\"74|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-revision-v1','','','2022-02-18 16:01:52','2022-02-18 15:01:52','',317,'https://unternehmen.wir-noi.org/?p=335',0,'revision','',0),(336,1,'2022-02-18 16:02:33','2022-02-18 15:02:33','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_gallery layout=\"grid\" picture_size=\"fixed\" columns=\"\" column_spacing=\"20\" gallery_masonry_grid_ratio=\"\" gallery_masonry_width_double=\"\" hover_type=\"liftup\" lightbox=\"no\" lightbox_content=\"\" bordersize=\"2\" bordercolor=\"var(--awb-color8)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_radius=\"4px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" caption_style=\"off\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\"][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg\" image_id=\"324\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg\" image_id=\"323\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg\" image_id=\"321\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png\" image_id=\"320\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg\" image_id=\"319\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg\" image_id=\"318\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png\" image_id=\"322|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Wir-Noi-Favicon.jpg\" image_id=\"74|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-revision-v1','','','2022-02-18 16:02:33','2022-02-18 15:02:33','',317,'https://unternehmen.wir-noi.org/?p=336',0,'revision','',0),(337,1,'2022-02-18 16:03:17','2022-02-18 15:03:17','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_gallery layout=\"grid\" picture_size=\"fixed\" columns=\"4\" column_spacing=\"20\" gallery_masonry_grid_ratio=\"\" gallery_masonry_width_double=\"\" hover_type=\"liftup\" lightbox=\"no\" lightbox_content=\"\" bordersize=\"2\" bordercolor=\"var(--awb-color8)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_radius=\"4px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" caption_style=\"off\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\"][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg\" image_id=\"324\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg\" image_id=\"323\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg\" image_id=\"321\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png\" image_id=\"320\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg\" image_id=\"319\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg\" image_id=\"318\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png\" image_id=\"322|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Wir-Noi-Favicon.jpg\" image_id=\"74|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-revision-v1','','','2022-02-18 16:03:17','2022-02-18 15:03:17','',317,'https://unternehmen.wir-noi.org/?p=337',0,'revision','',0),(338,1,'2022-02-18 16:04:16','2022-02-18 15:04:16','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_gallery layout=\"masonry\" picture_size=\"fixed\" columns=\"4\" column_spacing=\"20\" gallery_masonry_grid_ratio=\"\" gallery_masonry_width_double=\"\" hover_type=\"liftup\" lightbox=\"no\" lightbox_content=\"\" bordersize=\"2\" bordercolor=\"var(--awb-color8)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_radius=\"4px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" caption_style=\"off\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\"][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg\" image_id=\"324\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg\" image_id=\"323\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg\" image_id=\"321\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png\" image_id=\"320\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg\" image_id=\"319\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg\" image_id=\"318\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png\" image_id=\"322|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Wir-Noi-Favicon.jpg\" image_id=\"74|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"false\" border_position=\"all\" first=\"false\" spacing_right=\"\"][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\" spacing_right=\"\"][fusion_imageframe image_id=\"323|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"320|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png[/fusion_imageframe][fusion_imageframe image_id=\"324|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"319|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"318|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"321|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg[/fusion_imageframe][fusion_imageframe image_id=\"322|full\" aspect_ratio=\"\" custom_aspect_ratio=\"100\" aspect_ratio_position=\"\" sticky_max_width=\"\" skip_lazy_load=\"\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" max_width=\"\" align_medium=\"none\" align_small=\"none\" align=\"none\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" hover_type=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_medium=\"\" caption_title_small=\"\" caption_title=\"\" caption_text=\"\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"]https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-revision-v1','','','2022-02-18 16:04:16','2022-02-18 15:04:16','',317,'https://unternehmen.wir-noi.org/?p=338',0,'revision','',0),(339,1,'2022-02-18 16:05:26','2022-02-18 15:05:26','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_gallery layout=\"masonry\" picture_size=\"fixed\" columns=\"4\" column_spacing=\"20\" gallery_masonry_grid_ratio=\"\" gallery_masonry_width_double=\"\" hover_type=\"liftup\" lightbox=\"no\" lightbox_content=\"\" bordersize=\"2\" bordercolor=\"var(--awb-color8)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_radius=\"4px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" caption_style=\"off\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\"][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg\" image_id=\"324\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg\" image_id=\"323\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg\" image_id=\"321\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png\" image_id=\"320\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg\" image_id=\"319\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg\" image_id=\"318\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png\" image_id=\"322|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Wir-Noi-Favicon.jpg\" image_id=\"74|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-revision-v1','','','2022-02-18 16:05:26','2022-02-18 15:05:26','',317,'https://unternehmen.wir-noi.org/?p=339',0,'revision','',0),(341,1,'2022-02-18 17:38:10','2022-02-18 16:38:10','','xenja_edit','','inherit','open','closed','','xenja_edit','','','2022-02-18 17:38:10','2022-02-18 16:38:10','',317,'https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/xenja_edit.jpg',0,'attachment','image/jpeg',0),(342,1,'2022-02-18 17:38:27','2022-02-18 16:38:27','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" spacing_medium=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" spacing_small=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_dimensions_medium=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_dimensions_small=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" link_hover_color=\"\" border_sizes=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" dimension_spacing_medium=\"\" dimension_spacing_small=\"\" dimension_spacing=\"\" dimension_margin_medium=\"\" dimension_margin_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_medium=\"\" padding_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes=\"\" border_color=\"\" border_style=\"solid\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_gallery layout=\"masonry\" picture_size=\"fixed\" columns=\"4\" column_spacing=\"20\" gallery_masonry_grid_ratio=\"\" gallery_masonry_width_double=\"\" hover_type=\"liftup\" lightbox=\"no\" lightbox_content=\"\" bordersize=\"2\" bordercolor=\"var(--awb-color8)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_radius=\"4px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" caption_style=\"off\" caption_title_color=\"\" caption_title_tag=\"2\" fusion_font_family_caption_title_font=\"\" fusion_font_variant_caption_title_font=\"\" caption_title_size=\"\" caption_title_transform=\"\" caption_text_color=\"\" caption_background_color=\"\" fusion_font_family_caption_text_font=\"\" fusion_font_variant_caption_text_font=\"\" caption_text_size=\"\" caption_text_transform=\"\" caption_border_color=\"\" caption_overlay_color=\"\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_margin_top=\"\" caption_margin_right=\"\" caption_margin_bottom=\"\" caption_margin_left=\"\"][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Studio-Zingerle-edit.jpg\" image_id=\"324\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/rothoblaas-edit.jpg\" image_id=\"323\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/gerwies-edit.jpg\" image_id=\"321\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/future-edit.png\" image_id=\"320\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Brimo-Zingerle-edit.jpg\" image_id=\"319\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Bernhard-Oberrauch-edit.jpg\" image_id=\"318\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/infeos-edit.png\" image_id=\"322|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/xenja_edit.jpg\" image_id=\"341|full\" image_title=\"\" image_caption=\"\" link=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Wir machen mit','','inherit','closed','closed','','317-revision-v1','','','2022-02-18 17:38:27','2022-02-18 16:38:27','',317,'https://unternehmen.wir-noi.org/?p=342',0,'revision','',0),(343,1,'2022-02-18 20:41:37','2022-02-18 19:41:37','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende-1200-Weiss.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"60px\" margin_bottom=\"60px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\"><strong>GESICHT</strong>\r\n<strong>ZEIGEN</strong></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die <strong>Menschen</strong>\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button link=\"https://unternehmen.wir-noi.org/registrieren/\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTRIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button target=\"_self\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" color=\"default\" linear_angle=\"180\" size=\"xlarge\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" link=\"https://unternehmen.wir-noi.org/registrieren/\"]REGISTIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\nDie Südtiroler und Trentiner Unternehmen sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Freiberufler oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art. Somit tragen wir maßgeblich zur Wertschöpfung und Versorgung bei.\r\n\r\nUnsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir als Unternehmer sehr genau. Durch die Motivation und Arbeitsleistung all dieser unterschiedlichen Menschen haben wir gemeinsam das aufgebaut, was Trentino-Südtirol heute ist!\r\n\r\nZum ersten Mal seit langer Zeit, wird es scheinbar gesellschaftlich wieder akzeptiert, daß bestimmte Menschen aus der Gesellschaft ausgeschlossen werden. Das weckt Spannungen und Ängste. Und dazu haben wir eine klare Haltung.\r\n\r\nMit dieser Plattform zeigen wir unser Gesicht und setzen ein klares Zeichen: ein Zeichen für soziales Miteinander, für Zusammenhalt, für die Einhaltung unserer Grundrechte und für die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Wir sind für einen freien Gestaltungsspielraum – als Menschen und als Unternehmen.\r\nAls vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt eigenständig zu denken und Entscheidungen selbst zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die den Menschen achten und unsere Betriebe in ihrer Kreativität und Leistungsfähigkeit fördern. Und wir brauchen Entscheidungen zum Wohle aller.\r\n\r\nWir stehen ein:\r\n<ul>\r\n        <li>für einen menschlichen Umgang miteinander</li>\r\n         <li>für Vertrauen und die Achtung unterschiedlicher Standpunkte</li>\r\n       <li>für einen solidarischen Dialog zwischen allen Menschen unseres Landes</li>\r\n     <li>für Sozialpartnerschaft und ein friedliches Zusammenleben</li>\r\n</ul>\r\nWillst du dich dieser Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\">registriere</a> dich jetzt online!\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"50px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-18 20:41:37','2022-02-18 19:41:37','',12,'https://unternehmen.wir-noi.org/?p=343',0,'revision','',0),(344,1,'2022-02-19 16:30:18','2022-02-19 15:30:18','[fusion_builder_container admin_label=\"Hände\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"0px\" padding_right=\"\" padding_bottom=\"0px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" letter_spacing=\"2px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<h3 style=\"text-align: center;\">PROJEKT</h3>\r\n<h1 style=\"text-align: center;\">GESICHT\r\nZEIGEN</h1>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Hände Small Screen\" type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"yes\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" flex_justify_content=\"center\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"https://unternehmen.wir-noi.org/wp-content/uploads/2022/02/Hintergrund-Haende-1200-Weiss.png\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"60px\" margin_bottom=\"60px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"2px\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center; text-size: 24px;\">PROJEKT</p>\r\n<p style=\"text-align: center; text-size: 32px;\"><strong>GESICHT</strong>\r\n<strong>ZEIGEN</strong></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"100px\" padding_right=\"\" padding_bottom=\"100px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die <strong>Menschen</strong>\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"125px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_button link=\"https://unternehmen.wir-noi.org/registrieren/\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"700\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTRIEREN[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"40%\" alignment=\"center\" border_size=\"3\" sep_color=\"var(--awb-color4)\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" text_color=\"#e6294c\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"01,02,03,04,05 Small screen\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"FÜRMENSCHEN\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>01</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stellen die Menschen\r\nin den <strong>Mittelpunkt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>02</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir stehen für <strong>Zusammenhalt</strong>\r\nin der Gesellschaft</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>03</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir leben <strong>Toleranz\r\n</strong>und <strong>Respekt</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>04</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir bauen auf<strong> Vertrauen\r\n</strong>und <strong>Eigenverantwortung</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"#e6294c\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\"><strong>05</strong></p>\r\n[/fusion_text][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Wir verteidigen <strong>\r\n</strong>unsere <strong>Grundrechte</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" layout=\"1_3\" align_self=\"center\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"false\"][fusion_button link=\"https://unternehmen.wir-noi.org/registrieren/\" title=\"\" target=\"_self\" link_attributes=\"\" alignment_medium=\"\" alignment_small=\"\" alignment=\"center\" modal=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" color=\"default\" button_gradient_top_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" button_gradient_bottom_color=\"\" button_gradient_top_color_hover=\"\" button_gradient_bottom_color_hover=\"\" gradient_start_position=\"\" gradient_end_position=\"\" gradient_type=\"\" radial_direction=\"\" linear_angle=\"180\" accent_color=\"\" accent_hover_color=\"\" type=\"\" bevel_color=\"\" bevel_color_hover=\"\" border_top=\"\" border_right=\"\" border_bottom=\"\" border_left=\"\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" border_color=\"\" border_hover_color=\"\" size=\"xlarge\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" fusion_font_family_button_font=\"Montserrat\" fusion_font_variant_button_font=\"\" font_size=\"64px\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" stretch=\"default\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" icon=\"\" icon_position=\"left\" icon_divider=\"no\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]REGISTRIEREN[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"1000\" type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"#e6294c\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" text_transform=\"none\" text_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">Südtiroler und Trentiner Unternehmen\r\nfür mehr Menschlichkeit</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" min_height_medium=\"\" min_height_small=\"\" min_height=\"\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_column_spacing=\"\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" menu_anchor=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" publish_date=\"\" class=\"\" id=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"50px\" padding_right=\"\" padding_bottom=\"50px\" padding_left=\"\" link_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" link_hover_color=\"\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" border_style=\"solid\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index=\"\" overflow=\"\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" skip_lazy_load=\"\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_mp4=\"\" video_webm=\"\" video_ogv=\"\" video_url=\"\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" video_preview_image=\"\" render_logics=\"\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_background_color=\"\" sticky_height=\"\" sticky_offset=\"\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" /][fusion_text rule_style=\"default\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"64px\" text_transform=\"none\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" flex_grow=\"0\" width=\"97%\" alignment=\"center\" sep_color=\"var(--awb-color4)\" border_size=\"2\" bottom_margin=\"20px\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"100px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"24px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n\r\nDie Südtiroler und Trentiner Unternehmen sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Freiberufler oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art. Somit tragen wir maßgeblich zur Wertschöpfung und Versorgung bei.\r\n\r\nUnsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir als Unternehmer sehr genau. Durch die Motivation und Arbeitsleistung all dieser unterschiedlichen Menschen haben wir gemeinsam das aufgebaut, was Trentino-Südtirol heute ist!\r\n\r\nZum ersten Mal seit langer Zeit, wird es scheinbar gesellschaftlich wieder akzeptiert, daß bestimmte Menschen aus der Gesellschaft ausgeschlossen werden. Das weckt Spannungen und Ängste. Und dazu haben wir eine klare Haltung.\r\n\r\nMit dieser Plattform zeigen wir unser Gesicht und setzen ein klares Zeichen: ein Zeichen für soziales Miteinander, für Zusammenhalt, für die Einhaltung unserer Grundrechte und für die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Wir sind für einen freien Gestaltungsspielraum – als Menschen und als Unternehmen.\r\nAls vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt eigenständig zu denken und Entscheidungen selbst zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die den Menschen achten und unsere Betriebe in ihrer Kreativität und Leistungsfähigkeit fördern. Und wir brauchen Entscheidungen zum Wohle aller.\r\n\r\nWir stehen ein:\r\n<ul>\r\n  <li>für einen menschlichen Umgang miteinander</li>\r\n         <li>für Vertrauen und die Achtung unterschiedlicher Standpunkte</li>\r\n       <li>für einen solidarischen Dialog zwischen allen Menschen unseres Landes</li>\r\n     <li>für Sozialpartnerschaft und ein friedliches Zusammenleben</li>\r\n</ul>\r\nWillst du dich dieser Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\">registriere</a> dich jetzt online!\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" padding_top=\"50px\" padding_bottom=\"50px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" admin_label=\"Container Small screen\"][fusion_builder_row][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_menu_anchor name=\"ZIELE\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" background_image_id=\"\" type_medium=\"\" type_small=\"\" order_medium=\"0\" order_small=\"0\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" overflow=\"\" background_type=\"single\" gradient_start_color=\"\" gradient_end_color=\"\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"\" background_image=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" render_logics=\"\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"true\" border_position=\"all\" first=\"true\"][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"32px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">UNSERE ZIELE</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" flex_grow=\"0\" top_margin=\"\" bottom_margin=\"20px\" width=\"80%\" alignment=\"center\" border_size=\"2\" sep_color=\"var(--awb-color4)\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" icon=\"\" icon_size=\"\" icon_color=\"\" icon_circle=\"\" icon_circle_color=\"\" /][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"50px\" margin_right=\"\" margin_bottom=\"\" margin_left=\"\" fusion_font_family_text_font=\"Montserrat\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" line_height=\"\" letter_spacing=\"\" text_transform=\"none\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]\r\n<p style=\"text-align: center;\">Die Südtiroler und Trentiner Unternehmer sind das wirtschaftliche Rückgrat unseres Landes. Ob Industriebetrieb, Handwerker, Gastwirt, Hotelier, Handelsunternehmen, Dienstleister, Selbstständiger oder Landwirt: Wir alle produzieren und liefern Produkte und Dienstleistungen jeder Art und tragen maßgeblich zur Wertschöpfung bei.</p>\r\n<p style=\"text-align: center;\">Unsere Mitarbeiter sind unentbehrlich für unsere Betriebe. Und das wissen wir Unternehmer. Gemeinsam haben wir das aufgebaut, was Südtirol heute ist. Dank der Arbeitsleistung und Motivation all dieser unterschiedlichen Menschen.</p>\r\n<p style=\"text-align: center;\">Seit langer Zeit ist dies das erste Mal, dass der gesellschaftliche Ausschluss einer Bevölkerungsgruppe scheinbar gesellschaftlich akzeptiert wird. Das weckt Ängste und dazu haben wir eine klare Haltung. Mit dieser Plattform zeigen wir unser Gesicht und setzen ein Zeichen. Ein Zeichen für soziales Miteinander und Zusammenhalt, für die Einhaltung unserer Grundrechte und die eigenverantwortliche Entscheidung in Bezug auf Gesundheit und Impfung. Als vernünftige und mündige Bürger und als Unternehmer sind wir es gewohnt, eigenständig zu denken und Entscheidungen zu treffen. Wir brauchen sinnvolle Rahmenbedingungen und Maßnahmen, die auf Menschen und Betriebe achten und wir brauchen Entscheidungen zum Wohle aller.</p>\r\n<p style=\"text-align: center;\">Für diese Werte stehen wir ein: Für einen menschlichen Umgang untereinander, für Vertrauen und die Achtung unterschiedlicher Standpunkte. Auf Augenhöhe und für alle Menschen im Lande.</p>\r\n<p style=\"text-align: center;\">Willst du dich der Initiative anschließen? Dann <a href=\"https://unternehmen.wir-noi.org/registrieren/\"><span style=\"color: #e6294c;\">registriere</span></a> dich jetzt online.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','GESICHT ZEIGEN','','inherit','closed','closed','','12-revision-v1','','','2022-02-19 16:30:18','2022-02-19 15:30:18','',12,'https://unternehmen.wir-noi.org/?p=344',0,'revision','',0);
+/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_term_relationships`
+--
+
+DROP TABLE IF EXISTS `wp_term_relationships`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_term_relationships` (
+  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `term_order` int(11) NOT NULL DEFAULT 0,
+  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
+  KEY `term_taxonomy_id` (`term_taxonomy_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_term_relationships`
+--
+
+LOCK TABLES `wp_term_relationships` WRITE;
+/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
+INSERT INTO `wp_term_relationships` VALUES (1,1,0),(8,1,0),(9,2,0),(66,3,0),(67,3,0),(205,3,0),(207,3,0),(313,3,0);
+/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_term_taxonomy`
+--
+
+DROP TABLE IF EXISTS `wp_term_taxonomy`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_term_taxonomy` (
+  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `count` bigint(20) NOT NULL DEFAULT 0,
+  PRIMARY KEY (`term_taxonomy_id`),
+  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
+  KEY `taxonomy` (`taxonomy`)
+) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_term_taxonomy`
+--
+
+LOCK TABLES `wp_term_taxonomy` WRITE;
+/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
+INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'wp_theme','',0,1),(3,3,'nav_menu','',0,5);
+/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_termmeta`
+--
+
+DROP TABLE IF EXISTS `wp_termmeta`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_termmeta` (
+  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  PRIMARY KEY (`meta_id`),
+  KEY `term_id` (`term_id`),
+  KEY `meta_key` (`meta_key`(191))
+) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_termmeta`
+--
+
+LOCK TABLES `wp_termmeta` WRITE;
+/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
+INSERT INTO `wp_termmeta` VALUES (1,12,'_fusion','a:0:{}'),(2,63,'_fusion','a:0:{}'),(3,3,'_fusion','a:0:{}'),(4,2,'_fusion','a:0:{}'),(5,76,'_fusion','a:0:{}'),(6,7,'_fusion','a:0:{}'),(7,1,'_fusion','a:0:{}'),(8,106,'_fusion','a:0:{}'),(9,167,'_fusion','a:0:{}'),(10,317,'_fusion','a:0:{}'),(11,4,'_fusion','a:0:{}');
+/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_terms`
+--
+
+DROP TABLE IF EXISTS `wp_terms`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_terms` (
+  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `term_group` bigint(10) NOT NULL DEFAULT 0,
+  PRIMARY KEY (`term_id`),
+  KEY `slug` (`slug`(191)),
+  KEY `name` (`name`(191))
+) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_terms`
+--
+
+LOCK TABLES `wp_terms` WRITE;
+/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
+INSERT INTO `wp_terms` VALUES (1,'Allgemein','allgemein',0),(2,'Avada','avada',0),(3,'Header Menu','header-menu',0);
+/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_usermeta`
+--
+
+DROP TABLE IF EXISTS `wp_usermeta`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_usermeta` (
+  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
+  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  PRIMARY KEY (`umeta_id`),
+  KEY `user_id` (`user_id`),
+  KEY `meta_key` (`meta_key`(191))
+) ENGINE=InnoDB AUTO_INCREMENT=125 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_usermeta`
+--
+
+LOCK TABLES `wp_usermeta` WRITE;
+/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
+INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:2:{s:64:\"3be5bff07233caab403c84c87562734c6b2a85f05845c3a008946c085e771fc7\";a:4:{s:10:\"expiration\";i:1645891486;s:2:\"ip\";s:10:\"10.10.10.1\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0\";s:5:\"login\";i:1645718686;}s:64:\"8b6912d9d16b6ebdc44976525967ee3045d5dce372001085972711f727344a17\";a:4:{s:10:\"expiration\";i:1645901229;s:2:\"ip\";s:10:\"10.10.10.1\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0\";s:5:\"login\";i:1645728429;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','315'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"37.186.169.0\";}'),(19,2,'nickname','infeos'),(20,2,'first_name',''),(21,2,'last_name',''),(22,2,'description',''),(23,2,'rich_editing','true'),(24,2,'syntax_highlighting','true'),(25,2,'comment_shortcuts','false'),(26,2,'admin_color','fresh'),(27,2,'use_ssl','0'),(28,2,'show_admin_bar_front','true'),(29,2,'locale',''),(30,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(31,2,'wp_user_level','10'),(32,2,'dismissed_wp_pointers',''),(33,2,'author_email',''),(34,2,'author_facebook',''),(35,2,'author_twitter',''),(36,2,'author_linkedin',''),(37,2,'author_dribble',''),(38,2,'author_whatsapp',''),(39,2,'author_custom',''),(40,3,'nickname','WOWcom'),(41,3,'first_name',''),(42,3,'last_name',''),(43,3,'description',''),(44,3,'rich_editing','true'),(45,3,'syntax_highlighting','true'),(46,3,'comment_shortcuts','false'),(47,3,'admin_color','fresh'),(48,3,'use_ssl','0'),(49,3,'show_admin_bar_front','true'),(50,3,'locale',''),(51,3,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(52,3,'wp_user_level','10'),(53,3,'dismissed_wp_pointers',''),(54,3,'author_email',''),(55,3,'author_facebook',''),(56,3,'author_twitter',''),(57,3,'author_linkedin',''),(58,3,'author_dribble',''),(59,3,'author_whatsapp',''),(60,3,'author_custom',''),(61,4,'nickname','Designerin'),(62,4,'first_name',''),(63,4,'last_name',''),(64,4,'description',''),(65,4,'rich_editing','true'),(66,4,'syntax_highlighting','true'),(67,4,'comment_shortcuts','false'),(68,4,'admin_color','fresh'),(69,4,'use_ssl','0'),(70,4,'show_admin_bar_front','true'),(71,4,'locale',''),(72,4,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(73,4,'wp_user_level','10'),(74,4,'dismissed_wp_pointers',''),(75,4,'author_email',''),(76,4,'author_facebook',''),(77,4,'author_twitter',''),(78,4,'author_linkedin',''),(79,4,'author_dribble',''),(80,4,'author_whatsapp',''),(81,4,'author_custom',''),(82,4,'session_tokens','a:3:{s:64:\"15a827d0a4a6c8e3a8ba6d086602dd0c9907f9f6144b3eec37c6c261d280e803\";a:4:{s:10:\"expiration\";i:1645177662;s:2:\"ip\";s:10:\"10.10.10.1\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0\";s:5:\"login\";i:1645004862;}s:64:\"d5bcf2f08a4648d4f42a6edbe080fddaff0fdc099cf0aedb8a6afb9c0411d6fb\";a:4:{s:10:\"expiration\";i:1645259371;s:2:\"ip\";s:10:\"10.10.10.1\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0\";s:5:\"login\";i:1645086571;}s:64:\"f1a706508f79d2ab47bdd654c46eea6b437fb05f7a497cbc19cfeb74781085bb\";a:4:{s:10:\"expiration\";i:1645345289;s:2:\"ip\";s:10:\"10.10.10.1\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0\";s:5:\"login\";i:1645172489;}}'),(83,4,'wp_dashboard_quick_press_last_post_id','297'),(84,4,'community-events-location','a:1:{s:2:\"ip\";s:11:\"80.151.90.0\";}'),(85,4,'closedpostboxes_page','a:0:{}'),(86,4,'metaboxhidden_page','a:1:{i:0;s:24:\"fusion_settings_meta_box\";}'),(87,4,'meta-box-order_page','a:3:{s:4:\"side\";s:177:\"fusion_settings_meta_box,featured-image-2_page,submitdiv,featured-image-3_page,featured-image-4_page,featured-image-5_page,fusion_featured_images_info,pageparentdiv,postimagediv\";s:6:\"normal\";s:92:\"fusion_builder_layout,revisionsdiv,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:17:\"pyre_page_options\";}'),(88,4,'wp_user-settings','libraryContent=browse&imgsize=full&editor=tinymce'),(89,4,'wp_user-settings-time','1644420686'),(90,4,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(91,4,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),(92,1,'wp_user-settings','libraryContent=browse&editor=tinymce&imgsize=full'),(93,1,'wp_user-settings-time','1645266533'),(94,4,'nav_menu_recently_edited','3'),(95,5,'nickname','avada'),(96,5,'first_name',''),(97,5,'last_name',''),(98,5,'description',''),(99,5,'rich_editing','true'),(100,5,'syntax_highlighting','true'),(101,5,'comment_shortcuts','false'),(102,5,'admin_color','fresh'),(103,5,'use_ssl','0'),(104,5,'show_admin_bar_front','true'),(105,5,'locale',''),(106,5,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(107,5,'wp_user_level','10'),(108,5,'dismissed_wp_pointers',''),(109,5,'author_email',''),(110,5,'author_facebook',''),(111,5,'author_twitter',''),(112,5,'author_linkedin',''),(113,5,'author_dribble',''),(114,5,'author_whatsapp',''),(115,5,'author_custom',''),(117,5,'wp_dashboard_quick_press_last_post_id','154'),(118,5,'community-events-location','a:1:{s:2:\"ip\";s:13:\"205.164.153.0\";}'),(119,5,'session_tokens','a:1:{s:64:\"ba9cbebd207e077164675ff78174db13f230e9bf01b69fc56526565d07bb1623\";a:4:{s:10:\"expiration\";i:1644518960;s:2:\"ip\";s:10:\"10.10.10.1\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36\";s:5:\"login\";i:1644346160;}}'),(120,4,'screen_layout_page','2'),(121,3,'session_tokens','a:1:{s:64:\"26c52e6630a3899297740c9bcfd40d2d90031f1df0262991913ac4e1011e39e1\";a:4:{s:10:\"expiration\";i:1645013690;s:2:\"ip\";s:10:\"10.10.10.1\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0\";s:5:\"login\";i:1644840890;}}'),(122,3,'wp_dashboard_quick_press_last_post_id','302'),(123,3,'community-events-location','a:1:{s:2:\"ip\";s:11:\"80.151.90.0\";}'),(124,1,'wp_media_library_mode','list');
+/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_users`
+--
+
+DROP TABLE IF EXISTS `wp_users`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_users` (
+  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  `user_status` int(11) NOT NULL DEFAULT 0,
+  `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
+  PRIMARY KEY (`ID`),
+  KEY `user_login_key` (`user_login`),
+  KEY `user_nicename` (`user_nicename`),
+  KEY `user_email` (`user_email`)
+) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_users`
+--
+
+LOCK TABLES `wp_users` WRITE;
+/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
+INSERT INTO `wp_users` VALUES (1,'admin','$P$BQmwCjpjovHfkslB8U9rp2so/onyI/0','admin','software@infeos.de','https://unternehmen.wir-noi.org','2022-02-03 10:30:08','',0,'admin'),(2,'infeos','$P$BX6f.Bq5I/QkIK3j33lWsVOOca4UpX0','infeos','contact@infeos.eu','','2022-02-04 07:54:44','1643961284:$P$BU6Kyu314/j.jOrnQXxXpcC8zmvBmo0',0,'infeos'),(3,'WOWcom','$P$BB9GFeMPSnCT9F.ASAYrdF7GMRX/8C0','wowcom','contact@wowcom.eu','','2022-02-04 07:55:09','1643961309:$P$BzHGRG3aOCPhFKSFP/LSxPnCNcTN6w/',0,'WOWcom'),(4,'Designerin','$P$BYIUksJQtxc.gnymRmOtENEK33TsR60','designerin','jasmine.moradiafkan@cit-professionals.eu','','2022-02-04 07:55:31','1643961331:$P$Bfjn59XI8nv/O/fIiCakojOGUERVTJ1',0,'Designerin'),(5,'avada','$P$B2H.8kAH4Fnc2hZny24Hry36LhsZlA0','avada','contact@cit-professionals.de','','2022-02-07 09:34:41','',0,'avada');
+/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_wpmailsmtp_debug_events`
+--
+
+DROP TABLE IF EXISTS `wp_wpmailsmtp_debug_events`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_wpmailsmtp_debug_events` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `content` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  `initiator` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
+  `event_type` tinyint(3) unsigned NOT NULL DEFAULT 0,
+  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_wpmailsmtp_debug_events`
+--
+
+LOCK TABLES `wp_wpmailsmtp_debug_events` WRITE;
+/*!40000 ALTER TABLE `wp_wpmailsmtp_debug_events` DISABLE KEYS */;
+INSERT INTO `wp_wpmailsmtp_debug_events` VALUES (1,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-18 08:23:18'),(2,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-18 14:08:14'),(3,'Mailer: Benutzerdefinierter SMTP-Server\r\nThe following From address failed: unternehmen@wir-noi.org : MAIL FROM command failed,Requested action aborted: local error in processing\r\n,451,SMTP server error: MAIL FROM command failed Detail: Requested action aborted: local error in processing\r\n SMTP code: 451SMTP server error: MAIL FROM command failed Detail: Requested action aborted: local error in processing\r\n SMTP code: 451','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-19 08:52:47'),(4,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-20 13:01:12'),(5,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-20 18:01:21'),(6,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-20 18:10:20'),(7,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-20 19:56:14'),(8,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-21 10:06:29'),(9,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-21 18:16:32'),(10,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-21 19:05:32'),(11,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-22 04:25:12'),(12,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-22 08:00:36'),(13,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-22 17:44:14'),(14,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-23 17:12:17'),(15,'Mailer: Benutzerdefinierter SMTP-Server\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-24 05:00:36'),(16,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP Error: The following recipients failed: sigisteinhauser@gmail.comcom: Requested action not taken: mailbox unavailable\r\ninvalid DNS MX or A/AAAA resource record','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-24 05:00:36'),(17,'Mailer: Benutzerdefinierter SMTP-Server\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-24 07:35:28'),(18,'Mailer: Benutzerdefinierter SMTP-Server\r\nSMTP Error: The following recipients failed: info@santhaler.it: Requested action not taken: mailbox unavailable\r\ninvalid DNS MX or A/AAAA resource record','{\"file\":\"\\/media\\/dragon\\/www\\/unternehmen.wir-noi.org\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/mail.php\",\"line\":194}',0,'2022-02-24 07:35:28');
+/*!40000 ALTER TABLE `wp_wpmailsmtp_debug_events` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `wp_wpmailsmtp_tasks_meta`
+--
+
+DROP TABLE IF EXISTS `wp_wpmailsmtp_tasks_meta`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `wp_wpmailsmtp_tasks_meta` (
+  `id` bigint(20) NOT NULL AUTO_INCREMENT,
+  `action` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `data` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
+  `date` datetime NOT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `wp_wpmailsmtp_tasks_meta`
+--
+
+LOCK TABLES `wp_wpmailsmtp_tasks_meta` WRITE;
+/*!40000 ALTER TABLE `wp_wpmailsmtp_tasks_meta` DISABLE KEYS */;
+INSERT INTO `wp_wpmailsmtp_tasks_meta` VALUES (1,'wp_mail_smtp_summary_report_email','W10=','2022-02-08 19:12:46'),(2,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-08 19:12:46'),(3,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-10 09:14:58'),(4,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-11 09:19:46'),(5,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-13 09:01:14'),(6,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-13 09:01:14'),(7,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-14 11:16:08'),(8,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-14 11:16:08'),(9,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-15 15:03:34'),(10,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-17 08:10:18'),(11,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-18 16:36:11'),(12,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-20 17:37:46'),(13,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-22 09:17:26'),(14,'wp_mail_smtp_admin_notifications_update','W10=','2022-02-24 16:04:59');
+/*!40000 ALTER TABLE `wp_wpmailsmtp_tasks_meta` ENABLE KEYS */;
+UNLOCK TABLES;
+/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
+
+/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
+/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
+/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
+/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
+/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
+/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
+/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
+
+-- Dump completed on 2022-03-02 17:00:28